|
QXmpp Version: 1.11.0
|
The QXmppMucManager class makes it possible to interact with multi-user chat rooms as defined by XEP-0045: Multi-User Chat. More...
#include <QXmppMucManager.h>


Signals | |
| void | invitationReceived (const QString &roomJid, const QString &inviter, const QString &reason) |
| This signal is emitted when an invitation to a chat room is received. | |
| void | roomAdded (QXmppMucRoom *room) |
| This signal is emitted when a new room is managed. | |
Signals inherited from QXmppLoggable | |
| 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. | |
Public Member Functions | |
| QXmppMucManager () | |
| QXmppMucRoom * | addRoom (const QString &roomJid) |
| QList< QXmppMucRoom * > | rooms () const |
| Returns the list of managed rooms. | |
Public Member Functions inherited from QXmppClientExtension | |
| QXmppClientExtension () | |
| virtual QStringList | discoveryFeatures () const |
| virtual QList< QXmppDiscoveryIq::Identity > | discoveryIdentities () const |
| virtual bool | handleStanza (const QDomElement &stanza) |
| You need to implement this method to process incoming XMPP stanzas. | |
| virtual bool | handleStanza (const QDomElement &stanza, const std::optional< QXmppE2eeMetadata > &e2eeMetadata) |
| You need to implement this method to process incoming XMPP stanzas. | |
Public Member Functions inherited from QXmppLoggable | |
| QXmppLoggable (QObject *parent=nullptr) | |
Properties | |
| QList< QXmppMucRoom * > | rooms |
| List of joined MUC rooms. | |
Additional Inherited Members | |
Protected Member Functions inherited from QXmppClientExtension | |
| QXmppClient * | client () const |
| virtual void | setClient (QXmppClient *client) |
| virtual void | onRegistered (QXmppClient *client) |
| virtual void | onUnregistered (QXmppClient *client) |
| void | injectIq (const QDomElement &element, const std::optional< QXmppE2eeMetadata > &e2eeMetadata) |
| bool | injectMessage (QXmppMessage &&message) |
Protected Member Functions inherited from QXmppLoggable | |
| void | debug (const QString &message) |
| void | info (const QString &message) |
| void | warning (const QString &message) |
| void | logReceived (const QString &message) |
| void | logSent (const QString &message) |
The QXmppMucManager class makes it possible to interact with multi-user chat rooms as defined by XEP-0045: Multi-User Chat.
To make use of this manager, you need to instantiate it and load it into the QXmppClient instance as follows:
You can then join a room as follows:
| QXmppMucManager::QXmppMucManager | ( | ) |
Constructs a new QXmppMucManager.
| QXmppMucRoom * QXmppMucManager::addRoom | ( | const QString & | roomJid | ) |
Adds the given chat room to the set of managed rooms.
| roomJid |