X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fchatlinemodel.cpp;h=42dd04e035ddffead3c946c8838c737ff854efef;hp=09904e2123bfe1432c764bcbc106da0fa865c92e;hb=f04db2cb802b1296ca739c823495930c71d3b4ab;hpb=22f141be889377b07472bb967d92186dad23be3e diff --git a/src/qtui/chatlinemodel.cpp b/src/qtui/chatlinemodel.cpp index 09904e21..42dd04e0 100644 --- a/src/qtui/chatlinemodel.cpp +++ b/src/qtui/chatlinemodel.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-08 by the Quassel IRC Team * + * Copyright (C) 2005-2013 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -15,24 +15,72 @@ * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ #include "chatlinemodel.h" +#include "qtui.h" +#include "qtuistyle.h" -#include "chatline.h" +ChatLineModel::ChatLineModel(QObject *parent) + : MessageModel(parent) +{ + qRegisterMetaType("ChatLineModel::WrapList"); + qRegisterMetaTypeStreamOperators("ChatLineModel::WrapList"); + + connect(QtUi::style(), SIGNAL(changed()), SLOT(styleChanged())); +} -ChatlineModel::ChatlineModel(QObject *parent) : MessageModel(parent) { +// MessageModelItem *ChatLineModel::createMessageModelItem(const Message &msg) { +// return new ChatLineModelItem(msg); +// } +void ChatLineModel::insertMessages__(int pos, const QList &messages) +{ + for (int i = 0; i < messages.count(); i++) { + _messageList.insert(pos, ChatLineModelItem(messages[i])); + pos++; + } } -ChatlineModel::~ChatlineModel() { +Message ChatLineModel::takeMessageAt(int i) +{ + Message msg = _messageList[i].message(); + _messageList.removeAt(i); + return msg; } -MessageItem *ChatlineModel::createMessageItem(const Message &msg) { - return new Chatline(msg); +void ChatLineModel::styleChanged() +{ + foreach(ChatLineModelItem item, _messageList) { + item.invalidateWrapList(); + } + emit dataChanged(index(0, 0), index(rowCount()-1, columnCount()-1)); +} + + +QDataStream &operator<<(QDataStream &out, const ChatLineModel::WrapList wplist) +{ + out << wplist.count(); + ChatLineModel::WrapList::const_iterator it = wplist.begin(); + while (it != wplist.end()) { + out << (*it).start << (*it).width << (*it).trailing; + ++it; + } + return out; +} + +QDataStream &operator>>(QDataStream &in, ChatLineModel::WrapList &wplist) +{ + quint16 cnt; + in >> cnt; + wplist.resize(cnt); + for (quint16 i = 0; i < cnt; i++) { + in >> wplist[i].start >> wplist[i].width >> wplist[i].trailing; + } + return in; }