dbus-send与QDBusAbstractInterface的对应关系
Correspondence between dbus-send and QDBusAbstractInterface
dbus-send
utily的参数与QDBusAbstractInterface
的constructor和call*
方法的参数有什么对应关系?
互联网上有大量示例(例如 [1])如何通过 DBus 使用 NetworkManager dbus-send
实用程序,但我无法推断如何将它们转换为 Qt C++ 代码。
这个问题听起来有点太笼统了,任何答案对你来说都不是很有用,但是...
dbus-send --dest=com.example.service \
/service/path \
com.example.interfacename.Method \
int32:123
应该匹配
QDBusInterface iface("com.example.Service",
"/service/path",
"com.example.interfacename");
iface.call("Method", 123);
dbus-send
utily的参数与QDBusAbstractInterface
的constructor和call*
方法的参数有什么对应关系?
互联网上有大量示例(例如 [1])如何通过 DBus 使用 NetworkManager dbus-send
实用程序,但我无法推断如何将它们转换为 Qt C++ 代码。
这个问题听起来有点太笼统了,任何答案对你来说都不是很有用,但是...
dbus-send --dest=com.example.service \
/service/path \
com.example.interfacename.Method \
int32:123
应该匹配
QDBusInterface iface("com.example.Service",
"/service/path",
"com.example.interfacename");
iface.call("Method", 123);