introducing query merging (per drag & drop). needs a core update
[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 #include <QDateTime>
26
27 #include "message.h"
28 #include "types.h"
29
30 class MessageModelItem;
31 struct MsgId;
32
33 class MessageModel : public QAbstractItemModel {
34   Q_OBJECT
35
36 public:
37   enum MessageRole {
38     DisplayRole = Qt::DisplayRole,
39     EditRole = Qt::EditRole,
40     MsgIdRole = Qt::UserRole,
41     BufferIdRole,
42     TypeRole,
43     FlagsRole,
44     TimestampRole,
45     FormatRole,
46     ColumnTypeRole,
47     RedirectedToRole,
48     UserRole
49   };
50
51   enum ColumnType {
52     TimestampColumn, SenderColumn, ContentsColumn, UserColumnType
53   };
54
55   MessageModel(QObject *parent);
56
57   inline QModelIndex index(int row, int column, const QModelIndex &/*parent*/ = QModelIndex()) const { return createIndex(row, column); }
58   inline QModelIndex parent(const QModelIndex &) const { return QModelIndex(); }
59   inline int rowCount(const QModelIndex &parent = QModelIndex()) const { return parent.isValid() ? 0 : _messageList.count(); }
60   inline int columnCount(const QModelIndex &/*parent*/ = QModelIndex()) const { return 3; }
61
62   virtual QVariant data(const QModelIndex &index, int role) const;
63   virtual bool setData(const QModelIndex &index, const QVariant &value, int role);
64
65   //virtual Qt::ItemFlags flags(const QModelIndex &index) const;
66
67   bool insertMessage(const Message &, bool fakeMsg = false);
68   void insertMessages(const QList<Message> &);
69
70   void clear();
71
72 public slots:
73   void requestBacklog(BufferId bufferId);
74   void messagesReceived(BufferId bufferId, int count);
75   void buffersPermanentlyMerged(BufferId bufferId1, BufferId bufferId2);
76
77 protected:
78   virtual MessageModelItem *createMessageModelItem(const Message &) = 0;
79   virtual void customEvent(QEvent *event);
80
81 private slots:
82   void changeOfDay();
83
84 private:
85   void insertMessageGroup(const QList<Message> &);
86   int insertMessagesGracefully(const QList<Message> &); // inserts as many contiguous msgs as possible. returns numer of inserted msgs.
87   int indexForId(MsgId);
88
89   QList<MessageModelItem *> _messageList;
90   QList<Message> _messageBuffer;
91   QTimer _dayChangeTimer;
92   QDateTime _nextDayChange;
93   QHash<BufferId, int> _messagesWaiting;
94 };
95
96 // **************************************************
97 //  MessageModelItem
98 // **************************************************
99 class MessageModelItem {
100 public:
101   //! Creates a MessageModelItem from a Message object.
102   /** This baseclass implementation takes care of all Message data *except* the stylable strings.
103    *  Subclasses need to provide Qt::DisplayRole at least, which should describe the plaintext
104    *  strings without formattings (e.g. for searching purposes).
105    */
106   MessageModelItem(const Message &);
107   inline virtual ~MessageModelItem() {}
108
109   virtual QVariant data(int column, int role) const;
110   virtual bool setData(int column, const QVariant &value, int role);
111
112   inline const QDateTime &timeStamp() const { return _timestamp; }
113   inline MsgId msgId() const { return _msgId; }
114   inline BufferId bufferId() const { return _bufferId; }
115   inline void setBufferId(BufferId bufferId) { _bufferId = bufferId; }
116   inline Message::Type msgType() const { return _type; }
117   inline Message::Flags msgFlags() const { return _flags; }
118   
119   // For sorting
120   bool operator<(const MessageModelItem &) const;
121   bool operator==(const MessageModelItem &) const;
122   bool operator>(const MessageModelItem &) const;
123   static bool lessThan(const MessageModelItem *m1, const MessageModelItem *m2);
124
125 private:
126   QDateTime _timestamp;
127   MsgId _msgId;
128   BufferId _bufferId;
129   BufferId _redirectedTo;
130   Message::Type _type;
131   Message::Flags _flags;
132 };
133
134 QDebug operator<<(QDebug dbg, const MessageModelItem &msgItem);
135
136 #endif