The QtMobility APIs are placed into the QtMobility namespace. This is done to facilitate the future migration of QtMobility APIs into Qt. See the Quickstart guide for an example on how the namespace impacts on application development.
Access to details of the currently active phone profile | |
Service for applications to synchronize their activity | |
Access to battery and power information from the system | |
Access to device information from the system | |
Access to display information from the system | |
Access to various general information from the system | |
Access to various networking status and signals | |
Access to screen saver and blanking | |
Access to disk storage information from the system |
The System Information API provides a set of APIs to discover system related information and capabilities.
The System Information API returns the system information related to a number of categories.
Contains version information for a range of supporting software on the device. For example, from the Operating System and Firmware to the version of WebKit, Qt and the Service Framework.
This lists the supported hardware on the device. Features include items such as the camera, bluetooth, GPS, FM radio etc.
The state of the network connection, and also the type of network e.g. gsm, cdma, ethernet etc.
This provides height, width, contrast, and other information of the display.
The presence of various storage devices. Including: none, internal, removable, cdrom.
This provides the access to the information of the screen saver.
To build the library, run configure and make.
Linux supports a NetworkManager based backend and generic backend using QNetworkInterface only. By default the generic backend is selected. If the NetworkManager backend is required run qmake as follows:
qmake BACKEND=NetworkManager
The backend selection is expected to disappear once the API is integrated into Qt.
Access to details of the currently active phone profile | |
Service for applications to synchronize their activity | |
Access to battery and power information from the system | |
Access to device information from the system | |
Access to display information from the system | |
Access to various general information from the system | |
Access to various networking status and signals | |
Access to screen saver and blanking | |
Access to disk storage information from the system |
The Qt SystemInfo offers access to system information through declarative UI by providing systeminfo elements. Detailed information can be found at QML SystemInfo QML Plugin.
The AlignedTimer element allows applications to synchronize activity, such as network access, like checking for updates. | |
The BatteryInfo element allows you to receive battery change notifications from the device. | |
The DeviceInfo element allows you to access information anbout the device and receive notifications from the device. | |
The DisplayInfo element allows you to get information and receive notifications about the diplsay. | |
The GeneralInfo element allows you access to general system information and to receive notifications from the device. | |
The NetworkInfo element allows you to get information and receive notifications from the network. | |
The ScreenSaver element allows you to temporarily suppress and delay the screensaver from turning on or blanking the screen. | |
The StorageInfo element provides access to disk storage information from the system. |
The System Information example demonstrates how an application can very easily access the system information of the device.
The System Info QML example demonstrates how an application can very easily access the system information of the device.