PySide6.QtWidgets.QStyleFactory¶
- class QStyleFactory¶
- The - QStyleFactoryclass creates- QStyleobjects. More…- Synopsis¶- Static functions¶- Note - This documentation may contain snippets that were automatically translated from C++ to Python. We always welcome contributions to the snippet translation. If you see an issue with the translation, you can also let us know by creating a ticket on https:/bugreports.qt.io/projects/PYSIDE - Detailed Description¶- The - QStyleclass is an abstract base class that encapsulates the look and feel of a GUI.- QStyleFactorycreates a- QStyleobject 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 - Creates and returns a - QStyleobject that matches the given- key, or returns- Noneif no matching style is found.- Both built-in styles and styles from style plugins are queried for a matching style. - static keys()¶
- Return type:
- list of strings 
 
 - Returns the list of valid keys, i.e. the keys this factory can create styles for. - See also