Qt's ActiveX and COM support enables Qt for Windows developers to:
有关 Qt 使用 ActiveX 的更多信息,见 在 Qt 中构建 ActiveX 服务器 .
ActiveQt 框架由 2 模块组成:
一组 tools 的提供,是为简化使用 ActiveX 的 Qt 工程的开发和构建。
使用 Qt 模块的 C++ API 要求直接 (或透过其它依赖) 链接到模块库。几个构建工具对此有专用支持,包括 CMake and qmake .
使用
find_package()
命令去定位所需模块组件,在
Qt6
包:
find_package(Qt6 REQUIRED COMPONENTS AxContainer AxServer) target_link_libraries(mytarget PRIVATE Qt6::AxContainer Qt6::AxServer)
更多细节,见 构建采用 CMake 概述。
To configure the modules for building with qmake, add the module as a value of the
QT
变量在工程的 .pro 文件:
QT += axcontainer axserver
The QAxContainer and QAxServer 模块在商业许可下是可用的来自 Qt 公司 。此外,它们是可用的在 BSD 3 条款新 (或修订) 许可 :
见 Qt 许可 进一步了解细节。