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")