summaryrefslogtreecommitdiffstats
path: root/src/widgets/configure.json
diff options
context:
space:
mode:
authorStephan Binner <stephan.binner@basyskom.com>2017-03-02 20:16:58 +0100
committerStephan Binner <stephan.binner@basyskom.com>2017-03-06 20:34:58 +0000
commit0884e424106962785b8f2e6742d3590fb3919a97 (patch)
treeb722990083249a1d222cd03dd5e36022bd40acbc /src/widgets/configure.json
parent5c62fd9a2e01047074b3594153e5652794ac6a36 (diff)
Add feature.checkbox
Change-Id: Ib387390b796c3cab6de4ce94e0d217280a300df8 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@qt.io> Reviewed-by: Lars Knoll <lars.knoll@qt.io>
Diffstat (limited to 'src/widgets/configure.json')
-rw-r--r--src/widgets/configure.json19
1 files changed, 17 insertions, 2 deletions
diff --git a/src/widgets/configure.json b/src/widgets/configure.json
index a59f86e278..b05bf465a1 100644
--- a/src/widgets/configure.json
+++ b/src/widgets/configure.json
@@ -229,6 +229,12 @@
"condition": "features.combobox && features.stringlistmodel",
"output": [ "publicFeature", "feature" ]
},
+ "checkbox": {
+ "label": "QCheckBox(",
+ "purpose": "Provides a checkbox with a text label.",
+ "section": "Widgets",
+ "output": [ "publicFeature" ]
+ },
"toolbutton": {
"label": "QToolButton",
"purpose": "Provides quick-access buttons to commands and options.",
@@ -433,7 +439,11 @@
"label": "QMessageBox",
"purpose": "Provides message boxes displaying informative messages and simple questions.",
"section": "Dialogs",
- "condition" : "features.dialogbuttonbox && features.label",
+ "condition" : [
+ "features.checkbox",
+ "features.dialogbuttonbox",
+ "features.label"
+ ],
"output": [ "publicFeature", "feature" ]
},
"colordialog": {
@@ -470,6 +480,7 @@
"purpose": "Provides a dialog widget for selecting fonts.",
"section": "Dialogs",
"condition": [
+ "features.checkbox",
"features.combobox",
"features.dialogbuttonbox",
"features.groupbox",
@@ -504,7 +515,11 @@
"label": "QErrorMessage",
"purpose": "Provides an error message display dialog.",
"section": "Dialogs",
- "condition": "features.textedit && features.label",
+ "condition": [
+ "features.checkbox",
+ "features.textedit",
+ "features.label"
+ ],
"output": [ "publicFeature", "feature" ]
},
"wizard": {