CopperSpice API  1.9.1
QStyleFactory Class Reference

Creates QStyle objects. More...

Static Public Methods

static QStylecreate (const QString &key)
 
static QStringList keys ()
 

Detailed Description

The QStyleFactory class creates QStyle objects.

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() method. Typically they include "windows", "windowsxp", "windowsvista", "macintosh", "gtk", and "fusion". The keys are case insensitive.

See also
QStyle

Method Documentation

QStyle * QStyleFactory::create ( const QString key)
static

Creates and returns a QStyle object that matches the given key, or returns a nullptr if no matching style is found. Both built-in styles and styles from style plugins are queried for a matching style.

Note
The keys used are case insensitive.
See also
keys()
QStringList QStyleFactory::keys ( )
static

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

See also
create()