Introduce NetworkEvent and children
[quassel.git] / src / common / networkevent.h
1 /***************************************************************************
2  *   Copyright (C) 2005-2010 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  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19  ***************************************************************************/
20
21 #ifndef NETWORKEVENT_H
22 #define NETWORKEVENT_H
23
24 #include <QStringList>
25 #include <QVariantList>
26
27 #include "event.h"
28 #include "network.h"
29
30 class NetworkEvent : public Event {
31
32 public:
33   explicit NetworkEvent(EventManager::EventType type, Network *network)
34     : Event(type),
35       _network(network)
36   {}
37
38   inline NetworkId networkId() const { return network()? network()->networkId() : NetworkId(); }
39   inline Network *network() const { return _network; }
40
41 private:
42   Network *_network;
43 };
44
45 class NetworkConnectionEvent : public NetworkEvent {
46
47 public:
48   explicit NetworkConnectionEvent(EventManager::EventType type, Network *network, Network::ConnectionState state)
49     : NetworkEvent(type, network),
50       _state(state)
51   {}
52
53   inline Network::ConnectionState connectionState() const { return _state; }
54   inline void setConnectionState(Network::ConnectionState state) { _state = state; }
55
56 private:
57   Network::ConnectionState _state;
58 };
59
60 class NetworkDataEvent : public NetworkEvent {
61
62 public:
63   explicit NetworkDataEvent(EventManager::EventType type, Network *network, const QByteArray &data)
64     : NetworkEvent(type, network),
65       _data(data)
66   {}
67
68   inline QByteArray data() const { return _data; }
69   inline void setData(const QByteArray &data) { _data = data; }
70
71 private:
72   QByteArray _data;
73 };
74
75 #endif