aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/controls/designer/ComboBoxSpecifics.qml
diff options
context:
space:
mode:
authorThomas Hartmann <thomas.hartmann@qt.io>2018-03-23 14:36:18 +0100
committerThomas Hartmann <thomas.hartmann@qt.io>2018-03-23 14:52:38 +0000
commit47f8ec557fed18286a8280b069e18d8b421a9e7b (patch)
tree4024484d4f6856b2fb47f664bf23dc85ffee89c0 /src/imports/controls/designer/ComboBoxSpecifics.qml
parent81f656eeac522532ff98a32aac68a1571ea54c99 (diff)
Add a few missing properties to property editor
Change-Id: I25bfc453bdfdc007ec10a69de92f3f339617c2d7 Reviewed-by: J-P Nurmi <jpnurmi@qt.io> Reviewed-by: Mitch Curtis <mitch.curtis@qt.io>
Diffstat (limited to 'src/imports/controls/designer/ComboBoxSpecifics.qml')
-rw-r--r--src/imports/controls/designer/ComboBoxSpecifics.qml32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/imports/controls/designer/ComboBoxSpecifics.qml b/src/imports/controls/designer/ComboBoxSpecifics.qml
index 3ed283ca..c5fc6781 100644
--- a/src/imports/controls/designer/ComboBoxSpecifics.qml
+++ b/src/imports/controls/designer/ComboBoxSpecifics.qml
@@ -70,6 +70,38 @@ Column {
Layout.fillWidth: true
}
}
+ Label {
+ text: qsTr("Editable")
+ tooltip: qsTr("Whether the combo box is editable.")
+ }
+ SecondColumnLayout {
+ CheckBox {
+ text: backendValues.editable.valueToString
+ backendValue: backendValues.editable
+ Layout.fillWidth: true
+ }
+ }
+ Label {
+ text: qsTr("Flat")
+ tooltip: qsTr("Whether the combo box button is flat.")
+ }
+ SecondColumnLayout {
+ CheckBox {
+ text: backendValues.flat.valueToString
+ backendValue: backendValues.flat
+ Layout.fillWidth: true
+ }
+ }
+ Label {
+ text: qsTr("DisplayText")
+ tooltip: qsTr("Holds the text that is displayed on the combo box button.")
+ }
+ SecondColumnLayout {
+ LineEdit {
+ backendValue: backendValues.displayText
+ Layout.fillWidth: true
+ }
+ }
}
}