-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.qml
More file actions
246 lines (201 loc) · 6.07 KB
/
example.qml
File metadata and controls
246 lines (201 loc) · 6.07 KB
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
/* example.qml */
Item {
width: 800
height: 600
Rectangle {
id: root
color: "#eaeeea"
width: parent.width
height: parent.height
property var foo: 20
property var buttonColor: "#59d"
property var up: true
transition: "all .4s ease-in"
/* list model repeater */
SimpleModel { id: listModel }
Item {
x: 220
y: 20
Text { width: 400 ; text: "Row with ListModel Repeater:" }
Row {
y: 28
Repeater {
model: listModel
Text { width: 100 ; height: 28 ; text: name }
}
}
}
/*
* nested repeaters
*/
Item {
x: 540
y: 20
transition: "all .8s ease-in-out"
transform: up ? "translate3d(0,0,0)" : "translate3d(0,300px,0)"
property var number: ""
Component {
id: rowComponent
Row {
property var columnIndex: index
spacing: 2
Repeater {
model: 3
Button {
width: 40
buttonText: 3 * columnIndex + index + 1
onClicked: number += buttonText
}
}
}
}
Text { width: 200 ; text: "Nested Row / Column with number Repeaters:" }
Column {
id: row
spacing: 2
y: 48
Repeater {
model: 3
delegate: rowComponent
}
Repeater {
/* hack for now to get this Row to appear below above Repeater's elements */
model: 1
Row {
spacing: 2
Button {
buttonText: "DEL"
width: 40
onClicked: number = number.substr(0, number.length - 1)
}
Button {
buttonText: 0
width: 40
onClicked: number += buttonText
}
Button {
buttonText: "CLR"
width: 40
onClicked: number = ""
}
}
}
Repeater {
model: 1
Column {
Item { height: 1 }
Label {
width: 124
borderColor: "black"
borderStyle: "solid"
borderWidth: 1
labelColor: ""
labelText: number
}
}
}
}
}
property var t: 0
NumberAnimation on t {
loops: -1
running: true
}
property var frameCounter: 0
property var fps: 0
onTChanged: ++frameCounter
Timer {
onTriggered: {
fps = frameCounter * 0.5
frameCounter = 0;
}
interval: 2000
repeat: true
running: true
}
Column {
id: column
spacing: 4
x: 20 ; y: 20
Item {
id: dummy
width: 140
height: 24
}
Button {
height: 24
radius: 8
property var enabled: false
buttonText: hovered ? "QML Rocks!" : "Hover me"
}
Label {
y: 48
borderColor: "black"
borderStyle: "solid"
borderWidth: "1"
labelColor: ""
labelText: root.fps + " fps"
}
Item {
y: 48 + 28
width: 64
height: 64
property var enabled: true
Image {
width: 64
height: 64
source: enabled ? "tick.png" : "cross.png"
}
MouseArea {
width: parent.width
height: parent.height
onClicked: enabled = !enabled
}
}
Button {
buttonText: "Animate"
onClicked: { up = !up; }
}
}
Column {
x: 40
y: 220
Text { text: "Lolcat container:" }
Rectangle {
borderColor: "black"
borderStyle: "solid"
borderWidth: 4
radius: 16
width: 320
height: 320
Image {
x: 4
y: 4
radius: 8
width: parent.width - 8
height: parent.width - 8
source: "http://www.lolcats.com/images/u/08/35/lolcatsdotcomaxdjl1t6rivbjr5u.jpg"
MouseArea {
id: imageArea
width: parent.width
height: parent.height
hoverEnabled: true
}
}
transform: imageArea.hovered ? "rotate(4deg) scale(1.15)" : "rotate(0deg) scale(1)"
transition: "all .2s ease-in"
}
}
}
Button {
buttonText: root.opacity == 0 ? "Fade in" : "Fade out"
x: column.x
y: column.y
onClicked: {
if (root.opacity == 0)
root.opacity = 1;
else
root.opacity = 0;
}
}
}