Delegate Controls | Qt Quick Controls (original) (raw)

Qt Quick Controls offers a selection of controls that are used as delegates in views.

CheckDelegate Item delegate with a check indicator that can be toggled on or off
ItemDelegate Basic item delegate that can be used in various views and controls
RadioDelegate Exclusive item delegate with a radio indicator that can be toggled on or off
SwipeDelegate Swipable item delegate
SwitchDelegate Item delegate with a switch indicator that can be toggled on or off
TableViewDelegate A delegate that can be assigned to a TableView
TreeViewDelegate A delegate that can be assigned to a TreeView

Each type of delegate has its own specific target use case. The following sections offer guidelines for choosing the appropriate type of delegate, depending on the use case.

CheckDelegate Control

CheckDelegate presents a checkable control that can be toggled on (checked) or off (unchecked). Check delegates are typically used to select one or more options from a set of options.

See also CheckBox Control.

ItemDelegate Control

ItemDelegate presents a checkable control that can be pressed and clicked by the user.

RadioDelegate Control

RadioDelegate presents a checkable control that can be toggled on (checked) or off (unchecked). Radio delegates are typically used to select one option from a set of options.

See also RadioButton Control.

SwipeDelegate Control

SwipeDelegate presents a view item that can be swiped left or right to expose more options or information.

SwitchDelegate Control

SwitchDelegate presents a switchable delegate that can be toggled on or off.

See also Switch Control.

TableViewDelegate Control

A TableViewDelegate is a delegate that can be assigned to the delegate property of a TableView.

See also TableView

TreeViewDelegate Control

A TreeViewDelegate is a delegate that can be assigned to the delegate property of a TreeView.

See also TreeView.

Container Controls Indicator Controls

© 2025 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.