Desktop Integration

Qt applications behave well in the user's desktop environment, but certain integrations require additional, and sometimes platform specific, techniques.

Useful Classes

Various classes in Qt are designed to help developers integrate applications into users' desktop environments. These classes enable developers to take advantage of native services while still using a cross-platform API.

QDesktopServices

Methods for accessing common desktop services

QSystemTrayIcon

Icon for an application in the system tray

Opening External Resources

Although Qt provides facilities to handle and display resources, such as common image formats and HTML, it is sometimes necessary to open files and external resources using external applications.

QDesktopServices provides an interface to services offered by the user's desktop environment. In particular, the openUrl() function is used to open resources using the appropriate application, which may have been specifically configured by the user.

System Tray Icons

Many modern desktop environments feature docks or panels with system trays in which applications can install icons. Applications often use system tray icons to display status information, either by updating the icon itself or by showing information in "balloon messages". Additionally, many applications provide pop-up menus that can be accessed via their system tray icons.

The QSystemTrayIcon class exposes all of the above features via an intuitive Qt-style API that can be used on all desktop platforms.

Desktop Widgets

On systems where the user's desktop is displayed using more than one screen, certain types of applications may need to obtain information about the configuration of the user's workspace to ensure that new windows and dialogs are opened in appropriate locations.

The QDesktopWidget class can be used to monitor the positions of widgets and notify applications about changes to the way the desktop is split over the available screens. This enables applications to implement policies for positioning new windows so that, for example, they do not distract a user who is working on a specific task.

© 2024 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.