aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/controls/doc/src/qtquickcontrols2-customize.qdoc
blob: 0a0cd13d5f9023f3ad97191546f11e85c16ad326 (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
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
/****************************************************************************
**
** Copyright (C) 2015 The Qt Company Ltd.
** Contact: http://www.qt.io/licensing/
**
** This file is part of the documentation of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:FDL$
** 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 Free Documentation License Usage
** Alternatively, this file may be used under the terms of the GNU Free
** Documentation License version 1.3 as published by the Free Software
** Foundation and appearing in the file included in the packaging of
** this file. Please review the following information to ensure
** the GNU Free Documentation License version 1.3 requirements
** will be met: http://www.gnu.org/copyleft/fdl.html.
** $QT_END_LICENSE$
**
****************************************************************************/

/*!
    \page qtquickcontrols2-customize.html
    \title Customizing Qt Quick Controls 2
    \brief A set of UI controls to create user interfaces in Qt Quick

    Qt Labs Controls consist of a hierarchy (tree) of items. In order to
    provide a custom look and feel, the default QML implementation of each
    item can be replaced with a custom one. The following snippets present
    the default implementations of various items. These can be used as a
    starting point to implement a custom look and feel.

    \section1 Customizing BusyIndicator

        BusyIndicator consists of two visual items: \l {Control::background}{background}
        and \l {Control::contentItem}{contentItem}.

        \section3 Background

            \image qtquickcontrols-busyindicator-background.png

            BusyIndicator has no background item by default.

        \section3 Content item

            \image qtquickcontrols-busyindicator-contentItem.png

            \snippet BusyIndicator.qml contentItem


    \section1 Customizing Button

        Button consists of two visual items: \l {Control::background}{background}
        and \l {Control::contentItem}{content item}.

        \section3 Background

            \image qtquickcontrols-button-background.png

            \snippet Button.qml background

        \section3 Content item

            \image qtquickcontrols-button-contentItem.png

            \snippet Button.qml contentItem


    \section1 Customizing CheckBox

        CheckBox consists of three visual items: \l {Control::background}{background},
        \l {Control::contentItem}{contentItem} and \l {AbstractButton::indicator}{indicator}.

        \section3 Background

            \image qtquickcontrols-checkbox-background.png

            CheckBox has no background item by default.

        \section3 Content item

            \image qtquickcontrols-checkbox-contentItem.png

            \snippet CheckBox.qml contentItem

        \section3 Indicator

            \image qtquickcontrols-checkbox-indicator.png

            \snippet CheckBox.qml indicator


    \section1 Customizing ComboBox

        ComboBox consists of \l {Control::background}{background},
        \l {Control::contentItem}{content item}, \l {ComboBox::popup}{popup},
        and \l {ComboBox::delegate}{delegate}.

        \section3 Background

            \image qtquickcontrols-combobox-background.png

            \snippet ComboBox.qml background

        \section3 Content item

            \image qtquickcontrols-combobox-contentItem.png

            \snippet ComboBox.qml contentItem

        \section3 Popup

            \image qtquickcontrols-combobox-popup.png

            \snippet ComboBox.qml popup

        \section3 Delegate

            \image qtquickcontrols-combobox-delegate.png

            \snippet ComboBox.qml delegate


    \section1 Customizing Dial

        Dial consists of two visual items: \l {Control::background}{background}
        and \l {Dial::handle}{handle}.

        \section3 Background

            \image qtquickcontrols-dial-background.png

            \snippet Dial.qml background

        \section3 Indicator

            \image qtquickcontrols-dial-handle.png

            \snippet Dial.qml handle


    \section1 Customizing Drawer

        Drawer can have a visual \l {Control::background}{background}
        item.

        \section3 Background

            \snippet Drawer.qml background


    \section1 Customizing Frame

        Frame consists of one visual item: \l {Control::background}{background}.

        \section3 Background

            \image qtquickcontrols-frame-background.png

            \snippet Frame.qml background


    \section1 Customizing GroupBox

        GroupBox consists of two visual items: \l {Control::background}{background}
        and \l {GroupBox::label}{label}.

        \section3 Background

            \image qtquickcontrols-groupbox-background.png

            \snippet GroupBox.qml background

        \section3 Label

            \image qtquickcontrols-groupbox-label.png

            \snippet GroupBox.qml label


    \section1 Customizing ItemDelegate

        ItemDelegate consists of three visual items: \l {Control::background}{background},
        \l {Control::contentItem}{content item} and \l {AbstractButton::indicator}{indicator}.
        The indicator is only visible for \l {AbstractButton::checkable}{checkable} items.

        \section3 Background

            \image qtquickcontrols-itemdelegate-background.png

            \snippet ItemDelegate.qml background

        \section3 Content item

            \image qtquickcontrols-itemdelegate-contentItem.png

            \snippet ItemDelegate.qml contentItem

        \section3 Indicator

            \image qtquickcontrols-itemdelegate-indicator.png

            \snippet ItemDelegate.qml indicator


    \section1 Customizing Label

        Label can have a visual \l {Label::background}{background} item.

        \section3 Background

            \image qtquickcontrols-label-background.png

            Label has no background item by default.


    \section1 Customizing Menu

        Menu consists of a \l {Popup::}{contentItem}.

        \section3 Content item

            \image qtquickcontrols-menu-contentItem.png

            \snippet Menu.qml contentItem


    \section1 Customizing MenuItem

        MenuItem can be customized in the same manner as
        \l {Customizing Button}{Button}.


    \section1 Customizing PageIndicator

        PageIndicator consists of a \l {Control::background}{background}, \l {Control::contentItem}{content item}, and \l {PageIndicator::delegate}{delegate}.

        \section3 Background

            \image qtquickcontrols-pageindicator-background.png

        PageIndicator has no background item by default.

        \section3 Content item

            \image qtquickcontrols-pageindicator-contentItem.png

            \snippet PageIndicator.qml contentItem

        \section3 Delegate

            \image qtquickcontrols-pageindicator-delegate.png

            \snippet PageIndicator.qml delegate



    \section1 Customizing Pane

        Pane consists of a \l {Control::background}{background}.

        \section3 Background

            \image qtquickcontrols-pane-background.png

            \snippet Pane.qml background


    \section1 Customizing ProgressBar

        ProgressBar consists of two visual items: \l {Control::background}{background}
        and \l {Control::contentItem}{content item}.

        \section3 Background

            \image qtquickcontrols-progressbar-background.png

            \snippet ProgressBar.qml background

        \section3 Content item

            \image qtquickcontrols-progressbar-contentItem.png

            \snippet ProgressBar.qml contentItem


    \section1 Customizing RadioButton

        RadioButton consists of three visual items: \l {Control::background}{background},
        \l {Control::contentItem}{content item} and \l {AbstractButton::indicator}{indicator}.

        \section3 Background

            \image qtquickcontrols-radiobutton-background.png

            RadioButton has no background item by default.

        \section3 Content item

            \image qtquickcontrols-radiobutton-contentItem.png

            \snippet RadioButton.qml contentItem

        \section3 Indicator

            \image qtquickcontrols-radiobutton-indicator.png

            \snippet RadioButton.qml indicator


    \section1 Customizing RangeSlider

        RangeSlider consists of three visual items:
        \l {Control::background}{background},
        \l {RangeSlider::first}{first.handle} and
        \l {RangeSlider::second.handle}{second.handle}.

        \section3 Background

            \image qtquickcontrols-rangeslider-background.png

            \snippet RangeSlider.qml background

        \section3 First Handle

            \image qtquickcontrols-rangeslider-first-handle.png

            \snippet RangeSlider.qml firstHandle

        \section3 Second Handle

            \image qtquickcontrols-rangeslider-second-handle.png

            \snippet RangeSlider.qml secondHandle


    \section1 Customizing ScrollBar

        ScrollBar consists of two visual items: \l {Control::background}{background}
        and \l {Control::contentItem}{content item}.

        \section3 Background

            \image qtquickcontrols-scrollbar-background.png

            ScrollBar has no background item by default.

        \section3 Content item

            \image qtquickcontrols-scrollbar-contentItem.png

            \snippet ScrollBar.qml contentItem


    \section1 Customizing ScrollIndicator

        ScrollIndicator consists of two visual items: \l {Control::background}{background}
        and \l {Control::contentItem}{content item}.

        \section3 Background

            \image qtquickcontrols-scrollindicator-background.png

            ScrollIndicator has no background item by default.

        \section3 Content item

            \image qtquickcontrols-scrollindicator-contentItem.png

            \snippet ScrollIndicator.qml contentItem


    \section1 Customizing Slider

        Slider consists of two visual items: \l {Control::background}{background},
        and \l {Slider::handle}{handle}.

        \section3 Background

            \image qtquickcontrols-slider-background.png

            \snippet Slider.qml background

        \section3 Handle

            \image qtquickcontrols-slider-handle.png

            \snippet Slider.qml handle


    \section1 Customizing SpinBox

        SpinBox consists of four visual items: \l {Control::background}{background},
        \l {Control::contentItem}{contentItem}, \l {SpinBox::up.indicator}{up indicator},
        and \l {SpinBox::down.indicator}{down indicator}.

        \section3 Background

            \image qtquickcontrols-spinbox-background.png

            \snippet SpinBox.qml background

        \section3 Content item

            \image qtquickcontrols-spinbox-contentItem.png

            \snippet SpinBox.qml contentItem

        \section3 Down indicator

            \image qtquickcontrols-spinbox-down.png

            \snippet SpinBox.qml down.indicator

        \section3 Up indicator

            \image qtquickcontrols-spinbox-up.png

            \snippet SpinBox.qml up.indicator


    \section1 Customizing StackView

        StackView can have a visual \l {Control::background}{background}
        item, and it allows customizing the transitions that are used for
        push, pop, and replace operations.

        \section3 Push enter

            \snippet StackView.qml pushEnter

        \section3 Push exit

            \snippet StackView.qml pushExit

        \section3 Pop enter

            \snippet StackView.qml popEnter

        \section3 Pop exit

            \snippet StackView.qml popExit

        \section3 Replace enter

            \snippet StackView.qml replaceEnter

        \section3 Replace exit

            \snippet StackView.qml replaceExit

    \section1 Customizing SwipeDelegate

        SwipeDelegate consists of four visual items: \l {Control::background}{background},
        \l {Control::contentItem}{content item}, \c exposure.left, and \c exposure.right.

        \section3 Background

            \image qtquickcontrols-swipedelegate-background.png

            \snippet SwipeDelegate.qml background

        \section3 Content item

            \image qtquickcontrols-swipedelegate-contentItem.png

            \snippet SwipeDelegate.qml contentItem

        \section3 Left, right, and behind

            \image qtquickcontrols-swipedelegate.gif

            By default, there are no left, right, or behind items defined.

    \section1 Customizing SwipeView

        SwipeView can have a visual \l {Control::background}{background}
        item. The navigation is implemented by the \l {Control::contentItem}
        {content item}.

        \section3 Background

        SwipeView has no background item by default.

        \section3 Content item

        \snippet SwipeView.qml contentItem

    \section1 Customizing Switch

        Switch consists of three visual items: \l {Control::background}{background},
        \l {Control::contentItem}{content item} and \l {AbstractButton::indicator}{indicator}.

        \section3 Background

            \image qtquickcontrols-switch-background.png

            Switch has no background item by default.

        \section3 Content item

            \image qtquickcontrols-switch-contentItem.png

            \snippet Switch.qml contentItem

        \section3 Indicator

            \image qtquickcontrols-switch-indicator.png

            \snippet Switch.qml indicator


    \section1 Customizing TabBar

        TODO


    \section1 Customizing TabButton

        TODO


    \section1 Customizing TextArea

        TODO


    \section1 Customizing TextField

        TextField offers a customizable \l {TextField::background}{background} item.

        \section3 Background

            \image qtquickcontrols-textfield-background.png

            \snippet TextField.qml background


    \section1 Customizing ToolBar

        ToolBar consists of one visual item: \l {Control::background}{background}.

        \section3 Background

            \image qtquickcontrols-toolbar-background.png

            \snippet ToolBar.qml background


    \section1 Customizing ToolButton

        ToolButton consists of two visual items: \l {Control::background}{background}
        and \l {Control::contentItem}{content item}.

        \section3 Background

            \image qtquickcontrols-toolbutton-background.png

            \snippet ToolButton.qml background

        \section3 Content item

            \image qtquickcontrols-toolbutton-contentItem.png

            \snippet ToolButton.qml contentItem


    \section1 Customizing ToolTip

        ToolTip consists of two visual items: \l {Popup::background}{background}
        and \l {Popup::contentItem}{content item}.

        \section3 Background

            \image qtquickcontrols-tooltip-background.png

            \snippet ToolTip.qml background

        \section3 Content item

            \image qtquickcontrols-tooltip-contentItem.png

            \snippet ToolTip.qml contentItem


    \section1 Customizing Tumbler

        Tumbler consists of three visual items:
        \l {Control::background}{background},
        \l {Control::contentItem}{contentItem}, and
        \l {Tumbler::delegate}{delegate}.

        \section3 Background

            \image qtquickcontrols-tumbler-background.png

            Tumbler has no background item by default.

        \section3 Content Item

            \image qtquickcontrols-tumbler-contentItem.png

            \snippet Tumbler.qml contentItem

        \section3 Delegate

            \image qtquickcontrols-tumbler-delegate.png

            \snippet Tumbler.qml delegate
*/