-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMain.qml
115 lines (94 loc) · 2.91 KB
/
Main.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
import QtQuick
import QtQuick.Controls
import ProxyLayouts
Window {
id: root
width: 800
height: 640
visible: true
title: qsTr("QML Proxy Layouts examples")
StackView {
id: mainStack
anchors.fill: parent
initialItem: menuPageComponent
onCurrentItemChanged: {
if (mainStack.depth > 1) {
mainStack.currentItem.backButtonPressed?.connect(() => {
mainStack.pop()
})
}
}
}
Component {
id: menuPageComponent
MenuPage {
onExampleRequested: function (exampleType) {
switch (exampleType) {
case MenuPage.ButtonExample:
mainStack.push(buttonExampleComponent)
break
case MenuPage.ButtonExampleWithoutProxy1:
mainStack.push(buttonExampleNoProxyComponent)
break
case MenuPage.ButtonExampleWithoutProxy2:
mainStack.push(buttonExampleNoProxyLoaderComponent)
break
case MenuPage.NavigationExample:
mainStack.push(navigationExampleComponent)
break
case MenuPage.DynamicCreationExample:
mainStack.push(dynamicCreationExampleComponent)
break
case MenuPage.RtlExample:
mainStack.push(rtlExampleComponent)
break
case MenuPage.SelectiveLayoutExample:
mainStack.push(selectiveExampleComponent)
break
case MenuPage.ControlsGalleryExample:
mainStack.push(controlsGalleryExampleComponent)
break
case MenuPage.DualLayoutAntiExample:
mainStack.push(dualLayoutAntiExampleComponent)
break
}
}
}
}
Component {
id: buttonExampleComponent
ButtonExample {}
}
Component {
id: buttonExampleNoProxyComponent
ButtonExampleWithoutProxy1 {}
}
Component {
id: buttonExampleNoProxyLoaderComponent
ButtonExampleWithoutProxy2 {}
}
Component {
id: navigationExampleComponent
NavigationBarExample {}
}
Component {
id: dynamicCreationExampleComponent
DynamicCreationExample {}
}
Component {
id: rtlExampleComponent
RtlSupportExample {}
}
Component {
id: selectiveExampleComponent
SelectiveLayoutExample {}
}
Component {
id: controlsGalleryExampleComponent
ControlsGalleryExample {}
}
Component {
id: dualLayoutAntiExampleComponent
DualLayoutExample {}
}
}