Public Member Functions | |
Message (int messageType) | |
Message (DBusMessage *) | |
Message (const QString &service, const QString &path, const QString &interface, const QString &method) | |
Constructs a new Message with the given service and name. | |
Message (const Message &replayingTo) | |
Constructs a message that is a reply to some other message. | |
Message (const QString &path, const QString &interface, const QString &name) | |
Message (const Message &replayingTo, const QString &errorName, const QString &errorMessage) | |
Message | operator= (const Message &other) |
virtual | ~Message () |
Destructs message. | |
int | type () const |
void | setPath (const QString &) |
QString | path () const |
void | setInterface (const QString &) |
QString | interface () const |
void | setMember (const QString &) |
QString | member () const |
void | setErrorName (const QString &) |
QString | errorName () const |
void | setDestination (const QString &) |
QString | destination () const |
bool | setSender (const QString &sender) |
Sets the message sender. | |
QString | sender () const |
Returns sender of this message. | |
QString | signature () const |
iterator | begin () const |
Returns the starting iterator for the fields of this message. | |
iterator | end () const |
Returns the ending iterator for the fields of this message. | |
QVariant | at (int i) |
Returns the field at position i . | |
Message & | operator<< (bool) |
Message & | operator<< (Q_INT8) |
Message & | operator<< (Q_INT32) |
Message & | operator<< (Q_UINT32) |
Message & | operator<< (Q_INT64) |
Message & | operator<< (Q_UINT64) |
Message & | operator<< (double) |
Message & | operator<< (const QString &) |
Message & | operator<< (const QVariant &) |
Protected Member Functions | |
DBusMessage * | message () const |
The underlying DBusMessage of this class. | |
Friends | |
class | Connection |
Data Structures | |
class | iterator |
struct | Private |
Definition at line 34 of file message.h.
|
Constructs a new Message with the given service and name.
Definition at line 322 of file message.cpp. References dbus_message_new_method_call(), and DBusQt::Message::Private::msg. |
|
Constructs a message that is a reply to some other message.
Definition at line 337 of file message.cpp. References d, dbus_message_new_method_return(), and DBusQt::Message::Private::msg. |
|
Returns the field at position
Definition at line 485 of file message.cpp. References end(), and DBusQt::Message::Private::msg. |
|
Returns the starting iterator for the fields of this message.
Definition at line 463 of file message.cpp. References DBusQt::Message::Private::msg. |
|
Returns the ending iterator for the fields of this message.
Definition at line 474 of file message.cpp. Referenced by at(). |
|
The underlying DBusMessage of this class.
Definition at line 502 of file message.cpp. References DBusQt::Message::Private::msg. |
|
Returns sender of this message.
Definition at line 446 of file message.cpp. References dbus_message_get_sender(), and DBusQt::Message::Private::msg. |
|
Sets the message sender.
Definition at line 436 of file message.cpp. References dbus_message_set_sender(), and DBusQt::Message::Private::msg. |