The QXmppClientExtension class is the base class for QXmppClient extensions.
More...
#include <QXmppClientExtension.h>
Friends |
class | QXmppClient |
Additional Inherited Members |
void | setGauge (const QString &gauge, double value) |
| Sets the given gauge to value.
|
void | logMessage (QXmppLogger::MessageType type, const QString &msg) |
| This signal is emitted to send logging messages.
|
void | updateCounter (const QString &counter, qint64 amount=1) |
| Updates the given counter by amount.
|
Detailed Description
The QXmppClientExtension class is the base class for QXmppClient extensions.
If you want to extend QXmppClient, for instance to support an IQ type which is not natively supported, you can subclass QXmppClientExtension and implement handleStanza(). You can then add your extension to the client instance using QXmppClient::addExtension().
Constructor & Destructor Documentation
QXmppClientExtension::QXmppClientExtension |
( |
| ) |
|
QXmppClientExtension::~QXmppClientExtension |
( |
| ) |
|
|
virtual |
Member Function Documentation
Returns the client which loaded this extension.
QStringList QXmppClientExtension::discoveryFeatures |
( |
| ) |
const |
|
virtual |
Returns the discovery features to add to the client.
QList< QXmppDiscoveryIq::Identity > QXmppClientExtension::discoveryIdentities |
( |
| ) |
const |
|
virtual |
Returns the discovery identities to add to the client.
virtual bool QXmppClientExtension::handleStanza |
( |
const QDomElement & |
stanza | ) |
|
|
pure virtual |
You need to implement this method to process incoming XMPP stanzas.
You should return true if the stanza was handled and no further processing should occur, or false to let other extensions process the stanza.
void QXmppClientExtension::setClient |
( |
QXmppClient * |
client | ) |
|
|
protectedvirtual |
Sets the client which loaded this extension.
- Parameters
-
The documentation for this class was generated from the following files: