79dead363dac5d71fa685f7c4e80c0c2e23d2474
[quassel.git] / src / client / nicktreemodel.h
1 /***************************************************************************
2  *   Copyright (C) 2005-07 by the Quassel IRC 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 _NICKTREEMODEL_H_
22 #define _NICKTREEMODEL_H_
23
24 #include "ircuser.h"
25 //#include "treemodel.h"
26
27 #include <QAbstractItemModel>
28
29 /*
30 //! Represents a single IrcUser within a NickTreeModel.
31 class NickTreeItem : public TreeItem {
32   Q_OBJECT
33
34   public:
35     NickTreeItem(IrcUser *ircuser, TreeItem *parent = 0);
36
37     //virtual QVariant data(int column, int row) const;
38
39   private:
40
41 };
42
43 //! Represents a group of nicks, such as Ops, Voiced etc.
44 class NickTreeGroupItem : public TreeItem {
45   Q_OBJECT
46
47   public:
48     NickTreeGroupItem(const QString &title, TreeItem *parent = 0);
49
50     //virtual QVariant data(int column, int row) const;
51
52   private:
53
54 };
55 */
56
57 //! Represents the IrcUsers in a given IrcChannel.
58 class NickModel : public QAbstractItemModel {
59   Q_OBJECT
60
61   public:
62     NickModel(IrcChannel *);
63     virtual ~NickModel();
64
65   private:
66     
67
68 };
69
70 #endif