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 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407
|
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
import QtQuick
import QtQuick.Controls
import QtQuick.Layouts
import Backend
import "." as Ui
Ui.Dialog {
id: settingsDialog
title: "Settings"
width: 500
height: 400
x: (parent.width - width) / 2
y: (parent.height - height) / 2
property alias imaginePathTextField: imaginePathTextField
property alias customImagineStyleCheckBox: customImagineStyleCheckBox
property alias autoFixImagineAssetsCheckBox: autoFixImagineAssetsCheckBox
onAboutToShow: {
styleComboBox.currentIndex = styleComboBox.styleIndex
customImagineStyleCheckBox.checked = settings.useCustomImaginePath
imaginePathTextField.text = settings.imaginePath
autoFixImagineAssetsCheckBox.checked = settings.autoFixImagineAssets
updatePaletteSettingsControls(paletteSettings)
}
onAccepted: {
settings.style = styleComboBox.displayText
settings.useCustomImaginePath = customImagineStyleCheckBox.checked
settings.imaginePath = imaginePathTextField.text
settings.autoFixImagineAssets = autoFixImagineAssetsCheckBox.checked
paletteSettings.useCustomPalette = useCustomPaletteCheckBox.checked
paletteSettings.window = windowColorEditor.color
paletteSettings.windowText = windowTextColorEditor.color
paletteSettings.base = baseColorEditor.color
paletteSettings.text = textColorEditor.color
paletteSettings.button = buttonColorEditor.color
paletteSettings.buttonText = buttonTextColorEditor.color
paletteSettings.brightText = brightTextColorEditor.color
paletteSettings.toolTipBase = toolTipBaseColorEditor.color
paletteSettings.toolTipText = toolTipTextColorEditor.color
paletteSettings.light = lightColorEditor.color
paletteSettings.midlight = midlightColorEditor.color
paletteSettings.dark = darkColorEditor.color
paletteSettings.mid = midColorEditor.color
paletteSettings.shadow = shadowColorEditor.color
paletteSettings.highlight = highlightColorEditor.color
paletteSettings.highlightedText = highlightedTextColorEditor.color
paletteSettings.link = linkColorEditor.color
}
function updatePaletteSettingsControls(source) {
useCustomPaletteCheckBox.checked = paletteSettings.useCustomPalette
windowColorEditor.color = source.window
windowTextColorEditor.color = source.windowText
baseColorEditor.color = source.base
textColorEditor.color = source.text
buttonColorEditor.color = source.button
buttonTextColorEditor.color = source.buttonText
brightTextColorEditor.color = source.brightText
toolTipBaseColorEditor.color = source.toolTipBase
toolTipTextColorEditor.color = source.toolTipText
lightColorEditor.color = source.light
midlightColorEditor.color = source.midlight
darkColorEditor.color = source.dark
midColorEditor.color = source.mid
shadowColorEditor.color = source.shadow
highlightColorEditor.color = source.highlight
highlightedTextColorEditor.color = source.highlightedText
linkColorEditor.color = source.link
}
function paletteSettingsMap() {
var map = ({});
map.window = windowColorEditor.color
map.windowText = windowTextColorEditor.color
map.base = baseColorEditor.color
map.text = textColorEditor.color
map.button = buttonColorEditor.color
map.buttonText = buttonTextColorEditor.color
map.brightText = brightTextColorEditor.color
map.toolTipBase = toolTipBaseColorEditor.color
map.toolTipText = toolTipTextColorEditor.color
map.light = lightColorEditor.color
map.midlight = midlightColorEditor.color
map.dark = darkColorEditor.color
map.mid = midColorEditor.color
map.shadow = shadowColorEditor.color
map.highlight = highlightColorEditor.color
map.highlightedText = highlightedTextColorEditor.color
map.link = linkColorEditor.color
return map;
}
Clipboard {
id: clipboard
}
DirectoryValidator {
id: directoryValidator
path: imaginePathTextField.text
}
contentItem: Flickable {
contentWidth: settingsDialog.availableWidth
contentHeight: contentLayout.implicitHeight
flickableDirection: Qt.Vertical
clip: true
ColumnLayout {
id: contentLayout
anchors.fill: parent
GroupBox {
title: qsTr("General")
Layout.fillWidth: true
Layout.fillHeight: false
GridLayout {
columns: 2
Label {
text: "Style:"
}
ComboBox {
id: styleComboBox
model: availableStyles
property int styleIndex: -1
Component.onCompleted: {
styleIndex = find(settings.style, Qt.MatchFixedString)
if (styleIndex !== -1)
currentIndex = styleIndex
}
Layout.fillWidth: true
}
Item {
Layout.fillWidth: true
}
Label {
text: "Restart required"
color: "#e41e25"
opacity: styleComboBox.currentIndex !== styleComboBox.styleIndex ? 1.0 : 0.0
Layout.topMargin: 12
Layout.maximumHeight: styleComboBox.currentIndex !== styleComboBox.styleIndex ? implicitHeight : 0
}
}
}
GroupBox {
title: qsTr("Imagine Style")
visible: usingImagineStyle
Layout.fillWidth: true
Layout.fillHeight: false
Layout.columnSpan: 2
GridLayout {
columns: 2
anchors.fill: parent
CheckBox {
id: customImagineStyleCheckBox
text: qsTr("Use Custom Assets")
enabled: usingImagineStyle
Layout.columnSpan: 2
Layout.fillWidth: false
}
Label {
text: "Asset Path"
enabled: usingImagineStyle && customImagineStyleCheckBox.checked
}
TextField {
id: imaginePathTextField
text: settings.imaginePath
enabled: usingImagineStyle && customImagineStyleCheckBox.checked
Layout.preferredWidth: 200
Layout.fillWidth: true
ToolTip {
text: "Path to a folder that contains Imagine style image assets"
visible: imaginePathTextField.hovered
delay: 500
parent: imaginePathTextField
}
}
Item {
Layout.fillWidth: true
}
Label {
text: directoryValidator.errorMessage
color: "#e41e25"
opacity: !directoryValidator.valid ? 1.0 : 0.0
elide: Label.ElideMiddle
Layout.topMargin: !directoryValidator.valid ? 12 : 0
Layout.maximumHeight: !directoryValidator.valid ? implicitHeight : 0
Layout.fillWidth: true
}
CheckBox {
id: autoFixImagineAssetsCheckBox
text: "Automatically Fix Custom Assets"
enabled: usingImagineStyle && customImagineStyleCheckBox.checked
Layout.columnSpan: 2
Layout.fillWidth: false
ToolTip {
text: "If set, custom Imagine style assets will be modified to be compliant whenever they have changed on disk"
visible: autoFixImagineAssetsCheckBox.hovered
delay: 500
parent: imaginePathTextField
}
}
}
}
GroupBox {
title: qsTr("Palette")
Layout.fillWidth: true
Layout.fillHeight: false
GridLayout {
columns: 2
anchors.fill: parent
CheckBox {
id: useCustomPaletteCheckBox
text: qsTr("Use Custom Palette")
Layout.fillWidth: false
}
ColorEditor {
id: windowColorEditor
labelText: qsTr("Window")
toolTipText: qsTr("A general background color.")
enabled: useCustomPaletteCheckBox.checked
}
ColorEditor {
id: windowTextColorEditor
labelText: qsTr("WindowText")
toolTipText: qsTr("A general foreground color.")
enabled: useCustomPaletteCheckBox.checked
}
ColorEditor {
id: baseColorEditor
labelText: qsTr("Base")
toolTipText: qsTr("Used mostly as the background color for text editor controls and items views. It is usually white or another light color.")
enabled: useCustomPaletteCheckBox.checked
}
ColorEditor {
id: textColorEditor
labelText: qsTr("Text")
toolTipText: qsTr("The foreground color used with Base. This is usually the same as the WindowText, in which case it must provide good contrast with Window and Base.")
enabled: useCustomPaletteCheckBox.checked
}
ColorEditor {
id: buttonColorEditor
labelText: qsTr("Button")
toolTipText: qsTr("The general button background color. This background can be different from Window as some styles require a different background color for buttons.")
enabled: useCustomPaletteCheckBox.checked
}
ColorEditor {
id: buttonTextColorEditor
labelText: qsTr("ButtonText")
toolTipText: qsTr("A foreground color used with the Button color.")
enabled: useCustomPaletteCheckBox.checked
}
ColorEditor {
id: brightTextColorEditor
labelText: qsTr("BrightText")
toolTipText: qsTr("A text color that is very different from WindowText, and contrasts well with e.g. Dark. Typically used for text that needs to be drawn where Text, WindowText or ButtonText would give poor contrast, such as on highlighted buttons.")
enabled: useCustomPaletteCheckBox.checked
}
ColorEditor {
id: toolTipBaseColorEditor
labelText: qsTr("ToolTipBase")
toolTipText: qsTr("Used as the background color for tooltips.")
enabled: useCustomPaletteCheckBox.checked
}
ColorEditor {
id: toolTipTextColorEditor
labelText: qsTr("ToolTipText")
toolTipText: qsTr("Used as the foreground color for tooltips.")
enabled: useCustomPaletteCheckBox.checked
}
ColorEditor {
id: lightColorEditor
labelText: qsTr("Light")
toolTipText: qsTr("Lighter than Button.")
enabled: useCustomPaletteCheckBox.checked
}
ColorEditor {
id: midlightColorEditor
labelText: qsTr("Midlight")
toolTipText: qsTr("Between Button and Light.")
enabled: useCustomPaletteCheckBox.checked
}
ColorEditor {
id: darkColorEditor
labelText: qsTr("Dark")
toolTipText: qsTr("Darker than Button.")
enabled: useCustomPaletteCheckBox.checked
}
ColorEditor {
id: midColorEditor
labelText: qsTr("Mid")
toolTipText: qsTr("Between Button and Dark.")
enabled: useCustomPaletteCheckBox.checked
}
ColorEditor {
id: shadowColorEditor
labelText: qsTr("Shadow")
toolTipText: qsTr("A very dark color.")
enabled: useCustomPaletteCheckBox.checked
}
ColorEditor {
id: highlightColorEditor
labelText: qsTr("Highlight")
toolTipText: qsTr("A color to indicate a selected item or the current item.")
enabled: useCustomPaletteCheckBox.checked
}
ColorEditor {
id: linkColorEditor
labelText: qsTr("Link")
toolTipText: qsTr("A text color used for hyperlinks.")
enabled: useCustomPaletteCheckBox.checked
}
ColorEditor {
id: highlightedTextColorEditor
labelText: qsTr("HighlightedText")
toolTipText: qsTr("A text color that contrasts with Highlight.")
enabled: useCustomPaletteCheckBox.checked
}
Button {
text: qsTr("Copy Palette Settings To Clipboard")
enabled: useCustomPaletteCheckBox.checked
onClicked: clipboard.copy(paletteSettingsMap())
Layout.columnSpan: 2
Layout.alignment: Qt.AlignRight
}
Button {
text: qsTr("Import Palette Settings From Clipboard")
enabled: useCustomPaletteCheckBox.checked
onClicked: updatePaletteSettingsControls(clipboard.paste())
Layout.columnSpan: 2
Layout.alignment: Qt.AlignRight
Layout.fillWidth: false
}
}
}
Item {
Layout.fillHeight: true
}
}
}
footer: DialogButtonBox {
Button {
text: qsTr("OK")
DialogButtonBox.buttonRole: DialogButtonBox.AcceptRole
enabled: !imaginePathTextField.enabled || (imaginePathTextField.enabled && directoryValidator.valid)
}
Button {
text: qsTr("Cancel")
DialogButtonBox.buttonRole: DialogButtonBox.RejectRole
}
}
}
|