1/***************************************************************************
2 * Copyright (C) 2005-2014 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 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 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
29class ChatLineModel : public MessageModel
30{
31 Q_OBJECT
32
33public:
34 enum ChatLineRole {
35 WrapListRole = MessageModel::UserRole,
36 MsgLabelRole,
37 SelectedBackgroundRole
38 };
39
40 ChatLineModel(QObject *parent = 0);
41
42 typedef ChatLineModelItem::Word Word;
43 typedef ChatLineModelItem::WrapList WrapList;
44 virtual inline const MessageModelItem *messageItemAt(int i) const { return &_messageList[i]; }
45protected:
46// virtual MessageModelItem *createMessageModelItem(const Message &);
47
48 virtual inline int messageCount() const { return _messageList.count(); }
49 virtual inline bool messagesIsEmpty() const { return _messageList.isEmpty(); }
50 virtual inline MessageModelItem *messageItemAt(int i) { return &_messageList[i]; }
51 virtual inline const MessageModelItem *firstMessageItem() const { return &_messageList.first(); }
52 virtual inline MessageModelItem *firstMessageItem() { return &_messageList.first(); }
53 virtual inline const MessageModelItem *lastMessageItem() const { return &_messageList.last(); }
54 virtual inline MessageModelItem *lastMessageItem() { return &_messageList.last(); }
55 virtual inline void insertMessage__(int pos, const Message &msg) { _messageList.insert(pos, ChatLineModelItem(msg)); }
56 virtual void insertMessages__(int pos, const QList<Message> &);
57 virtual inline void removeMessageAt(int i) { _messageList.removeAt(i); }
58 virtual inline void removeAllMessages() { _messageList.clear(); }
59 virtual Message takeMessageAt(int i);
60
61protected slots:
62 virtual void styleChanged();
63
64private:
65 QList<ChatLineModelItem> _messageList;
66};
67
68
69QDataStream &operator<<(QDataStream &out, const ChatLineModel::WrapList);
70QDataStream &operator>>(QDataStream &in, ChatLineModel::WrapList &);
71
72Q_DECLARE_METATYPE(ChatLineModel::WrapList)
73
74#endif
75