summaryrefslogtreecommitdiffstats
path: root/examples/quick/dialogs/systemdialogs/systemdialogs.qml
diff options
context:
space:
mode:
authorShawn Rutledge <shawn.rutledge@digia.com>2014-10-16 17:28:09 +0200
committerShawn Rutledge <shawn.rutledge@digia.com>2014-10-23 11:13:08 +0200
commit511a9b521f5c025bb513ac8eecaeff5d41bba7e8 (patch)
tree09e74003ec5e11b1da5567031efd8c65f5518e96 /examples/quick/dialogs/systemdialogs/systemdialogs.qml
parent11ff483c564b8a2f5b3ef5e28230fbfc742a2cd2 (diff)
QtQuick.Dialogs examples: use controls and layouts; visual tweaks
Make tab and button labels shorter so that they fit even on very-small- screen devices (like iOS). Make the content of some tabs scrollable. Background color of the Font tab matches the others. Use RowLayout to make baseline alignment of checkboxes and associated text fields possible. Use ColumnLayout because it works better inside a ScrollView. Use Label instead of Text so that the renderType is consistent. Change-Id: Ie2d07153532f35d108a0b6ad0bb4f10326f79d24 Task-number: QTBUG-41999 Reviewed-by: Jan Arve Sæther <jan-arve.saether@theqtcompany.com>
Diffstat (limited to 'examples/quick/dialogs/systemdialogs/systemdialogs.qml')
-rw-r--r--examples/quick/dialogs/systemdialogs/systemdialogs.qml10
1 files changed, 5 insertions, 5 deletions
diff --git a/examples/quick/dialogs/systemdialogs/systemdialogs.qml b/examples/quick/dialogs/systemdialogs/systemdialogs.qml
index 0c30d9e59..5e8cb7864 100644
--- a/examples/quick/dialogs/systemdialogs/systemdialogs.qml
+++ b/examples/quick/dialogs/systemdialogs/systemdialogs.qml
@@ -52,23 +52,23 @@ ApplicationWindow {
anchors.margins: 8
Tab {
id: controlPage
- title: "File Dialog"
+ title: "File"
FileDialogs { }
}
Tab {
- title: "Color Dialog"
+ title: "Color"
ColorDialogs { }
}
Tab {
- title: "Font Dialog"
+ title: "Font"
FontDialogs { anchors.fill: parent }
}
Tab {
- title: "Message Dialog"
+ title: "Message"
MessageDialogs { anchors.fill:parent }
}
Tab {
- title: "Custom Dialogs"
+ title: "Custom"
CustomDialogs { anchors.fill:parent }
}
}