QScreen¶

PyQt5.QtGui.QScreen

Inherits from QObject.

Description¶

The QScreen class is used to query screen properties.

A note on logical vs physical dots per inch: physical DPI is based on the actual physical pixel sizes when available, and is useful for print preview and other cases where it’s desirable to know the exact physical dimensions of screen displayed contents.

Logical dots per inch are used to convert font and user interface elements from point sizes to pixel sizes, and might be different from the physical dots per inch. The logical dots per inch are sometimes user-settable in the desktop environment’s settings panel, to let the user globally control UI and font sizes in different applications.

Methods¶

angleBetween(ScreenOrientation, ScreenOrientation) → int

TODO


availableGeometry() → QRect

TODO


availableSize() → QSize

TODO


availableVirtualGeometry() → QRect

TODO


availableVirtualSize() → QSize

TODO


depth() → int

TODO


devicePixelRatio() → float

TODO


geometry() → QRect

TODO


grabWindow(sip.voidptr, x: int = 0, y: int = 0, width: int = -1, height: int = -1) → QPixmap

Creates and returns a pixmap constructed by grabbing the contents of the given window restricted by QRect(x, y, width, height).

The arguments (x, y) specify the offset in the window, whereas (width, height) specify the area to be copied. If width is negative, the function copies everything to the right border of the window. If height is negative, the function copies everything to the bottom of the window.

The window system identifier (WId) can be retrieved using the winId() function. The rationale for using a window identifier and not a QWidget, is to enable grabbing of windows that are not part of the application, window system frames, and so on.

Warning: Grabbing windows that are not part of the application is not supported on systems such as iOS, where sandboxing/security prevents reading pixels of windows not owned by the application.

The function grabs pixels from the screen, not from the window, i.e. if there is another window partially or entirely over the one you grab, you get pixels from the overlying window, too. The mouse cursor is generally not grabbed.

Note on X11 that if the given window doesn’t have the same depth as the root window, and another window partially or entirely obscures the one you grab, you will not get pixels from the overlying window. The contents of the obscured areas in the pixmap will be undefined and uninitialized.

On Windows Vista and above grabbing a layered window, which is created by setting the WA_TranslucentBackground attribute, will not work. Instead grabbing the desktop widget should work.

Warning: In general, grabbing an area outside the screen is not safe. This depends on the underlying window system.


isLandscape(ScreenOrientation) → bool

TODO


isPortrait(ScreenOrientation) → bool

TODO


logicalDotsPerInch() → float

TODO


logicalDotsPerInchX() → float

TODO


logicalDotsPerInchY() → float

TODO


manufacturer() → str

TODO


mapBetween(ScreenOrientation, ScreenOrientation, QRect) → QRect

TODO


model() → str

TODO


name() → str

TODO


nativeOrientation() → ScreenOrientation

TODO


orientation() → ScreenOrientation

TODO


orientationUpdateMask() → ScreenOrientations

Returns the currently set orientation update mask.


physicalDotsPerInch() → float

TODO


physicalDotsPerInchX() → float

TODO


physicalDotsPerInchY() → float

TODO


physicalSize() → QSizeF

TODO


primaryOrientation() → ScreenOrientation

TODO


refreshRate() → float

TODO


serialNumber() → str

TODO


setOrientationUpdateMask(Union[ScreenOrientations, ScreenOrientation])

TODO


size() → QSize

TODO


transformBetween(ScreenOrientation, ScreenOrientation, QRect) → QTransform

TODO


virtualGeometry() → QRect

TODO


virtualSiblings() → List[QScreen]

Get the screen’s virtual siblings.

The virtual siblings are the screen instances sharing the same virtual desktop. They share a common coordinate system, and windows can freely be moved or positioned across them without having to be re-created.


virtualSize() → QSize

TODO

Signals¶

availableGeometryChanged(QRect)

TODO


geometryChanged(QRect)

TODO


logicalDotsPerInchChanged(float)

TODO


orientationChanged(ScreenOrientation)

TODO


physicalDotsPerInchChanged(float)

TODO


physicalSizeChanged(QSizeF)

TODO


primaryOrientationChanged(ScreenOrientation)

TODO


refreshRateChanged(float)

TODO


virtualGeometryChanged(QRect)

TODO