aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick/controls/mirroring/main.qml
blob: 535b92272104a417869525ee1b7ff21f88d401fa (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
/****************************************************************************
**
** Copyright (C) 2015 The Qt Company Ltd.
** Contact: http://www.qt.io/licensing/
**
** This file is part of the examples of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL3$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see http://www.qt.io/terms-conditions. For further
** information use the contact form at http://www.qt.io/contact-us.
**
** GNU Lesser General Public License Usage
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 3 as published by the Free Software
** Foundation and appearing in the file LICENSE.LGPLv3 included in the
** packaging of this file. Please review the following information to
** ensure the GNU Lesser General Public License version 3 requirements
** will be met: https://www.gnu.org/licenses/lgpl.html.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 2.0 or later as published by the Free
** Software Foundation and appearing in the file LICENSE.GPL included in
** the packaging of this file. Please review the following information to
** ensure the GNU General Public License version 2.0 requirements will be
** met: http://www.gnu.org/licenses/gpl-2.0.html.
**
** $QT_END_LICENSE$
**
****************************************************************************/

import QtQuick 2.4
import QtQuick.Layouts 1.0
import QtQuick.Controls 2.0

ApplicationWindow {
    id: window
    width: 360
    height: 520
    visible: true
    title: "Qt Quick Controls - Mirroring Example"

    ListView {
        id: listview
        anchors.fill: parent

        LayoutMirroring.enabled: headerItem.mirror
        LayoutMirroring.childrenInherit: true

        headerPositioning: ListView.PullBackHeader
        header: Rectangle {
            property alias mirror: mirrorToggle.checked

            z: 2
            width: parent.width
            height: label.implicitHeight + 96

            Label {
                id: label
                text: "Beyond the essentials."
                color: window.style.accentColor
                anchors.fill: parent
                anchors.margins: 48
                horizontalAlignment: Text.AlignHCenter
                verticalAlignment: Text.AlignVCenter
                wrapMode: Text.WordWrap
                font.pointSize: 26
            }

            ToggleButton {
                id: mirrorToggle
                text: "Mirror"
                anchors.right: parent.right
                anchors.bottom: parent.bottom
                layoutDirection: Qt.RightToLeft
                LayoutMirroring.enabled: false
            }

            Rectangle {
                width: parent.width
                height: 1
                anchors.bottom: parent.bottom
                color: window.style.frameColor
            }
        }

        model: VisualItemModel {

            Item { width: 1; height: 24 }

            Flow {
                id: flow
                spacing: 12
                width: Math.min(window.width, window.height) - 24
                anchors.horizontalCenter: parent.horizontalCenter

                GroupBox {
                    title: "CheckBox"
                    readonly property real preferredWidth: (flow.width - 12) / 2
                    width: window.width > window.height || implicitWidth > preferredWidth ? flow.width : preferredWidth
                    ColumnLayout {
                        width: parent.width
                        CheckBox {
                            width: parent.width
                            text: "E-mail"
                            checked: true
                        }
                        CheckBox {
                            width: parent.width
                            text: "Calendar"
                            checked: true
                        }
                        CheckBox {
                            width: parent.width
                            text: "Contacts"
                        }
                    }
                }

                GroupBox {
                    title: "RadioButton"
                    readonly property real preferredWidth: (flow.width - 12) / 2
                    width: window.width > window.height || implicitWidth > preferredWidth ? flow.width : preferredWidth
                    ColumnLayout {
                        width: parent.width
                        ExclusiveGroup { id: eg }
                        RadioButton {
                            width: parent.width
                            text: "Portrait"
                            Exclusive.group: eg
                        }
                        RadioButton {
                            width: parent.width
                            text: "Landscape"
                            Exclusive.group: eg
                        }
                        RadioButton {
                            width: parent.width
                            text: "Automatic"
                            checked: true
                            Exclusive.group: eg
                        }
                    }
                }

                GroupBox {
                    title: "Button"
                    width: flow.width
                    Row {
                        width: parent.width
                        spacing: window.style.spacing
                        readonly property real availableWidth: (flow.width - 12) / 2
                        readonly property real contentWidth: okButton.implicitWidth + cancelButton.implicitWidth + 12
                        readonly property real buttonWidth: contentWidth > availableWidth ? (width / 2 - spacing) : (width / 2 - 2 * spacing) / 2
                        Button {
                            id: okButton
                            text: "Ok"
                            width: parent.buttonWidth
                        }
                        Button {
                            id: cancelButton
                            text: "Cancel"
                            width: parent.buttonWidth
                        }
                    }
                }

                GroupBox {
                    title: "Switch"
                    width: flow.width
                    Column {
                        width: parent.width
                        Switch {
                            width: parent.width
                            text: "Wifi"
                            checked: true
                        }
                        Switch {
                            width: parent.width
                            text: "Bluetooth"
                        }
                    }
                }

                GroupBox {
                    title: "ProgressBar"
                    width: flow.width
                    Column {
                        width: parent.width
                        spacing: window.style.spacing
                        ProgressBar {
                            width: parent.width
                            indeterminate: true
                        }
                        ProgressBar {
                            width: parent.width
                            value: slider.position
                        }
                    }
                }

                GroupBox {
                    title: "Slider"
                    width: flow.width
                    Column {
                        width: parent.width
                        spacing: window.style.spacing
                        Slider {
                            id: slider
                            value: 0.4
                            width: parent.width
                        }
                        Slider {
                            width: parent.width
                            snapMode: AbstractSlider.SnapAlways
                            stepSize: 0.2
                            value: 0.8
                        }
                    }
                }
            }

            Item { width: 1; height: 12 }
        }

        AbstractScrollIndicator.vertical: ScrollIndicator { anchors.right: parent.right }
    }
}