Made the Nicklist Pretty again
[quassel.git] / src / client / networkmodel.h
1 /***************************************************************************
2  *   Copyright (C) 2005-08 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 NETWORKMODEL_H
22 #define NETWORKMODEL_H
23
24 #include <QtCore>
25
26 #include "treemodel.h"
27 #include "buffer.h"
28
29 #include <QPointer>
30
31 class BufferInfo;
32
33 #include "selectionmodelsynchronizer.h"
34 #include "modelpropertymapper.h"
35 class MappedSelectionModel;
36 class QAbstractItemView;
37 class Network;
38 class IrcChannel;
39 class IrcUser;
40
41 /*****************************************
42  *  Fancy Buffer Items
43  *****************************************/
44 class BufferItem : public PropertyMapItem {
45   Q_OBJECT
46   Q_PROPERTY(QString bufferName READ bufferName)
47   Q_PROPERTY(QString topic READ topic)
48   Q_PROPERTY(int nickCount READ nickCount)
49
50 public:
51   BufferItem(BufferInfo bufferInfo, AbstractTreeItem *parent = 0);
52
53   const BufferInfo &bufferInfo() const;
54   virtual quint64 id() const;
55   virtual QVariant data(int column, int role) const;
56
57   void attachIrcChannel(IrcChannel *ircChannel);
58
59   QString bufferName() const;
60   QString topic() const;
61   int nickCount() const;
62
63   enum Type {
64     StatusType,
65     ChannelType,
66     QueryType
67   };
68   
69   bool isStatusBuffer() const;
70   Type bufferType() const;
71
72   bool isActive() const;
73   
74   enum Activity {
75     NoActivity = 0x00,
76     OtherActivity = 0x01,
77     NewMessage = 0x02,
78     Highlight = 0x40
79   };
80   Q_DECLARE_FLAGS(ActivityLevel, Activity)
81
82   ActivityLevel activity() const;
83   void setActivity(const ActivityLevel &level);
84   void addActivity(const ActivityLevel &level);
85
86 public slots:
87   void setTopic(const QString &topic);
88   void join(IrcUser *ircUser);
89   void part(IrcUser *ircUser);
90
91   void addUserToCategory(IrcUser *ircUser);
92   void removeUserFromCategory(IrcUser *ircUser);
93   void userModeChanged(IrcUser *ircUser);
94                                          
95 private slots:
96   void ircChannelDestroyed();
97   
98 private:
99   BufferInfo _bufferInfo;
100   ActivityLevel _activity;
101   Type _type;
102
103   QPointer<IrcChannel> _ircChannel;
104 };
105 Q_DECLARE_OPERATORS_FOR_FLAGS(BufferItem::ActivityLevel)
106
107 /*****************************************
108  *  Network Items
109  *****************************************/
110 class NetworkItem : public PropertyMapItem {
111   Q_OBJECT
112   Q_PROPERTY(QString networkName READ networkName)
113   Q_PROPERTY(QString currentServer READ currentServer)
114   Q_PROPERTY(int nickCount READ nickCount)
115     
116 public:
117   NetworkItem(const uint &netid, const QString &, AbstractTreeItem *parent = 0);
118
119   virtual QVariant data(int column, int row) const;
120   virtual quint64 id() const;
121
122   bool isActive() const;
123   
124   QString networkName() const;
125   QString currentServer() const;
126   int nickCount() const;
127   
128 public slots:
129   void setNetworkName(const QString &networkName);
130   void setCurrentServer(const QString &serverName);
131
132   void attachNetwork(Network *network);
133   void attachIrcChannel(const QString &channelName);
134   
135 private:
136   uint _networkId;
137   QString _networkName;
138
139   QPointer<Network> _network;
140 };
141
142 /*****************************************
143 *  User Category Items (like @vh etc.)
144 *****************************************/
145 class UserCategoryItem : public PropertyMapItem {
146   Q_OBJECT
147   Q_PROPERTY(QString categoryId READ categoryId)
148     
149 public:
150   UserCategoryItem(int category, AbstractTreeItem *parent);
151
152   QString categoryId();
153   virtual quint64 id() const;
154
155   void addUser(IrcUser *ircUser);
156
157   static int categoryFromModes(const QString &modes);
158
159 private slots:
160   void checkNoChilds();
161
162 private:
163   int _category;
164
165   struct Category {
166     QChar mode;
167     QString displayString;
168     inline Category(QChar mode_, QString displayString_) : mode(mode_), displayString(displayString_) {};
169   };
170
171   static const QList<Category> categories;
172 };
173
174 /*****************************************
175 *  Irc User Items
176 *****************************************/
177 class IrcUserItem : public PropertyMapItem {
178   Q_OBJECT
179   Q_PROPERTY(QString nickName READ nickName)
180     
181 public:
182   IrcUserItem(IrcUser *ircUser, AbstractTreeItem *parent);
183
184   QString nickName();
185   IrcUser *ircUser();
186   virtual quint64 id() const;
187
188 private slots:
189   void setNick(QString newNick);
190   void ircUserDestroyed();
191
192 private:
193   IrcUser *_ircUser;
194 };
195
196
197 /*****************************************
198  * NetworkModel
199  *****************************************/
200 class NetworkModel : public TreeModel {
201   Q_OBJECT
202
203 public:
204   enum myRoles {
205     BufferTypeRole = Qt::UserRole,
206     ItemActiveRole,
207     BufferIdRole,
208     NetworkIdRole,
209     ItemTypeRole
210   };
211
212   enum itemTypes {
213     AbstractItemType,
214     SimpleItemType,
215     NetworkItemType,
216     BufferItemType,
217     NickItemType
218   };
219     
220   NetworkModel(QObject *parent = 0);
221   static QList<QVariant> defaultHeader();
222
223   static bool mimeContainsBufferList(const QMimeData *mimeData);
224   static QList< QPair<uint, uint> > mimeDataToBufferList(const QMimeData *mimeData);
225
226   virtual QStringList mimeTypes() const;
227   virtual QMimeData *mimeData(const QModelIndexList &) const;
228   virtual bool dropMimeData(const QMimeData *, Qt::DropAction, int, int, const QModelIndex &);
229
230   void attachNetwork(Network *network);
231
232   bool isBufferIndex(const QModelIndex &) const;
233   Buffer *getBufferByIndex(const QModelIndex &) const;
234   QModelIndex bufferIndex(BufferId bufferId);
235
236 public slots:
237   void bufferUpdated(BufferInfo bufferInfo);
238   void bufferActivity(BufferItem::ActivityLevel, BufferInfo bufferInfo);
239
240 private:
241   QModelIndex networkIndex(uint networkId);
242   NetworkItem *network(uint networkId);
243   NetworkItem *newNetwork(uint networkId, const QString &networkName);
244   
245   BufferItem *buffer(BufferInfo bufferInfo);
246   BufferItem *newBuffer(BufferInfo bufferInfo);
247
248 };
249
250 #endif // NETWORKMODEL_H