Qt UI Tools

Qt Designer forms are processed at run-time to produce dynamically generated user interfaces. In order to generate a form at run-time, a resource file containing a UI file is needed.

A form loader object, provided by the QUiLoader class, is used to construct the user interface. This user interface can be retrieved from any QIODevice . For example, a QFile object can be used to obtain a form stored in a project's resources. The QUiLoader::load () function takes the user interface description contained in the file and constructs the form widget.

使用模块

使用 Qt 模块的 C++ API 要求直接 (或透过其它依赖) 链接到模块库。几个构建工具对此有专用支持,包括 CMake and qmake .

构建采用 CMake

使用 find_package() 命令定位所需模块组件在 Qt6 包:

find_package(Qt6 REQUIRED COMPONENTS UiTools)
target_link_libraries(mytarget PRIVATE Qt6::UiTools)
					

更多细节,见 构建采用 CMake 概述。

采用 qmake 构建

要配置采用 qmake 构建模块,添加模块作为值为 QT 变量在工程的 .pro 文件:

QT += uitools
					

许可和归属

范例

参考

许可

Qt UI Tools is available under commercial licenses from Qt 公司 . In addition, it is available under free software licenses. Since Qt 6.0, these free software licenses are GNU LGPL (次一般公共许可) 第 3 版 ,或 GNU GPL (一般公共许可) 第 2 版 。见 Qt 许可 进一步了解细节。