blob: aac0febcc6a9f3500e83d544693fd2f73bb1d026 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
// SPDX-FileCopyrightText: 2020 Linus Jahn <lnj@kaidan.im>
//
// SPDX-License-Identifier: LGPL-2.1-or-later
#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;
private Q_SLOTS:
void handleMessageReceived(const QXmppMessage &message);
private:
const std::unique_ptr<QXmppAttentionManagerPrivate> d;
};
#endif // QXMPPATTENTIONMANAGER_H
|