QXmpp Version: 1.5.6
|
Public Types | |
using | Item = QXmppTuneItem |
using | GetResult = std::variant< Item, QXmppError > |
using | PublishResult = std::variant< QString, QXmppError > |
Public Member Functions | |
QStringList | discoveryFeatures () const override |
QXmppTask< GetResult > | request (const QString &jid) |
QXmppTask< PublishResult > | publish (const QXmppTuneItem &) |
Q_SIGNAL void | itemReceived (const QString &jid, const QXmppTuneItem &item) |
Public Member Functions inherited from QXmppClientExtension | |
QXmppClientExtension () | |
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) | |
Public Member Functions inherited from QXmppPubSubEventHandler | |
virtual bool | handlePubSubEvent (const QDomElement &element, const QString &pubSubService, const QString &nodeName)=0 |
Additional Inherited Members | |
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. | |
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 QXmppUserTuneManager implements XEP-0118: User Tune. You'll receive tune updates from all presence subscriptions. You can publish tune information on the user's account (publish()) and request tune information from specific accounts (request()).
The manager needs to be added to the client first and also requires the QXmppPubSubManager.
Contains the User Tune information or an error.
Used pubsub item type.
Contains the ID of the published item on success or a stanza error.
|
overridevirtual |
Returns the discovery features to add to the client.
Reimplemented from QXmppClientExtension.
QXmppUserTuneManager::itemReceived | ( | const QString & | jid, |
const QXmppTuneItem & | item | ||
) |
Emitted whenever a XEP-0118: User Tune items event arrives.
auto QXmppUserTuneManager::publish | ( | const QXmppTuneItem & | item | ) |
Publishes User Tune information on the user's account.
item | The User Tune item to be published. |
auto QXmppUserTuneManager::request | ( | const QString & | jid | ) |
Request User Tune information from an account.
jid | The account JID to request. |