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

QStyleFactory Class

The QStyleFactory class creates QStyle objects.

Article lu   fois.

L'auteur

Liens sociaux

Viadeo Twitter Facebook Share on Google+   

QStyleFactory Class

  • Header: QStyleFactory

  • CMake:

    find_package(Qt6 REQUIRED COMPONENTS Widgets)

    target_link_libraries(mytarget PRIVATE Qt6::Widgets)

  • qmake: QT += widgets

  • Group: QStyleFactory is part of appearance

Detailed Description

The QStyle class is an abstract base class that encapsulates the look and feel of a GUI. QStyleFactory creates a QStyle object using the create() function and a key identifying the style. The styles are either built-in or dynamically loaded from a style plugin (see QStylePlugin).

The valid keys can be retrieved using the keys() function. Typically they include "windows" and "fusion". Depending on the platform, "windowsvista" and "macos" may be available. Note that keys are case insensitive.

See Also

See also QStyle

Member Function Documentation

 

[static] QStyle *QStyleFactory::create(const QString &key)

Creates and returns a QStyle object that matches the given key, or returns nullptr if no matching style is found.

Both built-in styles and styles from style plugins are queried for a matching style.

The keys used are case insensitive.

See Also

See also keys()

[static] QStringList QStyleFactory::keys()

Returns the list of valid keys, i.e. the keys this factory can create styles for.

See Also

See also create()

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