FrameworkIntegration

Integration of Qt application with KDE workspaces.

Framework Integration is a set of plugins responsible for better integration of Qt applications when running on a KDE Plasma workspace.

Applications do not need to link to this directly.

The library KF6Style provides integration with KDE Plasma Workspace settings for Qt styles.

Derive your Qt style from KStyle to automatically inherit various settings from the KDE Plasma Workspace, providing a consistent user experience. For example, this will ensure a consistent single-click or double-click activation setting, and the use of standard themed icons.

Using the Module

Using a KDE module's C++ API requires linking against the module library. The preferred way of consuming the library is through CMake.

Building with CMake

Use the find_package() command to locate the needed module component in the KF6 package:

find_package(KF6 REQUIRED COMPONENTS FrameworkIntegration)
target_link_libraries(mytarget PRIVATE KF6::Style)

For more details, see the Build with CMake overview.

API Reference