SystemPalette QML Type
Provides access to the Qt palettes. More...
Import Statement: | import QtQuick |
Properties
- accent : color
(since 6.7)
- alternateBase : color
- base : color
- button : color
- buttonText : color
- colorGroup : enumeration
- dark : color
- highlight : color
- highlightedText : color
- light : color
- mid : color
- midlight : color
- placeholderText : color
(since 6.2)
- shadow : color
- text : color
- window : color
- windowText : color
Detailed Description
The SystemPalette type provides access to the Qt application palettes. This provides information about the standard colors used for application windows, buttons and other features. These colors are grouped into three color groups: active
, inactive
, and disabled
. See the QPalette documentation for details about color groups and the properties provided by SystemPalette.
This can be used to color items in a way that provides a more native look and feel.
The following example creates a palette from the Active
color group and uses this to color the window and text items appropriately:
import QtQuick Rectangle { SystemPalette { id: myPalette; colorGroup: SystemPalette.Active } width: 640; height: 480 color: myPalette.window Text { anchors.fill: parent text: "Hello!"; color: myPalette.windowText } }
See also QPalette.
Property Documentation
accent : color |
The accent color of the current color group.
This property was introduced in Qt 6.7.
See also QPalette::ColorRole.
alternateBase : color |
The alternate base color of the current color group.
See also QPalette::ColorRole.
base : color |
The base color of the current color group.
See also QPalette::ColorRole.
button : color |
The button color of the current color group.
See also QPalette::ColorRole.
buttonText : color |
The button text foreground color of the current color group.
See also QPalette::ColorRole.
colorGroup : enumeration |
The color group of the palette. This can be one of:
Constant | Description |
---|---|
SystemPalette.Active | (default) QPalette::Active |
SystemPalette.Inactive | QPalette::Inactive |
SystemPalette.Disabled | QPalette::Disabled |
See also QPalette::ColorGroup.
dark : color |
The dark color of the current color group.
See also QPalette::ColorRole.
highlight : color |
The highlight color of the current color group.
See also QPalette::ColorRole.
highlightedText : color |
The highlighted text color of the current color group.
See also QPalette::ColorRole.
light : color |
The light color of the current color group.
See also QPalette::ColorRole.
mid : color |
The mid color of the current color group.
See also QPalette::ColorRole.
midlight : color |
The midlight color of the current color group.
See also QPalette::ColorRole.
placeholderText : color |
The placeholder text color of the current color group.
This property was introduced in Qt 6.2.
See also QPalette::ColorRole.
shadow : color |
The shadow color of the current color group.
See also QPalette::ColorRole.
text : color |
The text color of the current color group.
See also QPalette::ColorRole.
window : color |
The window (general background) color of the current color group.
See also QPalette::ColorRole.
windowText : color |
The window text (general foreground) color of the current color group.
See also QPalette::ColorRole.
© 2024 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.