Fixing the Bug where a clear of the BufferTreeModel would not result in cleard hashlists.
[quassel.git] / src / client / buffertreemodel.h
1 /***************************************************************************
2  *   Copyright (C) 2005-07 by The Quassel Team                             *
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) any later version.                                   *
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 _BUFFERTREEMODEL_H_
22 #define _BUFFERTREEMODEL_H_
23
24 #include <QtCore>
25
26 #include "treemodel.h"
27 #include "buffer.h"
28
29 /*****************************************
30  *  Fancy Buffer Items
31  *****************************************/
32 class BufferTreeItem : public TreeItem {
33   Q_OBJECT
34   
35 public:
36   BufferTreeItem(Buffer *, TreeItem *parent = 0);
37
38   virtual uint id() const;
39   
40   QVariant data(int column, int role) const;
41   Buffer *buffer() const { return buf; }
42   void setActivity(const Buffer::ActivityLevel &);
43   
44 protected:
45   QString text(int column) const;
46   QColor foreground(int column) const;
47   
48   Buffer *buf;
49   Buffer::ActivityLevel activity;
50 };
51
52 /*****************************************
53  *  Network Items
54  *****************************************/
55 class NetworkTreeItem : public TreeItem {
56   Q_OBJECT
57   
58 public:
59   NetworkTreeItem(const QString &, TreeItem *parent = 0);
60
61   virtual uint id() const;
62   
63 private:
64   QString net;
65   
66 };
67
68 /*****************************************
69  * BufferTreeModel
70  *****************************************/
71 class BufferTreeModel : public TreeModel {
72   Q_OBJECT
73   
74 public:
75   enum  myRoles {
76     BufferTypeRole = Qt::UserRole,
77     BufferActiveRole,
78     BufferNameRole,
79     BufferIdRole
80   };
81   
82   BufferTreeModel(QObject *parent = 0);
83   static QList<QVariant> defaultHeader();
84
85   virtual Qt::ItemFlags flags(const QModelIndex &index) const;
86   
87 public slots:
88   void bufferUpdated(Buffer *);    
89   void changeCurrent(const QModelIndex &, const QModelIndex &);
90   void selectBuffer(Buffer *buffer);
91   void doubleClickReceived(const QModelIndex &);
92   void bufferActivity(Buffer::ActivityLevel, Buffer *buffer);
93   
94 signals:
95   void bufferSelected(Buffer *);
96   void invalidateFilter();
97   void fakeUserInput(BufferId, QString);
98   void selectionChanged(const QModelIndex &);
99     
100 private:
101   bool isBufferIndex(const QModelIndex &) const;
102   Buffer *getBufferByIndex(const QModelIndex &) const;
103   QModelIndex getOrCreateNetworkItemIndex(Buffer *buffer);
104   QModelIndex getOrCreateBufferItemIndex(Buffer *buffer);
105
106   QStringList mimeTypes() const;
107   QMimeData *mimeData(const QModelIndexList &) const;
108   bool dropMimeData(const QMimeData *, Qt::DropAction, int, int, const QModelIndex &);
109   
110   Buffer *currentBuffer;
111 };
112
113 #endif