QXmpp  Version:0.9.1
Signals | Public Member Functions | Properties | List of all members
QXmppMucManager Class Reference

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>

Inheritance diagram for QXmppMucManager:
Inheritance graph
[legend]
Collaboration diagram for QXmppMucManager:
Collaboration graph
[legend]

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 ()
 Constructs a new QXmppMucManager.
 
 ~QXmppMucManager ()
 Destroys a QXmppMucManager.
 
QXmppMucRoomaddRoom (const QString &roomJid)
 
QList< QXmppMucRoom * > rooms () const
 
- Public Member Functions inherited from QXmppClientExtension
 QXmppClientExtension ()
 
virtual ~QXmppClientExtension ()
 
virtual QStringList discoveryFeatures () const
 
virtual QList< QXmppDiscoveryIq::Identity > discoveryIdentities () const
 
virtual bool handleStanza (const QDomElement &stanza)=0
 You need to implement this method to process incoming XMPP stanzas. More...
 
- Public Member Functions inherited from QXmppLoggable
 QXmppLoggable (QObject *parent=0)
 

Properties

QList< QXmppMucRoom * > rooms
 Returns the list of managed rooms.
 

Additional Inherited Members

- Protected Member Functions inherited from QXmppClientExtension
QXmppClientclient ()
 
virtual void setClient (QXmppClient *client)
 
- 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)
 

Detailed Description

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:

client->addExtension(manager);

You can then join a room as follows:

QXmppMucRoom *room = manager->addRoom("room@conference.example.com");
room->setNickName("mynick");
room->join();

Member Function Documentation

QXmppMucRoom * QXmppMucManager::addRoom ( const QString &  roomJid)

Adds the given chat room to the set of managed rooms.

Parameters
roomJid

The documentation for this class was generated from the following files: