File tree Expand file tree Collapse file tree 2 files changed +11
-2
lines changed
common_qml/qml/CommonQml/Items
examples/python/frontend/qml/views Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -17,14 +17,17 @@ RowLayout {
17
17
property alias value: valueTextEdit .text
18
18
property int type: FileFolderSelector .Type .File
19
19
20
+ property alias headlineTextItem: headlineText
21
+ property alias valueTextEditItem: valueTextEdit
22
+ property alias buttonItem: button
23
+
20
24
property int fontPointSize: 12
21
25
22
26
Text {
23
27
id: headlineText
24
28
25
29
color: " white"
26
30
font .pointSize : parent .fontPointSize
27
-
28
31
}
29
32
30
33
Rectangle {
@@ -53,7 +56,7 @@ RowLayout {
53
56
}
54
57
55
58
Button {
56
- id: fileButton
59
+ id: button
57
60
58
61
Layout .fillHeight : true
59
62
Original file line number Diff line number Diff line change @@ -30,6 +30,9 @@ SidebarAppView {
30
30
Layout .fillWidth : true
31
31
Layout .fillHeight : false
32
32
33
+ headlineTextItem .Layout .preferredWidth : 120
34
+ headlineTextItem .horizontalAlignment : Text .AlignRight
35
+
33
36
}
34
37
35
38
FileFolderSelector {
@@ -41,6 +44,9 @@ SidebarAppView {
41
44
Layout .fillWidth : true
42
45
Layout .fillHeight : false
43
46
47
+ headlineTextItem .Layout .preferredWidth : 120
48
+ headlineTextItem .horizontalAlignment : Text .AlignRight
49
+
44
50
}
45
51
46
52
Item {
You can’t perform that action at this time.
0 commit comments