Qt 4.8
|
The QScreenDriverFactory class creates screen drivers in Qt for Embedded Linux. More...
#include <qscreendriverfactory_qws.h>
Static Public Functions | |
static QScreen * | create (const QString &, int) |
static QStringList | keys () |
Returns the list of valid keys, i.e. More... | |
The QScreenDriverFactory class creates screen drivers in Qt for Embedded Linux.
Note that this class is only available in Qt for Embedded Linux.
QScreenDriverFactory is used to detect and instantiate the available screen drivers, allowing Qt for Embedded Linux to load the preferred driver into the server application at runtime. The create() function returns a QScreen object representing the screen driver identified by a given key. The valid keys (i.e. the supported drivers) can be retrieved using the keys() function.
Qt for Embedded Linux provides several built-in screen drivers. In addition, custom screen drivers can be added using Qt's plugin mechanism, i.e. by subclassing the QScreen class and creating a screen driver plugin (QScreenDriverPlugin). See the Qt for Embedded Linux Display Management{display management} documentation for details.
Definition at line 56 of file qscreendriverfactory_qws.h.
Referenced by qt_get_screen().
|
static |
Returns the list of valid keys, i.e.
the available screen drivers.
Definition at line 163 of file qscreendriverfactory_qws.cpp.
Referenced by QVNCScreen::connect(), QTransformedScreen::connect(), and qt_get_screen().