67 lines
1.7 KiB
QML
67 lines
1.7 KiB
QML
import QtQuick 2.12
|
|
import QtQuick.Controls 2.12
|
|
import "./"
|
|
import "../Controls"
|
|
import "../Config"
|
|
|
|
Item {
|
|
id: root
|
|
enabled: NewServerConfiguringLogic.pageEnabled
|
|
Caption {
|
|
text: qsTr("Configuring...")
|
|
}
|
|
LabelType {
|
|
x: 30
|
|
y: 90
|
|
width: 321
|
|
height: 31
|
|
text: qsTr("Please wait.")
|
|
}
|
|
LabelType {
|
|
x: 40
|
|
y: 560
|
|
width: 301
|
|
height: 41
|
|
text: NewServerConfiguringLogic.labelWaitInfoText
|
|
visible: NewServerConfiguringLogic.labelWaitInfoVisible
|
|
}
|
|
ProgressBar {
|
|
id: pr
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
y: 510
|
|
width: 301
|
|
height: 40
|
|
from: 0
|
|
to: NewServerConfiguringLogic.progressBarMaximium
|
|
value: NewServerConfiguringLogic.progressBarValue
|
|
visible: NewServerConfiguringLogic.progressBarVisible
|
|
background: Rectangle {
|
|
implicitWidth: parent.width
|
|
implicitHeight: parent.height
|
|
color: "#100A44"
|
|
radius: 4
|
|
}
|
|
|
|
contentItem: Item {
|
|
implicitWidth: parent.width
|
|
implicitHeight: parent.height
|
|
Rectangle {
|
|
width: pr.visualPosition * parent.width
|
|
height: parent.height
|
|
radius: 4
|
|
color: Qt.rgba(255, 255, 255, 0.15);
|
|
}
|
|
}
|
|
|
|
LabelType {
|
|
anchors.fill: parent
|
|
text: NewServerConfiguringLogic.progressBarText
|
|
horizontalAlignment: Text.AlignHCenter
|
|
font.family: "Lato"
|
|
font.styleName: "normal"
|
|
font.pixelSize: 16
|
|
color: "#D4D4D4"
|
|
visible: NewServerConfiguringLogic.progressBarTextVisible
|
|
}
|
|
}
|
|
}
|