aboutsummaryrefslogtreecommitdiffstats
path: root/src/quickcontrols/designer/ItemDelegateSection.qml
diff options
context:
space:
mode:
Diffstat (limited to 'src/quickcontrols/designer/ItemDelegateSection.qml')
-rw-r--r--src/quickcontrols/designer/ItemDelegateSection.qml25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/quickcontrols/designer/ItemDelegateSection.qml b/src/quickcontrols/designer/ItemDelegateSection.qml
new file mode 100644
index 0000000000..1d6c45606a
--- /dev/null
+++ b/src/quickcontrols/designer/ItemDelegateSection.qml
@@ -0,0 +1,25 @@
+// Copyright (C) 2017 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
+
+import QtQuick
+import HelperWidgets
+import QtQuick.Layouts
+
+Section {
+ id: section
+ caption: qsTr("ItemDelegate")
+
+ SectionLayout {
+ Label {
+ text: qsTr("Highlighted")
+ tooltip: qsTr("Whether the delegate is highlighted.")
+ }
+ SecondColumnLayout {
+ CheckBox {
+ text: backendValues.highlighted.valueToString
+ backendValue: backendValues.highlighted
+ Layout.fillWidth: true
+ }
+ }
+ }
+}