The QXmppVCardManager gets/sets XMPP vCards. It is an implentation of XEP-0054: vcard-temp. More...
#include <QXmppVCardManager.h>
Signals | |
void | vCardReceived (const QXmppVCard &) |
void | clientVCardReceived () |
Public Member Functions | |
QXmppVCardManager (QXmppStream *stream, QObject *parent=0) | |
void | requestVCard (const QString &bareJid="") |
const QXmppVCard & | clientVCard () const |
void | setClientVCard (const QXmppVCard &) |
void | requestClientVCard () |
bool | isClientVCardReceived () |
The QXmppVCardManager gets/sets XMPP vCards. It is an implentation of XEP-0054: vcard-temp.
Getting vCards of entries in Roster:
It doesn't store vCards of the JIDs in the roster of connected user. Instead client has to request for a particular vCard using requestVCard(). And connect to the signal vCardReceived() to get the requested vCard.
Getting vCard of the connected client:
For getting the vCard of the connected user itself. Client can call requestClientVCard() and on the signal clientVCardReceived() it can get its vCard using clientVCard().
Settting vCard of the client:
Using setClientVCard() client can set its vCard.
const QXmppVCard & QXmppVCardManager::clientVCard | ( | ) | const |
Returns the vCard of the connected client.
void QXmppVCardManager::clientVCardReceived | ( | ) | [signal] |
This signal is emitted when the client's vCard is received after calling the requestClientVCard() function.
bool QXmppVCardManager::isClientVCardReceived | ( | ) |
Returns true if vCard of the connected client has been received else false.
void QXmppVCardManager::requestClientVCard | ( | ) |
This function requests the server for vCard of the connected user itself. Once received the signal clientVCardReceived() is emitted. Received vCard can be get using clientVCard().
void QXmppVCardManager::requestVCard | ( | const QString & | jid = "" |
) |
This function requests the server for vCard of the specified jid. Once received the signal vCardReceived() is emitted.
jid | Jid of the specific entry in the roster |
void QXmppVCardManager::setClientVCard | ( | const QXmppVCard & | clientVCard | ) |
Sets the vCard of the connected client.
clientVCard | QXmppVCard |
void QXmppVCardManager::vCardReceived | ( | const QXmppVCard & | ) | [signal] |
This signal is emitted when the requested vCard is received after calling the requestVCard() function.