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)
For more details, see the Build with CMake overview.
要配置采用 qmake 构建模块,添加模块作为值为
QT
变量在工程的 .pro 文件:
QT += waylandcompositor
import QtWayland.Compositor
有关在应用程序中使用这些类型的更多信息,见 Qt Wayland Compositor 文档编制。
IdleInhibitManagerV1 | Provides an extension that allows to inhibit the idle behavior of the compositor |
QtTextInputMethodManager | Provides access to input methods in the compositor |
ShellSurface | Provides a common interface for surface roles specified by shell extensions |
ShellSurfaceItem | A Qt Quick item type for displaying and interacting with a ShellSurface |
TextInputManager | Provides access to input methods in the compositor |
WaylandClient | Represents a client connecting to the WaylandCompositor |
WaylandCompositor | 管理 Wayland 显示服务器 |
WaylandHardwareLayer | Makes a parent WaylandQuickItem use hardware layers for rendering |
WaylandOutput | Provides access to a displayable area managed by the compositor |
WaylandQuickItem | Provides a Qt Quick item that represents a WaylandView |
WaylandSeat | Provides access to keyboard, mouse, and touch input |
WaylandSurface | Represents a rectangular area on an output device |
WaylandView | Represents a view of a surface on an output |