![]() |
Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
|
#include <qeglfskmsscreen_p.h>
Public Member Functions | |
QEglFSKmsScreen (QEglFSKmsDevice *device, const QKmsOutput &output, bool headless=false) | |
~QEglFSKmsScreen () | |
void | setVirtualPosition (const QPoint &pos) |
QRect | rawGeometry () const override |
int | depth () const override |
Reimplement in subclass to return current depth of the screen. | |
QImage::Format | format () const override |
Reimplement in subclass to return the image format which corresponds to the screen format. | |
QSizeF | physicalSize () const override |
Reimplement this function in subclass to return the physical size of the screen, in millimeters. | |
QDpi | logicalDpi () const override |
Reimplement this function in subclass to return the logical horizontal and vertical dots per inch metrics of the screen. | |
QDpi | logicalBaseDpi () const override |
Reimplement to return the base logical DPI for the platform. | |
Qt::ScreenOrientation | nativeOrientation () const override |
Reimplement this function in subclass to return the native orientation of the screen, e.g. | |
Qt::ScreenOrientation | orientation () const override |
Reimplement this function in subclass to return the current orientation of the screen, for example based on accelerometer data to determine the device orientation. | |
QString | name () const override |
QString | manufacturer () const override |
Reimplement this function in subclass to return the manufacturer of this screen. | |
QString | model () const override |
Reimplement this function in subclass to return the model of this screen. | |
QString | serialNumber () const override |
Reimplement this function in subclass to return the serial number of this screen. | |
qreal | refreshRate () const override |
Reimplement this function in subclass to return the vertical refresh rate of the screen, in Hz. | |
QList< QPlatformScreen * > | virtualSiblings () const override |
Returns a list of all the platform screens that are part of the same virtual desktop. | |
void | setVirtualSiblings (QList< QPlatformScreen * > sl) |
void | removeSibling (QPlatformScreen *screen) |
QList< QPlatformScreen::Mode > | modes () const override |
Reimplement this function in subclass to return the list of modes for this screen. | |
int | currentMode () const override |
Reimplement this function in subclass to return the index of the current mode from the modes list. | |
int | preferredMode () const override |
Reimplement this function in subclass to return the preferred mode index from the modes list. | |
QEglFSKmsDevice * | device () const |
virtual void | waitForFlip () |
void | updateOutput (QKmsOutput output) |
QKmsOutput & | output () |
void | restoreMode () |
SubpixelAntialiasingType | subpixelAntialiasingTypeHint () const override |
Returns a hint about this screen's subpixel layout structure. | |
QPlatformScreen::PowerState | powerState () const override |
Returns the current power state. | |
void | setPowerState (QPlatformScreen::PowerState state) override |
Sets the power state for this screen. | |
bool | isCursorOutOfRange () const |
void | setCursorOutOfRange (bool b) |
virtual void | pageFlipped (unsigned int sequence, unsigned int tv_sec, unsigned int tv_usec) |
Public Member Functions inherited from QEglFSScreen | |
QEglFSScreen (EGLDisplay display) | |
~QEglFSScreen () | |
QRect | geometry () const override |
Reimplement in subclass to return the pixel geometry of the screen. | |
int | depth () const override |
Reimplement in subclass to return current depth of the screen. | |
QImage::Format | format () const override |
Reimplement in subclass to return the image format which corresponds to the screen format. | |
QSizeF | physicalSize () const override |
Reimplement this function in subclass to return the physical size of the screen, in millimeters. | |
QDpi | logicalDpi () const override |
Reimplement this function in subclass to return the logical horizontal and vertical dots per inch metrics of the screen. | |
QDpi | logicalBaseDpi () const override |
Reimplement to return the base logical DPI for the platform. | |
Qt::ScreenOrientation | nativeOrientation () const override |
Reimplement this function in subclass to return the native orientation of the screen, e.g. | |
Qt::ScreenOrientation | orientation () const override |
Reimplement this function in subclass to return the current orientation of the screen, for example based on accelerometer data to determine the device orientation. | |
QPlatformCursor * | cursor () const override |
Reimplement this function in subclass to return the cursor of the screen. | |
qreal | refreshRate () const override |
Reimplement this function in subclass to return the vertical refresh rate of the screen, in Hz. | |
QPixmap | grabWindow (WId wid, int x, int y, int width, int height) const override |
This function is called when Qt needs to be able to grab the content of a window. | |
EGLSurface | primarySurface () const |
EGLDisplay | display () const |
void | handleCursorMove (const QPoint &pos) |
QWindow * | topLevelAt (const QPoint &point) const override |
Return the given top level window for a given position. | |
Public Member Functions inherited from QPlatformScreen | |
QPlatformScreen () | |
virtual | ~QPlatformScreen () |
virtual bool | isPlaceholder () const |
virtual QRect | availableGeometry () const |
Reimplement in subclass to return the pixel geometry of the available space This normally is the desktop screen minus the task manager, global menubar etc. | |
virtual QColorSpace | colorSpace () const |
virtual qreal | devicePixelRatio () const |
Reimplement this function in subclass to return the device pixel ratio for the screen. | |
QWindowList | windows () const |
Return all windows residing on this screen. | |
const QPlatformScreen * | screenForPosition (const QPoint &point) const |
Find the sibling screen corresponding to globalPos. | |
QScreen * | screen () const |
Static Public Member Functions | |
static bool | isScreenKnown (QEglFSKmsScreen *s) |
Static Public Member Functions inherited from QPlatformScreen | |
static QPlatformScreen * | platformScreenForWindow (const QWindow *window) |
static int | angleBetween (Qt::ScreenOrientation a, Qt::ScreenOrientation b) |
static QTransform | transformBetween (Qt::ScreenOrientation a, Qt::ScreenOrientation b, const QRect &target) |
static QRect | mapBetween (Qt::ScreenOrientation a, Qt::ScreenOrientation b, const QRect &rect) |
static QDpi | overrideDpi (const QDpi &in) |
Protected Attributes | |
QEglFSKmsDevice * | m_device |
QKmsOutput | m_output |
QEdidParser | m_edid |
QPoint | m_pos |
bool | m_cursorOutOfRange |
QList< QPlatformScreen * > | m_siblings |
PowerState | m_powerState |
QEglFSKmsInterruptHandler * | m_interruptHandler |
bool | m_headless |
Protected Attributes inherited from QPlatformScreen | |
QScopedPointer< QPlatformScreenPrivate > | d_ptr |
Static Protected Attributes | |
static QSet< QEglFSKmsScreen * > | s_screens |
Additional Inherited Members | |
Public Types inherited from QPlatformScreen | |
enum | SubpixelAntialiasingType { Subpixel_None , Subpixel_RGB , Subpixel_BGR , Subpixel_VRGB , Subpixel_VBGR } |
enum | PowerState { PowerStateOn , PowerStateStandby , PowerStateSuspend , PowerStateOff } |
Protected Member Functions inherited from QPlatformScreen | |
void | resizeMaximizedWindows () |
Convenience method to resize all the maximized and fullscreen windows of this platform screen. |
Definition at line 32 of file qeglfskmsscreen_p.h.
QEglFSKmsScreen::QEglFSKmsScreen | ( | QEglFSKmsDevice * | device, |
const QKmsOutput & | output, | ||
bool | headless = false ) |
Definition at line 38 of file qeglfskmsscreen.cpp.
QEglFSKmsScreen::~QEglFSKmsScreen | ( | ) |
Definition at line 68 of file qeglfskmsscreen.cpp.
|
overridevirtual |
Reimplement this function in subclass to return the index of the current mode from the modes list.
The default implementation returns 0.
Reimplemented from QPlatformScreen.
Definition at line 211 of file qeglfskmsscreen.cpp.
|
overridevirtual |
Reimplement in subclass to return current depth of the screen.
Implements QPlatformScreen.
Definition at line 93 of file qeglfskmsscreen.cpp.
|
inline |
Definition at line 68 of file qeglfskmsscreen_p.h.
|
overridevirtual |
Reimplement in subclass to return the image format which corresponds to the screen format.
Implements QPlatformScreen.
Definition at line 98 of file qeglfskmsscreen.cpp.
|
inline |
Definition at line 81 of file qeglfskmsscreen_p.h.
|
static |
Definition at line 246 of file qeglfskmsscreen.cpp.
|
overridevirtual |
Reimplement to return the base logical DPI for the platform.
This DPI value should correspond to a standard-DPI (1x) display. The default implementation returns 96.
QtGui will use this value (together with logicalDpi) to compute the scale factor when high-DPI scaling is enabled, as follows: factor = logicalDPI / baseDPI
Reimplemented from QPlatformScreen.
Definition at line 136 of file qeglfskmsscreen.cpp.
|
overridevirtual |
Reimplement this function in subclass to return the logical horizontal and vertical dots per inch metrics of the screen.
The logical dots per inch metrics are used by Qt to scale the user interface.
The default implementation returns logicalBaseDpi(), which results in a UI scale factor of 1.0.
Reimplemented from QPlatformScreen.
Definition at line 131 of file qeglfskmsscreen.cpp.
|
overridevirtual |
Reimplement this function in subclass to return the manufacturer of this screen.
The default implementation returns an empty string.
Reimplemented from QPlatformScreen.
Definition at line 156 of file qeglfskmsscreen.cpp.
|
overridevirtual |
Reimplement this function in subclass to return the model of this screen.
The default implementation returns an empty string.
Reimplemented from QPlatformScreen.
Definition at line 161 of file qeglfskmsscreen.cpp.
|
overridevirtual |
Reimplement this function in subclass to return the list of modes for this screen.
The default implementation returns a list with only one mode from the current screen size and refresh rate.
Reimplemented from QPlatformScreen.
Definition at line 199 of file qeglfskmsscreen.cpp.
|
overridevirtual |
Reimplemented from QPlatformScreen.
Definition at line 151 of file qeglfskmsscreen.cpp.
|
overridevirtual |
Reimplement this function in subclass to return the native orientation of the screen, e.g.
the orientation where the logo sticker of the device appears the right way up.
The default implementation returns Qt::PrimaryOrientation.
Reimplemented from QPlatformScreen.
Definition at line 141 of file qeglfskmsscreen.cpp.
|
overridevirtual |
Reimplement this function in subclass to return the current orientation of the screen, for example based on accelerometer data to determine the device orientation.
The default implementation returns Qt::PrimaryOrientation.
Reimplemented from QPlatformScreen.
Definition at line 146 of file qeglfskmsscreen.cpp.
|
inline |
Definition at line 73 of file qeglfskmsscreen_p.h.
|
virtual |
Definition at line 239 of file qeglfskmsscreen.cpp.
|
overridevirtual |
Reimplement this function in subclass to return the physical size of the screen, in millimeters.
The physical size represents the actual physical dimensions of the display.
The default implementation takes the pixel size of the screen, considers a resolution of 100 dots per inch, and returns the calculated physical size. A device with a screen that has different resolutions will need to be supported by a suitable reimplementation of this function.
Reimplemented from QPlatformScreen.
Definition at line 121 of file qeglfskmsscreen.cpp.
|
overridevirtual |
Returns the current power state.
The default implementation always returns PowerStateOn.
Reimplemented from QPlatformScreen.
Definition at line 226 of file qeglfskmsscreen.cpp.
|
overridevirtual |
Reimplement this function in subclass to return the preferred mode index from the modes list.
The default implementation returns 0.
Reimplemented from QPlatformScreen.
Definition at line 216 of file qeglfskmsscreen.cpp.
|
overridevirtual |
Reimplemented from QEglFSScreen.
Definition at line 83 of file qeglfskmsscreen.cpp.
|
overridevirtual |
Reimplement this function in subclass to return the vertical refresh rate of the screen, in Hz.
The default returns 60, a sensible default for modern displays.
Reimplemented from QPlatformScreen.
Definition at line 185 of file qeglfskmsscreen.cpp.
void QEglFSKmsScreen::removeSibling | ( | QPlatformScreen * | screen | ) |
Definition at line 194 of file qeglfskmsscreen.cpp.
void QEglFSKmsScreen::restoreMode | ( | ) |
Definition at line 180 of file qeglfskmsscreen.cpp.
|
overridevirtual |
Reimplement this function in subclass to return the serial number of this screen.
The default implementation returns an empty string.
Reimplemented from QPlatformScreen.
Definition at line 166 of file qeglfskmsscreen.cpp.
|
inline |
Definition at line 82 of file qeglfskmsscreen_p.h.
|
overridevirtual |
Sets the power state for this screen.
Reimplemented from QPlatformScreen.
Definition at line 231 of file qeglfskmsscreen.cpp.
Definition at line 76 of file qeglfskmsscreen.cpp.
|
inline |
Definition at line 60 of file qeglfskmsscreen_p.h.
|
overridevirtual |
Returns a hint about this screen's subpixel layout structure.
The default implementation queries the {QT_SUBPIXEL_AA_TYPE} env variable. This is just a hint because most platforms don't have a way to retrieve the correct value from hardware and instead rely on font configurations.
Reimplemented from QPlatformScreen.
Definition at line 221 of file qeglfskmsscreen.cpp.
void QEglFSKmsScreen::updateOutput | ( | QKmsOutput | output | ) |
Definition at line 175 of file qeglfskmsscreen.cpp.
|
inlineoverridevirtual |
Returns a list of all the platform screens that are part of the same virtual desktop.
Screens part of the same virtual desktop share a common coordinate system, and windows can be freely moved between them.
Reimplemented from QPlatformScreen.
Definition at line 59 of file qeglfskmsscreen_p.h.
|
virtual |
Reimplemented in QEglFSKmsEglDeviceScreen, and QEglFSKmsGbmScreen.
Definition at line 171 of file qeglfskmsscreen.cpp.
|
protected |
Definition at line 93 of file qeglfskmsscreen_p.h.
|
protected |
Definition at line 88 of file qeglfskmsscreen_p.h.
|
protected |
Definition at line 91 of file qeglfskmsscreen_p.h.
|
protected |
Definition at line 101 of file qeglfskmsscreen_p.h.
|
protected |
Definition at line 99 of file qeglfskmsscreen_p.h.
|
protected |
Definition at line 90 of file qeglfskmsscreen_p.h.
|
protected |
Definition at line 92 of file qeglfskmsscreen_p.h.
|
protected |
Definition at line 97 of file qeglfskmsscreen_p.h.
|
protected |
Definition at line 95 of file qeglfskmsscreen_p.h.
|
staticprotected |
Definition at line 103 of file qeglfskmsscreen_p.h.