2021-07-11 15:27:03 +03:00
|
|
|
import QtQuick 2.6
|
2019-12-01 17:40:10 +03:00
|
|
|
import Sailfish.Silica 1.0
|
|
|
|
|
|
|
|
CoverBackground {
|
2019-12-12 23:59:58 +03:00
|
|
|
Icon {
|
|
|
|
anchors.centerIn: parent
|
2021-05-17 21:12:53 +03:00
|
|
|
height: parent.width
|
|
|
|
width: parent.width
|
2021-05-18 22:04:52 +03:00
|
|
|
sourceSize.height: height
|
|
|
|
sourceSize.width: width
|
|
|
|
opacity: 0.4
|
2021-05-17 21:12:53 +03:00
|
|
|
source: "../pages/icon-seaprint-nobg-bw.png"
|
2019-12-12 23:59:58 +03:00
|
|
|
}
|
|
|
|
|
2021-02-07 16:55:20 +03:00
|
|
|
Column {
|
|
|
|
width: parent.width
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
Label {
|
|
|
|
id: msgLabel
|
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
|
|
text: appWin.busyMessage != "" ? appWin.busyMessage : qsTr("SeaPrint")
|
|
|
|
}
|
|
|
|
Label {
|
|
|
|
id: progressLabel
|
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
|
|
text: appWin.progress
|
|
|
|
}
|
2019-12-01 17:40:10 +03:00
|
|
|
}
|
2021-02-07 16:55:20 +03:00
|
|
|
|
|
|
|
|
2019-12-01 17:40:10 +03:00
|
|
|
}
|