aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/controls/universal/Dialog.qml
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@qt.io>2016-10-22 21:18:52 +0200
committerJ-P Nurmi <jpnurmi@qt.io>2016-10-26 09:17:20 +0000
commit52e933ce2b10b0e1b48afa9ce048552830309da7 (patch)
tree4fa2775aeaac86bbf083b0d477b4919004a55fe4 /src/imports/controls/universal/Dialog.qml
parentfa71ef5a2ccfa4666db9338c4ba8f34d19f2faf1 (diff)
Add QQuickDialog::title
Dialog is incomplete without built-in support for title. All dialogs in the examples, screenshots, webinars, and blog posts have had a custom title. The Material and Universal designs both have specs for dialog titles. This commit adds support for dialog titles with appropriate looks (padding & font) out of the box. Task-number: QTBUG-56711 Change-Id: I248150313f1ce629a7105fdbe1c70c8fcd69e1cc Reviewed-by: Mitch Curtis <mitch.curtis@qt.io>
Diffstat (limited to 'src/imports/controls/universal/Dialog.qml')
-rw-r--r--src/imports/controls/universal/Dialog.qml17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/imports/controls/universal/Dialog.qml b/src/imports/controls/universal/Dialog.qml
index bff289d9..ce34fd07 100644
--- a/src/imports/controls/universal/Dialog.qml
+++ b/src/imports/controls/universal/Dialog.qml
@@ -63,6 +63,23 @@ T.Dialog {
border.width: 1 // FlyoutBorderThemeThickness
}
+ header: Label {
+ text: control.title
+ visible: control.title
+ elide: Label.ElideRight
+ topPadding: 18
+ leftPadding: 24
+ rightPadding: 24
+ // TODO: QPlatformTheme::TitleBarFont
+ font.pixelSize: 20
+ background: Rectangle {
+ x: 1; y: 1 // // FlyoutBorderThemeThickness
+ color: control.Universal.chromeMediumLowColor
+ width: parent.width - 2
+ height: parent.height - 1
+ }
+ }
+
footer: DialogButtonBox {
visible: count > 0
}