Qt Wayland 模塊提供用於創建支持 Wayland 協議的自定義顯示服務器的 QML 類型。
可以使用以下 import 語句將 QML 類型導入應用程序:
使用 Qt 模塊的 C++ API 要求直接 (或透過其它依賴) 鏈接到模塊庫。幾個構建工具對此有專用支持,包括 CMake and qmake .
使用
find_package()
命令定位所需模塊組件在
Qt6
包:
find_package(Qt6 REQUIRED COMPONENTS WaylandCompositor)
target_link_libraries(mytarget PRIVATE Qt6::WaylandCompositor)
更多細節,見 構建采用 CMake 概述。
要配置采用 qmake 構建模塊,添加模塊作為值為
QT
變量在工程的 .pro 文件:
QT += waylandcompositor
import QtWayland.Compositor
有關在應用程序中使用這些類型的更多信息,見 Qt Wayland Compositor 文檔編製。
| Provides an extension that allows to inhibit the idle behavior of the compositor | |
| Provides access to input methods in the compositor | |
| Provides a common interface for surface roles specified by shell extensions | |
| A Qt Quick item type for displaying and interacting with a ShellSurface | |
| Provides access to input methods in the compositor | |
| Represents a client connecting to the WaylandCompositor | |
| 管理 Wayland 顯示服務器 | |
| Makes a parent WaylandQuickItem use hardware layers for rendering | |
| Provides access to a displayable area managed by the compositor | |
| Provides a Qt Quick item that represents a WaylandView | |
| Provides access to keyboard, mouse, and touch input | |
| Represents a rectangular area on an output device | |
| Represents a view of a surface on an output |