-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHistogramForm.ui.qml
55 lines (48 loc) · 1.18 KB
/
HistogramForm.ui.qml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import QtQuick 2.4
import QtQuick.Controls 2.15
Item {
id: item1
width: 640
height: 480
property alias valueProgressBar: progressBar.value
signal wellDone()
ProgressBar {
id: progressBar
width: 200
height: 36
opacity: 1
anchors.left: parent.left
anchors.right: parent.right
anchors.top: parent.top
value: 0
anchors.rightMargin: 25
anchors.leftMargin: 25
anchors.topMargin: 25
}
Text {
id: textPrecent
x: 597
text: Math.round(progressBar.value * 100) + " %"
anchors.right: parent.right
anchors.top: parent.top
font.pixelSize: 12
anchors.topMargin: 25
anchors.rightMargin: 20
}
Text {
id: textLoadingFile
text: qsTr("Загрузка файла")
anchors.left: parent.left
anchors.right: parent.right
anchors.top: parent.top
font.pixelSize: 12
anchors.rightMargin: 529
anchors.leftMargin: 25
anchors.topMargin: 25
}
}
/*##^##
Designer {
D{i:0;formeditorZoom:0.9}D{i:2}D{i:3}D{i:7}D{i:6}D{i:4}D{i:8}D{i:12}D{i:16}D{i:20}
}
##^##*/