QXmpp Version: 1.5.6
|
The QXmppBookmarkManager class allows you to store and retrieve bookmarks as defined by XEP-0048: Bookmarks. More...
#include <QXmppBookmarkManager.h>
Signals | |
void | bookmarksReceived (const QXmppBookmarkSet &bookmarks) |
This signal is emitted when bookmarks are received. | |
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 | |
QXmppBookmarkManager () | |
bool | areBookmarksReceived () const |
QXmppBookmarkSet | bookmarks () const |
bool | setBookmarks (const QXmppBookmarkSet &bookmarks) |
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) | |
Additional Inherited Members | |
Protected Member Functions inherited from QXmppClientExtension | |
QXmppClient * | client () |
virtual void | setClient (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 QXmppBookmarkManager class allows you to store and retrieve bookmarks as defined by XEP-0048: Bookmarks.
QXmppBookmarkManager::QXmppBookmarkManager | ( | ) |
Constructs a new bookmark manager.
bool QXmppBookmarkManager::areBookmarksReceived | ( | ) | const |
Returns true if the bookmarks have been received from the server, false otherwise.
QXmppBookmarkSet QXmppBookmarkManager::bookmarks | ( | ) | const |
Returns the bookmarks stored on the server.
Before calling this method, check that the bookmarks have indeed been received by calling areBookmarksReceived().
bool QXmppBookmarkManager::setBookmarks | ( | const QXmppBookmarkSet & | bookmarks | ) |
Stores the bookmarks on the server.
bookmarks |