Pimp my netsplit detection
[quassel.git] / src / uisupport / networkmodelcontroller.h
1 /***************************************************************************
2  *   Copyright (C) 2005-09 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 NETWORKMODELCONTROLLER_H_
22 #define NETWORKMODELCONTROLLER_H_
23
24 #include <QDialog>
25
26 #include "action.h"
27 #include "actioncollection.h"
28 #include "messagefilter.h"
29
30 class QComboBox;
31 class QDialogButtonBox;
32 class QLineEdit;
33
34 class NetworkModelController : public QObject {
35   Q_OBJECT
36
37 public:
38   NetworkModelController(QObject *parent = 0);
39   virtual ~NetworkModelController();
40
41   // don't change enums without doublechecking masks etc. in code
42   enum ActionType {
43     // Network actions
44     NetworkMask = 0x0f,
45     NetworkConnect = 0x01,
46     NetworkDisconnect = 0x02,
47     NetworkConnectAll = 0x03,
48     NetworkDisconnectAll = 0x04,
49
50     // Buffer actions
51     BufferMask = 0xf0,
52     BufferJoin = 0x10,
53     BufferPart = 0x20,
54     BufferSwitchTo = 0x30,
55     BufferRemove = 0x40,
56
57     // Hide actions
58     HideMask = 0x0f00,
59     HideJoin = 0x0100,
60     HidePart = 0x0200,
61     HideQuit = 0x0300,
62     HideNick = 0x0400,
63     HideMode = 0x0500,
64     HideDayChange = 0x0600,
65     HideTopic = 0x0700,
66     HideUseDefaults = 0xe00,
67     HideApplyToAll = 0xf00,
68
69     // General actions
70     GeneralMask = 0xf000,
71     JoinChannel = 0x1000,
72     ShowChannelList = 0x2000,
73     ShowIgnoreList = 0x3000,
74
75     // Nick actions
76     NickMask = 0xff0000,
77     NickWhois = 0x010000,
78     NickQuery = 0x020000,
79     NickSwitchTo = 0x030000,
80     NickCtcpVersion = 0x040000,
81     NickCtcpPing = 0x050000,
82     NickCtcpTime = 0x060000,
83     NickCtcpFinger = 0x070000,
84     NickOp = 0x080000,
85     NickDeop = 0x090000,
86     NickVoice = 0x0a0000,
87     NickDevoice = 0x0b0000,
88     NickKick = 0x0c0000,
89     NickBan = 0x0d0000,
90     NickKickBan = 0x0e0000,
91
92     // Actions that are handled externally
93     // These emit a signal to the action requester, rather than being handled here
94     ExternalMask = 0xff000000,
95     HideBufferTemporarily = 0x01000000,
96     HideBufferPermanently = 0x02000000
97   };
98
99   inline Action *action(ActionType type) const;
100
101 public:
102   enum ItemActiveState {
103     InactiveState = 0x01,
104     ActiveState = 0x02
105   };
106   Q_DECLARE_FLAGS(ItemActiveStates, ItemActiveState)
107
108 protected:
109   inline ActionCollection *actionCollection() const;
110   inline QList<QModelIndex> indexList() const;
111   inline MessageFilter *messageFilter() const;
112   inline QString contextItem() const ;   ///< Channel name or nick to provide context menu for
113   inline QObject *receiver() const ;
114   inline const char *method() const;
115
116   void setIndexList(const QModelIndex &);
117   void setIndexList(const QList<QModelIndex> &);
118   void setMessageFilter(MessageFilter *);
119   void setContextItem(const QString &);
120   void setSlot(QObject *receiver, const char *method);
121
122   Action * registerAction(ActionType type, const QString &text, bool checkable = false);
123   Action * registerAction(ActionType type, const QPixmap &icon, const QString &text, bool checkable = false);
124   bool checkRequirements(const QModelIndex &index, ItemActiveStates requiredActiveState = QFlags<ItemActiveState>(ActiveState | InactiveState));
125
126   QString nickName(const QModelIndex &index) const;
127   BufferId findQueryBuffer(const QModelIndex &index, const QString &predefinedNick = QString()) const;
128   BufferId findQueryBuffer(NetworkId, const QString &nickName) const;
129   void removeBuffers(const QModelIndexList &indexList);
130
131 protected slots:
132   virtual void actionTriggered(QAction *);
133
134 signals:
135   void showChannelList(NetworkId);
136   void showIgnoreList(NetworkId);
137
138 protected:
139   virtual void handleNetworkAction(ActionType, QAction *);
140   virtual void handleBufferAction(ActionType, QAction *);
141   virtual void handleHideAction(ActionType, QAction *);
142   virtual void handleNickAction(ActionType, QAction *);
143   virtual void handleGeneralAction(ActionType, QAction *);
144   virtual void handleExternalAction(ActionType, QAction *);
145
146   class JoinDlg;
147
148 private:
149   NetworkModel *_model;
150
151   ActionCollection *_actionCollection;
152   QHash<ActionType, Action *> _actionByType;
153
154   QList<QModelIndex> _indexList;
155   MessageFilter *_messageFilter;
156   QString _contextItem;   ///< Channel name or nick to provide context menu for
157   QObject *_receiver;
158   const char *_method;
159 };
160
161 //! Input dialog for joining a channel
162 class NetworkModelController::JoinDlg : public QDialog {
163   Q_OBJECT
164
165 public:
166   JoinDlg(const QModelIndex &index, QWidget *parent = 0);
167
168   QString channelName() const;
169   NetworkId networkId() const;
170
171 private slots:
172   void on_channel_textChanged(const QString &);
173
174 private:
175   QComboBox *networks;
176   QLineEdit *channel;
177   QDialogButtonBox *buttonBox;
178 };
179
180
181 // inlines
182 ActionCollection *NetworkModelController::actionCollection() const { return _actionCollection; }
183 Action *NetworkModelController::action(ActionType type) const { return _actionByType.value(type, 0); }
184 QList<QModelIndex> NetworkModelController::indexList() const { return _indexList; }
185 MessageFilter *NetworkModelController::messageFilter() const { return _messageFilter; }
186 QString NetworkModelController::contextItem() const { return _contextItem; }
187 QObject *NetworkModelController::receiver() const { return _receiver; }
188 const char *NetworkModelController::method() const { return _method; }
189
190 #endif