393f4d2247497e4a9396f1790698462b309c0234
[quassel.git] / src / core / keyevent.h
1 /***************************************************************************
2  *   Copyright (C) 2013-2019 by the Quassel Project                        *
3  *   devel@quassel-irc.org                                                 *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) version 3.                                           *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
19  ***************************************************************************/
20
21 #ifndef KEYEVENT_H
22 #define KEYEVENT_H
23
24 #include <utility>
25
26 #include "ircevent.h"
27
28 class KeyEvent : public IrcEvent
29 {
30 public:
31     enum ExchangeType
32     {
33         Init,
34         Finish
35     };
36
37     explicit KeyEvent(EventManager::EventType type,
38                       Network* network,
39                       const QString& prefix,
40                       QString target,
41                       ExchangeType exchangeType,
42                       QByteArray key,
43                       const QDateTime& timestamp = QDateTime())
44         : IrcEvent(type, network, prefix)
45         , _exchangeType(exchangeType)
46         , _target(std::move(target))
47         , _key(std::move(key))
48     {
49         setTimestamp(timestamp);
50     }
51
52     inline ExchangeType exchangeType() const { return _exchangeType; }
53     inline void setExchangeType(ExchangeType type) { _exchangeType = type; }
54
55     inline QString target() const { return _target; }
56     inline void setTarget(const QString& target) { _target = target; }
57
58     inline QByteArray key() const { return _key; }
59     inline void setKey(const QByteArray& key) { _key = key; }
60
61     static Event* create(EventManager::EventType type, QVariantMap& map, Network* network);
62
63 protected:
64     explicit KeyEvent(EventManager::EventType type, QVariantMap& map, Network* network);
65     void toVariantMap(QVariantMap& map) const override;
66
67     inline QString className() const override { return "KeyEvent"; }
68     inline void debugInfo(QDebug& dbg) const override
69     {
70         NetworkEvent::debugInfo(dbg);
71         dbg << ", prefix = " << qPrintable(prefix()) << ", target = " << qPrintable(target())
72             << ", exchangetype = " << (exchangeType() == Init ? "init" : "finish") << ", key = " << key();
73     }
74
75 private:
76     ExchangeType _exchangeType;
77     QString _target;
78     QByteArray _key;
79 };
80
81 #endif