IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)

SystemPalette QML Type

Provides access to the Qt palettes.

Article lu   fois.

L'auteur

Liens sociaux

Viadeo Twitter Facebook Share on Google+   

SystemPalette QML Type

  • Import Statement: import QtQuick

  • Group: SystemPalette is part of qtquick-visual-utility

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:

 
Sélectionnez
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

See also QPalette

Property Documentation

 

alternateBase : color

The alternate base color of the current color group.

See Also

base : color

The base color of the current color group.

See Also

button : color

The button color of the current color group.

See Also

buttonText : color

The button text foreground color of the current color group.

See Also

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

dark : color

The dark color of the current color group.

See Also

highlight : color

The highlight color of the current color group.

See Also

highlightedText : color

The highlighted text color of the current color group.

See Also

light : color

The light color of the current color group.

See Also

mid : color

The mid color of the current color group.

See Also

midlight : color

The midlight color of the current color group.

See Also

[since 6.2] placeholderText : color

The placeholder text color of the current color group.

This property was introduced in Qt 6.2.

See Also

shadow : color

The shadow color of the current color group.

See Also

text : color

The text color of the current color group.

See Also

window : color

The window (general background) color of the current color group.

See Also

windowText : color

The window text (general foreground) color of the current color group.

See Also

Vous avez aimé ce tutoriel ? Alors partagez-le en cliquant sur les boutons suivants : Viadeo Twitter Facebook Share on Google+