1a41f264ed74849978065d99c392badbe8cc98ca
[quassel.git] / src / client / messagemodel.h
1 /***************************************************************************
2  *   Copyright (C) 2005-08 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) 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 MESSAGEMODEL_H_
22 #define MESSAGEMODEL_H_
23
24 #include <QAbstractItemModel>
25
26 class Message;
27 class MessageItem;
28 class MsgId;
29
30 class MessageModel : public QAbstractItemModel {
31   Q_OBJECT
32
33   public:
34     enum MessageRoles {
35       MsgIdRole = Qt::UserRole,
36       BufferIdRole,
37       TypeRole,
38       FlagsRole,
39       TimestampRole,
40       UserRole
41     };
42
43     MessageModel(QObject *parent);
44     virtual ~MessageModel();
45
46     inline QModelIndex index(int row, int column, const QModelIndex &/*parent*/ = QModelIndex()) const { return createIndex(row, column); }
47     inline QModelIndex parent(const QModelIndex &) const { return QModelIndex(); }
48     inline int rowCount(const QModelIndex &/*parent*/ = QModelIndex()) const { return _messageList.count(); }
49     inline int columnCount(const QModelIndex &/*parent*/ = QModelIndex()) const { return 3; }
50
51     virtual QVariant data(const QModelIndex &index, int role) const;
52     virtual bool setData(const QModelIndex &index, const QVariant &value, int role);
53
54     //virtual Qt::ItemFlags flags(const QModelIndex &index) const;
55
56     void insertMessage(const Message &);
57     void insertMessages(const QList<Message> &);
58
59   protected:
60     virtual MessageItem *createMessageItem(const Message &) = 0;
61
62   private:
63     QList<MessageItem *> _messageList;
64
65     int indexForId(MsgId);
66
67 };
68
69 class MessageItem {
70       
71   public:
72     MessageItem(const Message &);
73     virtual ~MessageItem();
74
75
76     virtual QVariant data(int column, int role) const = 0;
77     virtual bool setData(int column, const QVariant &value, int role) = 0;
78
79 };
80
81 #endif