QStyleFactory¶
The
QStyleFactory
class createsQStyle
objects. More…

Detailed Description¶
The
QStyle
class is an abstract base class that encapsulates the look and feel of a GUI.QStyleFactory
creates aQStyle
object using thecreate()
function and a key identifying the style. The styles are either built-in or dynamically loaded from a style plugin (seeQStylePlugin
).The valid keys can be retrieved using the
keys()
function. Typically they include “windows” and “fusion”. Depending on the platform, “windowsvista” and “macintosh” may be available. Note that keys are case insensitive.See also
-
class
QStyleFactory
¶
-
static
PySide2.QtWidgets.QStyleFactory.
create
(arg__1)¶ - Parameters
arg__1 – unicode
- Return type
Creates and returns a
QStyle
object that matches the givenkey
, or returnsNone
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