common: Make SyncableObject non-copyable
[quassel.git] / src / qtui / chatlinemodel.h
1 /***************************************************************************
2  *   Copyright (C) 2005-2020 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 <QList>
25
26 #include "chatlinemodelitem.h"
27 #include "messagemodel.h"
28
29 class ChatLineModel : public MessageModel
30 {
31     Q_OBJECT
32
33 public:
34     enum ChatLineRole
35     {
36         WrapListRole = MessageModel::UserRole,
37         MsgLabelRole,
38         SelectedBackgroundRole
39     };
40
41     ChatLineModel(QObject* parent = nullptr);
42
43     using Word = ChatLineModelItem::Word;
44     using WrapList = ChatLineModelItem::WrapList;
45     inline const MessageModelItem* messageItemAt(int i) const override { return &_messageList[i]; }
46
47 protected:
48     //   virtual MessageModelItem *createMessageModelItem(const Message &);
49
50     inline int messageCount() const override { return _messageList.count(); }
51     inline bool messagesIsEmpty() const override { return _messageList.isEmpty(); }
52     inline MessageModelItem* messageItemAt(int i) override { return &_messageList[i]; }
53     inline const MessageModelItem* firstMessageItem() const override { return &_messageList.first(); }
54     inline MessageModelItem* firstMessageItem() override { return &_messageList.first(); }
55     inline const MessageModelItem* lastMessageItem() const override { return &_messageList.last(); }
56     inline MessageModelItem* lastMessageItem() override { return &_messageList.last(); }
57     inline void insertMessage__(int pos, const Message& msg) override { _messageList.insert(pos, ChatLineModelItem(msg)); }
58     void insertMessages__(int pos, const QList<Message>&) override;
59     inline void removeMessageAt(int i) override { _messageList.removeAt(i); }
60     inline void removeAllMessages() override { _messageList.clear(); }
61     Message takeMessageAt(int i) override;
62
63 protected slots:
64     virtual void styleChanged();
65
66 private:
67     QList<ChatLineModelItem> _messageList;
68 };
69
70 QDataStream& operator<<(QDataStream& out, const ChatLineModel::WrapList);
71 QDataStream& operator>>(QDataStream& in, ChatLineModel::WrapList&);
72
73 Q_DECLARE_METATYPE(ChatLineModel::WrapList)
74
75 #endif