Learn what Felgo offers to help your business succeed. Start your free evaluation today! Felgo for Your Business

Screen

The Screen attached object provides information about the Screen an Item or Window is displayed on. More...

Import Statement: import QtQuick

Attached Properties

Attached Methods

  • int angleBetween(Qt::ScreenOrientation a, Qt::ScreenOrientation b)

Detailed Description

The Screen attached object is valid inside Item or Item derived types, after component completion. Inside these items it refers to the screen that the item is currently being displayed on.

The attached object is also valid inside Window or Window derived types, after component completion. In that case it refers to the screen where the Window was created. It is generally better to access the Screen from the relevant Item instead, because on a multi-screen desktop computer, the user can drag a Window into a position where it spans across multiple screens. In that case some Items will be on one screen, and others on a different screen.

To use this type, you will need to import the module with the following line:

import QtQuick.Window 2.2

It is a separate import in order to allow you to have a QML environment without access to window system features.

Note that the Screen type is not valid at Component.onCompleted, because the Item or Window has not been displayed on a screen by this time.

Attached Property Documentation

[read-only, since 5.1] Screen.desktopAvailableHeight : int

This contains the available height of the collection of screens which make up the virtual desktop, in pixels, excluding window manager reserved areas such as task bars and system menus. If you want to position a Window at the bottom of the desktop, you can bind to it like this:

y: Screen.desktopAvailableHeight - height

This property was introduced in Qt 5.1.


[read-only, since 5.1] Screen.desktopAvailableWidth : int

This contains the available width of the collection of screens which make up the virtual desktop, in pixels, excluding window manager reserved areas such as task bars and system menus. If you want to position a Window at the right of the desktop, you can bind to it like this:

x: Screen.desktopAvailableWidth - width

This property was introduced in Qt 5.1.


[read-only, since 5.4] Screen.devicePixelRatio : real

The ratio between physical pixels and device-independent pixels for the screen.

Common values are 1.0 on normal displays and 2.0 on Apple "retina" displays.

This property was introduced in Qt 5.4.


[read-only] Screen.height : int

This contains the height of the screen in pixels.


[read-only, since 5.10] Screen.manufacturer : string

The manufacturer of the screen.

This property was introduced in Qt 5.10.


[read-only, since 5.10] Screen.model : string

The model of the screen.

This property was introduced in Qt 5.10.


[read-only, since 5.1] Screen.name : string

The name of the screen.

This property was introduced in Qt 5.1.


[read-only] Screen.orientation : Qt::ScreenOrientation

This contains the current orientation of the screen from the window system perspective.

Most mobile devices and tablet computers contain accelerometer sensors. The windowing system may rotate the entire screen automatically based on how it is being held, or manually via settings to rotate a desktop monitor; in that case, this orientation property will change.

See also primaryOrientation and QWindow::contentOrientation().


[read-only, since 5.2] Screen.pixelDensity : real

The number of physical pixels per millimeter.

This property was introduced in Qt 5.2.


[read-only] Screen.primaryOrientation : Qt::ScreenOrientation

This contains the primary orientation of the screen. If the screen's height is greater than its width, then the orientation is Qt.PortraitOrientation; otherwise it is Qt.LandscapeOrientation.

If you are designing an application which changes its layout depending on device orientation, you probably want to use primaryOrientation to determine the layout. That is because on a desktop computer, you can expect primaryOrientation to change when the user rotates the screen via the operating system's control panel, even if the computer does not contain an accelerometer. Likewise on most handheld computers which do have accelerometers, the operating system will rotate the whole screen automatically, so again you will see the primaryOrientation change.


[read-only, since 5.10] Screen.serialNumber : string

The serial number of the screen.

This property was introduced in Qt 5.10.


[read-only, since 5.9] Screen.virtualX : int

The x coordinate of the screen within the virtual desktop.

This property was introduced in Qt 5.9.


[read-only, since 5.9] Screen.virtualY : int

The y coordinate of the screen within the virtual desktop.

This property was introduced in Qt 5.9.


[read-only] Screen.width : int

This contains the width of the screen in pixels.


Attached Method Documentation

int angleBetween(Qt::ScreenOrientation a, Qt::ScreenOrientation b)

Returns the rotation angle, in degrees, between the specified screen orientations a and b.


Qt_Technology_Partner_RGB_475 Qt_Service_Partner_RGB_475_padded