diff options
| author | Linus Jahn <lnj@kaidan.im> | 2020-04-07 00:54:50 +0200 |
|---|---|---|
| committer | Linus Jahn <lnj@kaidan.im> | 2020-04-07 21:54:59 +0200 |
| commit | 5dbca42cf501233dd09b32deb9b64d5862a48688 (patch) | |
| tree | b97045950dae0b8a9d43ab339a0963c4e6d0567b /src/client/QXmppAttentionManager.h | |
| parent | d7da60e0537c610257df1fcee5fac6cb2afc1b17 (diff) | |
| download | qxmpp-5dbca42cf501233dd09b32deb9b64d5862a48688.tar.gz | |
Add QXmppAttentionManager
Diffstat (limited to 'src/client/QXmppAttentionManager.h')
| -rw-r--r-- | src/client/QXmppAttentionManager.h | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/src/client/QXmppAttentionManager.h b/src/client/QXmppAttentionManager.h new file mode 100644 index 00000000..ddbf38be --- /dev/null +++ b/src/client/QXmppAttentionManager.h @@ -0,0 +1,68 @@ +/* + * Copyright (C) 2008-2020 The QXmpp developers + * + * Author: + * Linus Jahn + * + * Source: + * https://github.com/qxmpp-project/qxmpp + * + * This file is a part of QXmpp library. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + */ + +#ifndef QXMPPATTENTIONMANAGER_H +#define QXMPPATTENTIONMANAGER_H + +#include "QXmppClientExtension.h" + +#include <QTime> + +class QXmppAttentionManagerPrivate; +class QXmppMessage; + +class QXMPP_EXPORT QXmppAttentionManager : public QXmppClientExtension +{ + Q_OBJECT + +public: + QXmppAttentionManager(quint8 allowedAttempts = 3, QTime timeFrame = QTime(0, 15, 0)); + ~QXmppAttentionManager(); + + QStringList discoveryFeatures() const override; + + quint8 allowedAttempts() const; + void setAllowedAttempts(quint8 allowedAttempts); + + QTime allowedAttemptsTimeInterval() const; + void setAllowedAttemptsTimeInterval(QTime interval); + +public Q_SLOTS: + QString requestAttention(const QString &jid, const QString &message = {}); + +Q_SIGNALS: + void attentionRequested(const QXmppMessage &message, bool isTrusted); + void attentionRequestRateLimited(const QXmppMessage &message); + +protected: + void setClient(QXmppClient *client) override; + bool handleStanza(const QDomElement &stanza) override; + +private Q_SLOTS: + void handleMessageReceived(const QXmppMessage &message); + +private: + QXmppAttentionManagerPrivate *const d; +}; + +#endif // QXMPPATTENTIONMANAGER_H |
