aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick/dialogs
diff options
context:
space:
mode:
authorShawn Rutledge <shawn.rutledge@digia.com>2013-03-08 16:44:32 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-03-14 17:46:15 +0100
commit2050601125eeb72950a7d718b5136d16c898f8e6 (patch)
tree2d41323b8b61d5194c8b71b01ab0517459bbd131 /examples/quick/dialogs
parentc64ab7db9856488a216e063052c8aeb6d36628a8 (diff)
Cosmetic changes in common controls for examples
Use system palette colors. SimpleLauncherDelegate has its own "button" rather than using the shared one, which really wasn't suitable for any other purpose. So now example apps can use Button, and ToolButton isn't necessary. Change-Id: I632397f36b96a26c32a86301ddacb85d5c3221f0 Reviewed-by: Jens Bache-Wiig <jens.bache-wiig@digia.com>
Diffstat (limited to 'examples/quick/dialogs')
-rw-r--r--examples/quick/dialogs/FileDialogs.qml36
1 files changed, 19 insertions, 17 deletions
diff --git a/examples/quick/dialogs/FileDialogs.qml b/examples/quick/dialogs/FileDialogs.qml
index 3a987ff86f..a6df29bb37 100644
--- a/examples/quick/dialogs/FileDialogs.qml
+++ b/examples/quick/dialogs/FileDialogs.qml
@@ -46,19 +46,15 @@ Rectangle {
width: 580
height: 360
- color: "#444444"
+ color: palette.window
+ SystemPalette { id: palette }
Rectangle {
id: toolbar
width: parent.width
height: 40
- border.color: "black"
- gradient: Gradient {
- GradientStop { position: 0.0; color: "#444444" }
- GradientStop { position: 0.3; color: "grey" }
- GradientStop { position: 0.85; color: "grey" }
- GradientStop { position: 1.0; color: "white" }
- }
+ color: Qt.darker(palette.window, 1.1)
+ border.color: Qt.darker(palette.window, 1.3)
Row {
spacing: 6
anchors.verticalCenter: parent.verticalCenter
@@ -66,17 +62,17 @@ Rectangle {
anchors.leftMargin: 8
height: parent.height - 6
width: parent.width
- ToolButton {
+ Button {
text: "Open"
anchors.verticalCenter: parent.verticalCenter
onClicked: fileDialog.open()
}
- ToolButton {
+ Button {
text: "Close"
anchors.verticalCenter: parent.verticalCenter
onClicked: fileDialog.close()
}
- ToolButton {
+ Button {
text: "/tmp"
anchors.verticalCenter: parent.verticalCenter
// TODO: QTBUG-29814 This isn't portable, but we don't expose QDir::tempPath to QML yet.
@@ -107,7 +103,7 @@ Rectangle {
anchors.margins: 8
spacing: 8
Text {
- color: "white"
+ color: palette.windowText
font.bold: true
text: "File dialog properties:"
}
@@ -139,23 +135,29 @@ Rectangle {
Binding on checked { value: fileDialog.visible }
}
Text {
- color: "#EEEEDD"
+ color: palette.windowText
text: "<b>current view folder:</b> " + fileDialog.folder
}
Text {
- color: "#EEEEDD"
- text: "<b>name filters:</b> {" + fileDialog.nameFilters + "}; current filter: " + fileDialog.selectedNameFilter
+ color: palette.windowText
+ text: "<b>name filters:</b> {" + fileDialog.nameFilters + "}"
+ width: parent.width
+ wrapMode: Text.Wrap
+ }
+ Text {
+ color: palette.windowText
+ text: "<b>current filter:</b>" + fileDialog.selectedNameFilter
width: parent.width
wrapMode: Text.Wrap
}
Text {
- color: "#EEEEDD"
+ color: palette.windowText
text: "<b>chosen files:</b> " + fileDialog.fileUrls
width: parent.width
wrapMode: Text.Wrap
}
Text {
- color: "#EEEEDD"
+ color: palette.windowText
text: "<b>chosen single path:</b> " + fileDialog.fileUrl
width: parent.width
wrapMode: Text.Wrap