Qt D-Bus 是可以用于履行 IPC (进程间通信) 的仅 Unix 库模块使用 D-Bus 协议。 更多...
包含整个 Qt D-Bus 模块使用的杂项标识符 |
使用 Qt D-Bus 模块的应用程序可以通过导出对象为其它远程应用程序提供服务,也可以通过放置调用和访问特性使用由那些应用程序导出的服务。
Qt D-Bus 模块提供接口扩展 Qt 信号和槽 机制,允许将某一连接到远程发射信号,及将本地信号连接到远程槽。
要使用此模块,在应用程序中使用以下代码:
#include <QtDBus>
若使用 qmake 构建应用程序,可以将此行添加到 .pro 文件以使其链接到 Qt D-Bus 库:
QT += dbus
注意:
此模块的源代码位于
src/qdbus
directory. When installing Qt from source, this module is built when Qt's tools are built. See the
D-Bus
页面了解如何使用此模块的有关详细信息。