1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320
|
// Copyright (C) 2021 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
import QtQuick
import QtQuick.Controls
import QtQuick.Dialogs
import QtQuick.Layouts
ColumnLayout {
property alias dialog: messageBox
// Put it all in another ColumnLayout so we can easily add margins.
ColumnLayout {
Layout.leftMargin: 12
Layout.rightMargin: 12
Layout.topMargin: 12
Layout.bottomMargin: 12
GroupBox {
title: qsTr("Dialog properties")
Layout.fillWidth: true
Layout.fillHeight: false
GridLayout {
columns: 2
anchors.fill: parent
Label {
text: qsTr("modality")
Layout.alignment: Qt.AlignTop
Layout.minimumWidth: ApplicationWindow.window.width * 0.2
Layout.maximumWidth: ApplicationWindow.window.width * 0.2
}
ButtonGroup {
id: modalityButtonGroup
buttons: modalityColumnLayout.children
}
ColumnLayout {
id: modalityColumnLayout
RadioButton {
text: qsTr("Qt.NonModal")
Layout.fillWidth: false
readonly property int modality: Qt.NonModal
}
RadioButton {
text: qsTr("Qt.WindowModal")
checked: true
Layout.fillWidth: false
readonly property int modality: Qt.WindowModal
}
RadioButton {
text: qsTr("Qt.ApplicationModal")
Layout.fillWidth: false
readonly property int modality: Qt.ApplicationModal
}
}
Label {
text: qsTr("result")
}
TextField {
id: resultTextField
text: messageBox.result === 1 ? qsTr("Accepted") : qsTr("Rejected")
readOnly: true
enabled: false
Layout.fillWidth: false
}
Label {
text: qsTr("title")
}
TextField {
id: titleTextField
text: qsTr("Hello World")
Layout.fillWidth: false
}
}
}
GroupBox {
title: qsTr("MessageBox properties")
Layout.fillWidth: true
Layout.fillHeight: false
ColumnLayout {
RowLayout {
Label {
text: qsTr("text")
}
TextField {
id: textProperty
text: qsTr("default text")
Layout.fillWidth: false
}
}
RowLayout {
Label {
text: qsTr("informativeText")
}
TextField {
id: informativeTextProperty
text: qsTr("default informative text")
Layout.fillWidth: false
}
}
RowLayout {
Label {
text: qsTr("detailedText")
}
TextArea {
id: detailedTextProperty
background: Rectangle {
width: detailedTextProperty.width
height: detailedTextProperty.height
color: "white"
border.color: "black"
border.width: 1
}
Layout.maximumWidth: ApplicationWindow.window.width * 0.5
Layout.fillWidth: false
Layout.fillHeight: false
wrapMode: TextEdit.WordWrap
text: qsTr("This text will be displayed in the 'detailed text' textArea, which the user must press a button to see.\n"
+ "If this is an empty string, the button will not be visible.")
}
}
CheckBox {
id: okCheckbox
text: qsTr("Ok")
Layout.fillWidth: false
readonly property int value: checked ? MessageDialog.Ok : MessageDialog.NoButton
}
CheckBox {
id: saveCheckbox
text: qsTr("Save")
Layout.fillWidth: false
readonly property int value: checked ? MessageDialog.Save : MessageDialog.NoButton
}
CheckBox {
id: saveAllCheckbox
text: qsTr("Save All")
Layout.fillWidth: false
readonly property int value: checked ? MessageDialog.SaveAll : MessageDialog.NoButton
}
CheckBox {
id: openCheckbox
text: qsTr("Open")
Layout.fillWidth: false
readonly property int value: checked ? MessageDialog.Open : MessageDialog.NoButton
}
CheckBox {
id: yesCheckbox
text: qsTr("Yes")
Layout.fillWidth: false
readonly property int value: checked ? MessageDialog.Yes : MessageDialog.NoButton
}
CheckBox {
id: yesToAllCheckbox
text: qsTr("Yes to all")
Layout.fillWidth: false
readonly property int value: checked ? MessageDialog.YesToAll : MessageDialog.NoButton
}
CheckBox {
id: noCheckbox
text: qsTr("No")
Layout.fillWidth: false
readonly property int value: checked ? MessageDialog.No : MessageDialog.NoButton
}
CheckBox {
id: noToAllCheckbox
text: qsTr("No to all")
Layout.fillWidth: false
readonly property int value: checked ? MessageDialog.NoToAll : MessageDialog.NoButton
}
CheckBox {
id: abortCheckbox
text: qsTr("Abort")
Layout.fillWidth: false
readonly property int value: checked ? MessageDialog.Abort : MessageDialog.NoButton
}
CheckBox {
id: retryCheckbox
text: qsTr("Retry")
Layout.fillWidth: false
readonly property int value: checked ? MessageDialog.Retry : MessageDialog.NoButton
}
CheckBox {
id: ignoreCheckbox
text: qsTr("Ignore")
Layout.fillWidth: false
readonly property int value: checked ? MessageDialog.Ignore : MessageDialog.NoButton
}
CheckBox {
id: closeCheckbox
text: qsTr("Close")
Layout.fillWidth: false
readonly property int value: checked ? MessageDialog.Close : MessageDialog.NoButton
}
CheckBox {
id: cancelCheckbox
text: qsTr("Cancel")
Layout.fillWidth: false
readonly property int value: checked ? MessageDialog.Cancel : MessageDialog.NoButton
}
CheckBox {
id: discardCheckbox
text: qsTr("Discard")
Layout.fillWidth: false
readonly property int value: checked ? MessageDialog.Discard : MessageDialog.NoButton
}
CheckBox {
id: helpCheckbox
text: qsTr("Help")
Layout.fillWidth: false
readonly property int value: checked ? MessageDialog.Help : MessageDialog.NoButton
}
CheckBox {
id: applyCheckbox
text: qsTr("Apply")
Layout.fillWidth: false
readonly property int value: checked ? MessageDialog.Apply : MessageDialog.NoButton
}
CheckBox {
id: resetCheckbox
text: qsTr("Reset")
Layout.fillWidth: false
readonly property int value: checked ? MessageDialog.Reset : MessageDialog.NoButton
}
}
}
MessageDialog {
id: messageBox
buttons: okCheckbox.value |
saveCheckbox.value |
saveAllCheckbox.value |
openCheckbox.value |
yesCheckbox.value |
yesToAllCheckbox.value |
noCheckbox.value |
noToAllCheckbox.value |
abortCheckbox.value |
retryCheckbox.value |
ignoreCheckbox.value |
closeCheckbox.value |
cancelCheckbox.value |
discardCheckbox.value |
helpCheckbox.value |
applyCheckbox.value |
resetCheckbox.value
modality: modalityButtonGroup.checkedButton.modality
title: titleTextField.text
text: textProperty.text
informativeText: informativeTextProperty.text
detailedText: detailedTextProperty.text
onButtonClicked: function(button, role) {
if (button & MessageDialog.Ok)
console.log("Ok pressed")
else if (button & MessageDialog.Save)
console.log("Save pressed")
else if (button & MessageDialog.SaveAll)
console.log("Save to all pressed")
else if (button & MessageDialog.Open)
console.log("Open pressed")
else if (button & MessageDialog.Yes)
console.log("Yes pressed")
else if (button & MessageDialog.YesToAll)
console.log("Yes to all pressed")
else if (button & MessageDialog.No)
console.log("No pressed")
else if (button & MessageDialog.NoToAll)
console.log("No to all pressed")
else if (button & MessageDialog.Abort)
console.log("Abort pressed")
else if (button & MessageDialog.Retry)
console.log("Retry pressed")
else if (button & MessageDialog.Ignore)
console.log("Ignore pressed")
else if (button & MessageDialog.Close)
console.log("Close pressed")
else if (button & MessageDialog.Cancel)
console.log("Cancel pressed")
else if (button & MessageDialog.Discard)
console.log("Discard pressed")
else if (button & MessageDialog.Help)
console.log("Help pressed")
else if (button & MessageDialog.Apply)
console.log("Apply pressed")
else if (button & MessageDialog.Reset)
console.log("Rest pressed")
}
}
}
}
|