summaryrefslogtreecommitdiffstats
path: root/src/widgets/configure.json
diff options
context:
space:
mode:
authorStephan Binner <stephan.binner@basyskom.com>2017-03-02 09:20:00 +0100
committerStephan Binner <stephan.binner@basyskom.com>2017-03-06 20:34:42 +0000
commit5c62fd9a2e01047074b3594153e5652794ac6a36 (patch)
treea02696746efc73f8f6a840b0ae175f16d8aa04ba /src/widgets/configure.json
parent0b109a952b532338987c3305d2aa37a185984c80 (diff)
Add feature.dialogbuttonbox
Change-Id: I8c136024c3bf431529033a806be646d867919daa 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.json33
1 files changed, 29 insertions, 4 deletions
diff --git a/src/widgets/configure.json b/src/widgets/configure.json
index 2ae8872c88..a59f86e278 100644
--- a/src/widgets/configure.json
+++ b/src/widgets/configure.json
@@ -423,18 +423,28 @@
"condition": "features.lineedit && features.shortcut",
"output": [ "publicFeature", "feature" ]
},
+ "dialogbuttonbox": {
+ "label": "QDialogButtonBox",
+ "purpose": "Presents buttons in a layout that is appropriate for the current widget style.",
+ "section": "Dialogs",
+ "output": [ "publicFeature" ]
+ },
"messagebox": {
"label": "QMessageBox",
"purpose": "Provides message boxes displaying informative messages and simple questions.",
"section": "Dialogs",
- "condition" : "features.label",
+ "condition" : "features.dialogbuttonbox && features.label",
"output": [ "publicFeature", "feature" ]
},
"colordialog": {
"label": "QColorDialog",
"purpose": "Provides a dialog widget for specifying colors.",
"section": "Dialogs",
- "condition": "features.spinbox && features.label",
+ "condition": [
+ "features.dialogbuttonbox",
+ "features.label",
+ "features.spinbox"
+ ],
"output": [ "publicFeature", "feature" ]
},
"filedialog": {
@@ -444,6 +454,7 @@
"condition": [
"features.buttongroup",
"features.combobox",
+ "features.dialogbuttonbox",
"features.dirmodel",
"features.label",
"features.proxymodel",
@@ -458,7 +469,14 @@
"label": "QFontDialog",
"purpose": "Provides a dialog widget for selecting fonts.",
"section": "Dialogs",
- "condition": "features.stringlistmodel && features.combobox && features.validator && features.groupbox && features.label",
+ "condition": [
+ "features.combobox",
+ "features.dialogbuttonbox",
+ "features.groupbox",
+ "features.label",
+ "features.stringlistmodel",
+ "features.validator"
+ ],
"output": [ "publicFeature", "feature" ]
},
"progressdialog": {
@@ -472,7 +490,14 @@
"label": "QInputDialog",
"purpose": "Provides a simple convenience dialog to get a single value from the user.",
"section": "Dialogs",
- "condition": "features.combobox && features.spinbox && features.stackedwidget && features.textedit && features.label",
+ "condition": [
+ "features.combobox",
+ "features.dialogbuttonbox",
+ "features.label",
+ "features.spinbox",
+ "features.stackedwidget",
+ "features.textedit"
+ ],
"output": [ "publicFeature", "feature" ]
},
"errormessage": {