Adaptors are special classes that are attached to anyQObject-derived class and provide the interface to the external world using D-Bus. Adaptors are intended to be lightweight classes whose main purpose is to relay calls to and from the real object, possibly validating or converting the input from the external world and, thus, protecting the real object.
Unlike multiple inheritance, adaptors can be added at any time to any object (but not removed), which allows for greater flexibility when exporting existing classes. Another advantage of adaptors is to provide similar but not identical functionality in methods of the same name in different interfaces, a case which can be quite common when adding a new version of a standard interface to an object.
In order to use an adaptor, one must create a class which inheritsQDBusAbstractAdaptor. Since that is a standardQObject-derived class, theQ_OBJECT macro must appear in the declaration and the source file must be processed with themoc tool. The class must also contain oneQ_CLASSINFO entry with the"D-Bus Interface"
name, declaring which interface it is exporting. Only one entry per class is supported.
Any public slot in the class will be accessible through the bus over messages of the MethodCall type. (SeeDeclaring Slots in D-Bus Adaptors for more information). Signals in the class will be automatically relayed over D-Bus. However, not all types are allowed signals or slots' parameter lists: seeThe Qt D-Bus Type System for more information.
Also, any property declared withQ_PROPERTY will be automatically exposed over the Properties interface on D-Bus. Since theQObject property system does not allow for non-readable properties, it is not possible to declare write-only properties using adaptors.
More information:
complexpong.h
andcomplexpong.cpp
show an implementation ofQDBusAbstractAdaptor.See alsoQDBusAbstractAdaptor.
© 2024 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of theGNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.
Qt Group includes The Qt Company Oy and its global subsidiaries and affiliates.