Warning

This section contains snippets that were automatically translated from C++ to Python and may contain errors.

Qt Quick Controls - Wearable Demo#

Demonstrates an application launcher designed for wearable devices.

../_images/qtquickcontrols-wearable.png

The Wearable Demo consists of an application launcher and a collection of small and simple example applications aimed at wearable devices.

Structure#

The main .qml file, wearable.qml, consists of an ApplicationWindow , a StackView for a stack-based navigation model, and buttons for interactive navigation.

...
...
...
...

Styling#

The demo uses a custom Qt Quick Controls 2 style embedded into the demo’s resources. The custom style is implemented for a few controls only, as it is specific to this particular demo. It uses a singleton type for various styling attributes, such as fonts and colors.

  • WearableStyle/PageIndicator.qml

  • WearableStyle/Slider.qml

  • WearableStyle/Switch.qml

  • WearableStyle/UIStyle.qml

The style is applied in main() in wearable.cpp:

QQuickStyle.setStyle("WearableStyle")

The main benefit of using the built-in styling system is that the style selection is fully transparent to the application code. There is no need to import a specific folder that contains the styled controls. This way, the application can be run with other styles too.

Custom Type#

The demo application contains a custom button type implemented in Wearable/NaviButton.qml. The navigation button is used as a home and back button in wearable.qml. NaviButton extends the AbstractButton type with properties that control the slide in and slide out transitions and the button image.

...
...

Icons#

The demo ships a custom icon theme. The icons are bundled into the :/Wearable/icons folder in the application’s resources. The index.theme file lists the contents of the icon theme:

<Code snippet "/data/qt5-full-661/6.6.1/Src/qtbase/wearable/Wearable/icons/wearable/index.theme" not found>

Finally, the icon theme is selected in main():

QIcon.setThemeSearchPaths(QStringList() << ":/qt/qml/Wearable/icons")
QIcon.setThemeName("wearable")

The icons are used on the Launcher Page, which is presented below. See Icons in Qt Quick Controls for more details about icons and themes.

Launcher Page#

The application launcher is implemented using a circular PathView in LauncherPage.qml. Each application is in a separate .qml file, which is added to the ListModel on the launcher page.

...
...
...
...
...

Applications#

The applications are designed for touch input based on what input methods or communication means are typically offered by wearable devices.

Most applications have their own JavaScript files that act as dummy application backends. They illustrate fetching external data and help manipulating or converting the data. In the Navigation and Weather applications, data acquisition is implemented using XMLHttpRequest to read from local files. These files were generated by storing responses from remote servers in JSON format. This code can be easily modified to acquire data from remote servers.

Weather#

This application displays weather information such as temperature, sunrise and sunset times, air pressure, and so on. This information is obtained from https://openweathermap.org/ using its REST API. The API response is in JSON format, which is parsed using JavaScript by the application. This application can also be modified by adding screens to obtain weather data for a given location.

World Clock#

This application displays a world clock for different cities. As of now, the list of cities is hard-coded in the application, but that can be changed based on the input capabilities of the device.

Others#

The remaining applications return static data for now, but they can be modified to process response data obtained from respective services.

Running the Example#

To run the example from Qt Creator, open the Welcome mode and select the example from Examples. For more information, visit Building and Running an Example.

Example project @ code.qt.io