QStyleFactory¶
The QStyleFactory
class creates QStyle
objects. More…
Synopsis¶
Static functions¶
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
- class PySide6.QtWidgets.QStyleFactory¶
- static PySide6.QtWidgets.QStyleFactory.create(arg__1)¶
- Parameters
arg__1 – str
- Return type
Creates and returns a QStyle
object that matches the given key
, or returns None
if no matching style is found.
Both built-in styles and styles from style plugins are queried for a matching style.
- static PySide6.QtWidgets.QStyleFactory.keys()¶
- Return type
list of strings
Returns the list of valid keys, i.e. the keys this factory can create styles for.
See also
© 2022 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.