Remove the word boundary cache
[quassel.git] / src / qtui / chatlinemodel.h
1 /***************************************************************************
2  *   Copyright (C) 2005-09 by the Quassel Project                          *
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 CHATLINEMODEL_H_
22 #define CHATLINEMODEL_H_
23
24 #include "messagemodel.h"
25
26 #include <QList>
27 #include "chatlinemodelitem.h"
28
29 class ChatLineModel : public MessageModel {
30   Q_OBJECT
31
32 public:
33   enum ChatLineRole {
34     MsgLabelRole = MessageModel::UserRole,
35     SelectedBackgroundRole
36   };
37
38   ChatLineModel(QObject *parent = 0);
39
40 protected:
41 //   virtual MessageModelItem *createMessageModelItem(const Message &);
42
43   virtual inline int messageCount() const { return _messageList.count(); }
44   virtual inline bool messagesIsEmpty() const { return _messageList.isEmpty(); }
45   virtual inline const MessageModelItem *messageItemAt(int i) const { return &_messageList[i]; }
46   virtual inline MessageModelItem *messageItemAt(int i) { return &_messageList[i]; }
47   virtual inline const MessageModelItem *firstMessageItem() const { return &_messageList.first(); }
48   virtual inline MessageModelItem *firstMessageItem() { return &_messageList.first(); }
49   virtual inline const MessageModelItem *lastMessageItem() const { return &_messageList.last(); }
50   virtual inline MessageModelItem *lastMessageItem() { return &_messageList.last(); }
51   virtual inline void insertMessage__(int pos, const Message &msg) { _messageList.insert(pos, ChatLineModelItem(msg)); }
52   virtual void insertMessages__(int pos, const QList<Message> &);
53   virtual inline void removeMessageAt(int i) { _messageList.removeAt(i); }
54   virtual inline void removeAllMessages() { _messageList.clear(); }
55   virtual Message takeMessageAt(int i);
56
57 private:
58   QList<ChatLineModelItem> _messageList;
59 };
60
61 #endif
62