Fixing the Bug where a clear of the BufferTreeModel would not result in cleard hashlists.
[quassel.git] / src / client / treemodel.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 _TREEMODEL_H_
22 #define _TREEMODEL_H_
23
24 #include <QList>
25 #include <QVariant>
26 #include <QHash>
27 #include <QAbstractItemModel>
28
29 /*****************************************
30  *  general item used in the Tree Model
31  *****************************************/
32 class TreeItem : public QObject {
33   Q_OBJECT
34   Q_PROPERTY(uint id READ id)
35   
36 public:
37   TreeItem(const QList<QVariant> &data, TreeItem *parent = 0);
38   TreeItem(TreeItem *parent = 0);
39   virtual ~TreeItem();
40   
41   void appendChild(TreeItem *child);
42   void removeChild(int row);
43                    
44   virtual uint id() const;
45   TreeItem *child(int row) const;
46   TreeItem *childById(const uint &) const;
47   int childCount() const;
48   int columnCount() const;
49   virtual QVariant data(int column, int role) const;
50   int row() const;
51   TreeItem *parent();
52     
53 protected:
54   QList<TreeItem *> childItems;
55   QHash<uint, TreeItem *> childHash; // uint to be compatible to qHash functions
56   TreeItem *parentItem;
57   QList<QVariant> itemData;
58 };
59
60
61 /*****************************************
62  * TreeModel
63  *****************************************/
64 class TreeModel : public QAbstractItemModel {
65   Q_OBJECT
66   
67 public:
68   TreeModel(const QList<QVariant> &, QObject *parent = 0);
69   virtual ~TreeModel();
70   
71   QVariant data(const QModelIndex &index, int role) const;
72   virtual Qt::ItemFlags flags(const QModelIndex &index) const;
73   QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const;
74   QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const;
75   QModelIndex indexById(uint id, const QModelIndex &parent = QModelIndex()) const;
76   QModelIndex parent(const QModelIndex &index) const;
77   int rowCount(const QModelIndex &parent = QModelIndex()) const;
78   int columnCount(const QModelIndex &parent = QModelIndex()) const;
79
80   virtual void clear();
81
82 protected:
83   bool removeRow(int row, const QModelIndex &parent = QModelIndex());
84   bool removeRows(int row, int count, const QModelIndex &parent = QModelIndex());
85
86   TreeItem *rootItem;
87 };
88
89 #endif