Move QssParser out of UiStyle
[quassel.git] / src / qtui / chatlinemodel.cpp
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 #include "chatlinemodel.h"
22
23 ChatLineModel::ChatLineModel(QObject *parent)
24   : MessageModel(parent)
25 {
26   qRegisterMetaType<WrapList>("ChatLineModel::WrapList");
27   qRegisterMetaTypeStreamOperators<WrapList>("ChatLineModel::WrapList");
28 }
29
30 // MessageModelItem *ChatLineModel::createMessageModelItem(const Message &msg) {
31 //   return new ChatLineModelItem(msg);
32 // }
33
34 void ChatLineModel::insertMessages__(int pos, const QList<Message> &messages) {
35   for(int i = 0; i < messages.count(); i++) {
36     _messageList.insert(pos, ChatLineModelItem(messages[i]));
37     pos++;
38   }
39 }
40
41 Message ChatLineModel::takeMessageAt(int i) {
42   Message msg = _messageList[i].message();
43   _messageList.removeAt(i);
44   return msg;
45 }
46
47 QDataStream &operator<<(QDataStream &out, const ChatLineModel::WrapList wplist) {
48   out << wplist.count();
49   ChatLineModel::WrapList::const_iterator it = wplist.begin();
50   while(it != wplist.end()) {
51     out << (*it).start << (*it).width << (*it).trailing;
52     ++it;
53   }
54   return out;
55 }
56
57 QDataStream &operator>>(QDataStream &in, ChatLineModel::WrapList &wplist) {
58   quint16 cnt;
59   in >> cnt;
60   wplist.resize(cnt);
61   for(quint16 i = 0; i < cnt; i++) {
62     in >> wplist[i].start >> wplist[i].width >> wplist[i].trailing;
63   }
64   return in;
65 }