summaryrefslogtreecommitdiff
path: root/examples/Gallery.qml
blob: 01e0798904eb148b97d1e7e6e0783b124aa9df71 (plain)
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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
import QtQuick 2.0
//import "../components"
import QtQuick.Window 2.0
import QtDesktop 0.2
import "content"


Rectangle {
    property string loremIpsum:
            "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor "+
            "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor "+
            "incididunt ut labore et dolore magna aliqua.\n Ut enim ad minim veniam, quis nostrud "+
            "exercitation ullamco laboris nisi ut aliquip ex ea commodo cosnsequat. ";

    width: 538 + frame.margins * 2
    height: 360 + frame.margins * 2

    ToolBar {
        id: toolbar
        width: parent.width
        height: 40
        Row {
            spacing: 2
            anchors.verticalCenter: parent.verticalCenter
            ToolButton{
                iconName: "folder-new"
                iconSource: "images/folder_new.png"
                anchors.verticalCenter: parent.verticalCenter
                Accessible.name: "New"
                tooltip: "A button."
            }
            ToolButton{
                iconName: "folder-new"
                iconSource: "images/folder_new.png"
                anchors.verticalCenter: parent.verticalCenter
                Accessible.name: "New 2"
                tooltip: "A second button."
            }
            ToolButton{
                iconName: "window-new"
                iconSource: "images/toplevel_window.png"
                anchors.verticalCenter: parent.verticalCenter
                onClicked: window1.visible = !window1.visible
                Accessible.name: "New window"
                tooltip: "New window button."
            }
        }

        Window {
            id: window1

            width: 400
            height: 400
            /*
            minimumWidth: 400
            minimumHeight: 400
            windowDecoration: true
            modal: modalCheck.checked
            */
            windowTitle: "child window"

/*
            MenuBar {
                Menu {
                    text: "File"
                    MenuItem {
                        text: "Open"
                        shortcut: "Ctrl+O"
                        iconSource: "images/toplevel_window.png"
                        onTriggered: console.log("we should display a file open dialog")
                    }
                    MenuItem {
                        text: "Close"
                        shortcut: "Ctrl+Q"
                        onTriggered: Qt.quit()
                    }
                }
                Menu {
                    text: "Window"
                    MenuItem {
                        text: "Enable Window Decoration"
                        onTriggered: window1.windowDecoration = true
                    }
                    MenuItem {
                        text: "Disable Window Decoration"
                        onTriggered: window1.windowDecoration = false
                    }

                    Menu {
                        text: "Advanced"
                        iconSource: "images/toplevel_window.png"
                        MenuItem {
                            id: modalCheck
                            text: "Window Modal"
                            checkable: true
                        }
                    }
                }
            }
*/

            Rectangle {
                color: syspal.window
                anchors.fill: parent

                Text {
                    id: dimensionsText
                    anchors.horizontalCenter: parent.horizontalCenter
                    anchors.top: parent.top
                    anchors.margins: frame.margins
                    width: parent.width
                    horizontalAlignment: Text.AlignHCenter
                    renderType: Desktop.nativeTextRendering ? Text.NativeRendering : Text.QtRendering

                    text: {
                        if (Desktop.screenCount == 1) {
                            "You have only a single screen.\nThe dimensions of your screen are: " + Desktop.screenWidth + " x " + Desktop.screenHeight;
                        } else {
                            var text = "You have " + Desktop.screenCount + " screens.\nThe dimensions of your screens are: "
                            for(var i=0; i<Desktop.screenCount; i++) {
                                text += "\n" + Desktop.screenGeometry(i).width + " x " + Desktop.screenGeometry(i).height
                            }
                            return text;
                        }
                    }
                }

                Text {
                    id: availableDimensionsText
                    anchors.horizontalCenter: parent.horizontalCenter
                    anchors.top: dimensionsText.bottom
                    anchors.margins: frame.margins
                    width: parent.width
                    horizontalAlignment: Text.AlignHCenter
                    renderType: Desktop.nativeTextRendering ? Text.NativeRendering : Text.QtRendering

                    text: {
                        var text = "The available dimensions of your screens are: "
                        for(var i=0; i<Desktop.screenCount; i++) {
                            text += "\n" + Desktop.availableGeometry(i).width + " x " + Desktop.availableGeometry(i).height
                        }
                        return text;
                    }
                }

                Text {
                    id: closeText
                    anchors.horizontalCenter: parent.horizontalCenter
                    anchors.top: availableDimensionsText.bottom
                    anchors.margins: frame.margins
                    text: "This is a new Window, press the\nbutton below to close it again."
                    renderType: Desktop.nativeTextRendering ? Text.NativeRendering : Text.QtRendering
                }
                Button {
                    anchors.horizontalCenter: closeText.horizontalCenter
                    anchors.top: closeText.bottom
                    anchors.margins: frame.margins
                    id: closeWindowButton
                    text:"Close"
                    width: 98
                    tooltip:"Press me, to close this window again"
                    onClicked: window1.visible = false
                }
                Button {
                    anchors.horizontalCenter: closeText.horizontalCenter
                    anchors.top: closeWindowButton.bottom
                    id: maximizeWindowButton
                    text:"Maximize"
                    width: 98
                    tooltip:"Press me, to maximize this window again"
                    onClicked: window1.windowState = Qt.WindowMaximized;
                }
                Button {
                    anchors.horizontalCenter: closeText.horizontalCenter
                    anchors.top: maximizeWindowButton.bottom
                    id: normalizeWindowButton
                    text:"Normalize"
                    width: 98
                    tooltip:"Press me, to normalize this window again"
                    onClicked: window1.windowState = Qt.WindowNoState;
                }
                Button {
                    anchors.horizontalCenter: closeText.horizontalCenter
                    anchors.top: normalizeWindowButton.bottom
                    id: minimizeWindowButton
                    text:"Minimize"
                    width: 98
                    tooltip:"Press me, to minimize this window again"
                    onClicked: window1.windowState = Qt.WindowMinimized;
                }
            }
        }

        ContextMenu {
            id: editmenu
            MenuItem { text: "Copy" ;  iconName: "edit-copy" }
            MenuItem { text: "Cut" ;   iconName: "edit-cut" }
            MenuItem { text: "Paste" ; iconName: "edit-paste" }
        }
        MouseArea {
            anchors.fill:  parent
            acceptedButtons: Qt.RightButton
            onPressed: editmenu.showPopup(mouseX, mouseY)
        }

        CheckBox {
            id: enabledCheck
            text: "Enabled"
            checked: true
            anchors.right: parent.right
            anchors.verticalCenter: parent.verticalCenter
        }
    }

    SystemPalette {id: syspal}
    StyleItem{ id: styleitem}
    color: syspal.window
    ListModel {
        id: choices
        ListElement { text: "Banana" }
        ListElement { text: "Orange" }
        ListElement { text: "Apple" }
        ListElement { text: "Coconut" }
    }

    TabFrame {
        id:frame
        position: tabPositionGroup.checkedButton == r2 ? "South" : "North"
        KeyNavigation.tab:button1
        KeyNavigation.backtab: button2
        property int margins : styleitem.style == "mac" ? 16 : 0
        anchors.top: toolbar.bottom
        anchors.bottom: parent.bottom
        anchors.right: parent.right
        anchors.left: parent.left
        anchors.margins: margins

        Tab {
            title: "Widgets"
            Item {
                id: flickable
                anchors.fill: parent
                enabled: enabledCheck.checked

                Row {
                    id: contentRow
                    anchors.fill:parent
                    anchors.margins: 8
                    spacing: 16
                    Column {
                        spacing: 9
                        Row {
                            spacing:8
                            Button {
                                id: button1
                                text:"Button 1"
                                width: 96
                                tooltip:"This is an interesting tool tip"
                                KeyNavigation.tab: button2
                                KeyNavigation.backtab: frame.tabBar
                            }
                            Button {
                                id:button2
                                text:"Button 2"
                                width:96
                                KeyNavigation.tab: combo
                                KeyNavigation.backtab: button1
                            }
                        }
                        ComboBox {
                            id: combo;
                            model: choices;
                            width: parent.width;
                            KeyNavigation.tab: t1
                            KeyNavigation.backtab: button2
                        }
                        Row {
                            spacing: 8
                            SpinBox {
                                id: t1
                                width: 97

                                minimumValue: -50
                                value: -20

                                KeyNavigation.tab: t2
                                KeyNavigation.backtab: combo
                            }
                            SpinBox {
                                id: t2
                                width:97
                                KeyNavigation.tab: t3
                                KeyNavigation.backtab: t1
                            }
                        }
                        TextField {
                            id: t3
                            KeyNavigation.tab: slider
                            KeyNavigation.backtab: t2
                            placeholderText: "This is a placeholder for a TextField"
                        }
                        ProgressBar {
                            // normalize value [0.0 .. 1.0]
                            value: (slider.value - slider.minimumValue) / (slider.maximumValue - slider.minimumValue)
                        }
                        ProgressBar {
                            indeterminate: true
                        }
                        Slider {
                            id: slider
                            value: 0.5
                            tickmarksEnabled: tickmarkCheck.checked
                            KeyNavigation.tab: frameCheckbox
                            KeyNavigation.backtab: t3
                        }
                    }
                    Column {
                        id: rightcol
                        spacing: 12
                        GroupBox {
                            id: group1
                            title: "CheckBox"
                            width: area.width
                            adjustToContentSize: true
                            ButtonRow {
                                exclusive: false
                                CheckBox {
                                    id: frameCheckbox
                                    text: "Text frame"
                                    checked: true
                                    KeyNavigation.tab: tickmarkCheck
                                    KeyNavigation.backtab: slider
                                }
                                CheckBox {
                                    id: tickmarkCheck
                                    text: "Tickmarks"
                                    checked: true
                                    KeyNavigation.tab: r1
                                    KeyNavigation.backtab: frameCheckbox
                                }
                            }
                        }
                        GroupBox {
                            id: group2
                            title:"Tab Position"
                            width: area.width
                            adjustToContentSize: true
                            ButtonRow {
                                id: tabPositionGroup
                                exclusive: true
                                RadioButton {
                                    id: r1
                                    text: "North"
                                    KeyNavigation.tab: r2
                                    KeyNavigation.backtab: tickmarkCheck
                                    checked: true
                                }
                                RadioButton {
                                    id: r2
                                    text: "South"
                                    KeyNavigation.tab: area
                                    KeyNavigation.backtab: r1
                                }
                            }
                        }

                        TextArea {
                            id: area
                            frame: frameCheckbox.checked
                            text: loremIpsum + loremIpsum
                            KeyNavigation.tab: button1
                        }
                    }
                }
            }
        }
        Tab {
            id:mytab
            title: "Itemviews"
            enabled: enabledCheck.checked
            ModelView {
                anchors.fill: parent
                anchors.margins: 6
            }
        }
        Tab {
            title: "Range"
            enabled: enabledCheck.checked
            Row {
                anchors.fill: parent
                anchors.margins:16
                spacing:16

                Column {
                    spacing:12

                    GroupBox {
                        title: "Animation options"
                        adjustToContentSize: true
                        ButtonRow {
                            exclusive: false
                            CheckBox {
                                id:fade
                                text: "Fade on hover"
                            }
                            CheckBox {
                                id: scale
                                text: "Scale on hover"
                                property real scaleFactor: 2.0
                            }
                        }
                    }
                    Row {
                        spacing: 20
                        Column {
                            spacing: 10
                            Button {
                                width:200
                                text: "Push button"
                                scale: scale.checked && containsMouse ? scale.scaleFactor : 1
                                opacity: !fade.checked || containsMouse ? 1 : 0.5
                                Behavior on scale { NumberAnimation { easing.type: Easing.OutCubic ; duration: 120} }
                                Behavior on opacity { NumberAnimation { easing.type: Easing.OutCubic ; duration: 220} }
                            }
                            Slider {
                                value: 0.5
                                scale: scale.checked && containsMouse ? scale.scaleFactor : 1
                                opacity: !fade.checked || containsMouse ? 1 : 0.5
                                Behavior on scale { NumberAnimation { easing.type: Easing.OutCubic ; duration: 120} }
                                Behavior on opacity { NumberAnimation { easing.type: Easing.OutCubic ; duration: 220} }
                            }
                            Slider {
                                id : slider1
                                value: 50
                                tickmarksEnabled: false
                                scale: scale.checked && containsMouse ? scale.scaleFactor : 1
                                opacity: !fade.checked || containsMouse ? 1 : 0.5
                                Behavior on scale { NumberAnimation { easing.type: Easing.OutCubic ; duration: 120} }
                                Behavior on opacity { NumberAnimation { easing.type: Easing.OutCubic ; duration: 220} }
                            }
                            ProgressBar {
                                value: 0.5
                                scale: scale.checked && containsMouse ? scale.scaleFactor : 1
                                opacity: !fade.checked || containsMouse ? 1 : 0.5
                                Behavior on scale { NumberAnimation { easing.type: Easing.OutCubic ; duration: 120} }
                                Behavior on opacity { NumberAnimation { easing.type: Easing.OutCubic ; duration: 220} }
                            }
                            ProgressBar {
                                indeterminate: true
                                scale: scale.checked && containsMouse ? scale.scaleFactor : 1
                                opacity: !fade.checked || containsMouse ? 1 : 0.5
                                Behavior on scale { NumberAnimation { easing.type: Easing.OutCubic ; duration: 120} }
                                Behavior on opacity { NumberAnimation { easing.type: Easing.OutCubic ; duration: 220} }
                            }
                        }
                        Dial{
                            width: 120
                            height: 120
                            scale: scale.checked && containsMouse ? scale.scaleFactor : 1
                            opacity: !fade.checked || containsMouse ? 1 : 0.5
                            Behavior on scale { NumberAnimation { easing.type: Easing.OutCubic ; duration: 120} }
                            Behavior on opacity { NumberAnimation { easing.type: Easing.OutCubic ; duration: 220} }
                        }
                    }
                }
            }
        }
        Tab {
            title: "Sidebar"
            enabled: enabledCheck.checked

            Panel {
                anchors.fill:parent
            }
        }
    }
}