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