cmake: avoid de-duplication of user's CXXFLAGS
[quassel.git] / src / qtui / chatlinemodel.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-2022 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 #include "chatlinemodel.h"
22
23 #include "qtui.h"
24 #include "qtuistyle.h"
25
26 ChatLineModel::ChatLineModel(QObject* parent)
27     : MessageModel(parent)
28 {
29     qRegisterMetaType<WrapList>("ChatLineModel::WrapList");
30     qRegisterMetaTypeStreamOperators<WrapList>("ChatLineModel::WrapList");
31
32     connect(QtUi::style(), &UiStyle::changed, this, &ChatLineModel::styleChanged);
33 }
34
35 // MessageModelItem *ChatLineModel::createMessageModelItem(const Message &msg) {
36 //   return new ChatLineModelItem(msg);
37 // }
38
39 void ChatLineModel::insertMessages__(int pos, const QList<Message>& messages)
40 {
41     for (int i = 0; i < messages.count(); i++) {
42         _messageList.insert(pos, ChatLineModelItem(messages[i]));
43         pos++;
44     }
45 }
46
47 Message ChatLineModel::takeMessageAt(int i)
48 {
49     Message msg = _messageList[i].message();
50     _messageList.removeAt(i);
51     return msg;
52 }
53
54 void ChatLineModel::styleChanged()
55 {
56     foreach (ChatLineModelItem item, _messageList) {
57         item.invalidateWrapList();
58     }
59     emit dataChanged(index(0, 0), index(rowCount() - 1, columnCount() - 1));
60 }
61
62 QDataStream& operator<<(QDataStream& out, const ChatLineModel::WrapList wplist)
63 {
64     out << wplist.count();
65     ChatLineModel::WrapList::const_iterator it = wplist.begin();
66     while (it != wplist.end()) {
67         out << (*it).start << (*it).width << (*it).trailing;
68         ++it;
69     }
70     return out;
71 }
72
73 QDataStream& operator>>(QDataStream& in, ChatLineModel::WrapList& wplist)
74 {
75     quint16 cnt;
76     in >> cnt;
77     wplist.resize(cnt);
78     for (quint16 i = 0; i < cnt; i++) {
79         in >> wplist[i].start >> wplist[i].width >> wplist[i].trailing;
80     }
81     return in;
82 }