Qt:Документация 4.3.2/qdbusabstractadaptor

Материал из Wiki.crossplatform.ru

Перейти к: навигация, поиск
40px Внимание: Актуальная версия перевода документации находится здесь

__NOTOC__

Image:qt-logo.png

Главная · Все классы · Основные классы · Классы по группам · Модули · Функции

Image:trolltech-logo.png

Содержание

[править] QDBusAbstractAdaptor Class Reference
[ QtDBus module]

The QDBusAbstractAdaptor class is the base class of D-Bus adaptor classes. Далее...

 #include <QDBusAbstractAdaptor>

Inherits QObject.

Класс был добавлен в Qt 4.2.

[править] Открытые функции

  • 29 открытых функций, унаследованных от QObject

[править] Защищенные функции

  • 7 защищенных функций, унаследованных от QObject

[править] Macros

[править] Дополнительные унаследованные члены

  • 1 свойство, унаследованное от QObject
  • 1 открытый слот, унаследованный от QObject
  • 1 сигнал, унаследованный от QObject
  • 5 статических открытых членов, унаследованных от QObject

[править] Подробное описание

The QDBusAbstractAdaptor class is the base class of D-Bus adaptor classes.

The QDBusAbstractAdaptor class is the starting point for all objects intending to provide interfaces to the external world using D-Bus. This is accomplished by attaching a one or more classes derived from QDBusAbstractAdaptor to a normal QObject and then registering that QObject with QDBusConnection::registerObject. QDBusAbstractAdaptor objects are intended to be light-weight wrappers, mostly just relaying calls into the real object (its parent) and the signals from it.

Each QDBusAbstractAdaptor-derived class should define the D-Bus interface it is implementing using the Q_CLASSINFO macro in the class definition.

QDBusAbstractAdaptor uses the standard QObject mechanism of signals, slots and properties to determine what signals, methods and properties to export to the bus. Any signal emitted by QDBusAbstractAdaptor-derived classes will be automatically be relayed through any D-Bus connections the object is registered on.

Classes derived from QDBusAbstractAdaptor must be created on the heap using the new operator and must not be deleted by the user (they will be deleted automatically when the object they are connected to is also deleted).

See also Using adaptors and QDBusConnection.


[править] Описание функций-членов

[править]
QDBusAbstractAdaptor::QDBusAbstractAdaptor ( QObject * obj ) [protected]

Constructs a QDBusAbstractAdaptor with obj as the parent object.

[править]
QDBusAbstractAdaptor::~QDBusAbstractAdaptor ()

Destroys the adaptor.

Warning: Adaptors are destroyed automatically when the real object they refer to is destroyed. Do not delete the adaptors yourself.

[править]
bool QDBusAbstractAdaptor::autoRelaySignals () const [protected]

Returns true if automatic signal relaying from the real object (see object()) is enabled, otherwiser returns false.

See also setAutoRelaySignals().

[править]
void QDBusAbstractAdaptor::setAutoRelaySignals ( bool enable ) [protected]

Toggles automatic signal relaying from the real object (see object()).

Automatic signal relaying consists of signal-to-signal connection of the signals on the parent that have the exact same method signatue in both classes.

If enable is set to true, connect the signals; if set to false, disconnect all signals.

See also autoRelaySignals().


[править] Macro Documentation

[править]
Q_NOREPLY

The Q_NOREPLY macro can be used to mark a method to be called and not wait for it to finish processing before returning from QDBusInterface::call(). The called method cannot return any output arguments and, if it does, any such arguments will be discarded.

You can use this macro in your own adaptors by placing it before your method's return value (which must be "void") in the class declaration, as shown in the example:

 Q_NOREPLY void myMethod();

Its presence in the method implementation (outside the class declaration) is optional.

Эта функция была введена в Qt 4.2.

See also Using QtDBus Adaptors.



Copyright © 2007 Trolltech Trademarks
Qt 4.3.2