X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fchatscene.cpp;h=dc2d5607e46f9e2dfd63209198b92026a82d56d4;hp=669f746285fe8bb7c34304c57c692fdfddcc3c3e;hb=32b5e6447458a8e6e8074c40988b2d06f327094f;hpb=22f141be889377b07472bb967d92186dad23be3e diff --git a/src/qtui/chatscene.cpp b/src/qtui/chatscene.cpp index 669f7462..dc2d5607 100644 --- a/src/qtui/chatscene.cpp +++ b/src/qtui/chatscene.cpp @@ -19,6 +19,7 @@ ***************************************************************************/ #include +#include #include "buffer.h" #include "chatitem.h" @@ -26,14 +27,15 @@ #include "chatscene.h" #include "quasselui.h" -ChatScene::ChatScene(Buffer *buf, QObject *parent) : QGraphicsScene(parent) { - _buffer = buf; - - foreach(AbstractUiMsg *msg, buf->contents()) { - appendMsg(msg); +ChatScene::ChatScene(MessageModel *model, QObject *parent) : QGraphicsScene(parent), _model(model) { + connect(model, SIGNAL(rowsInserted(const QModelIndex &, int, int)), this, SLOT(rowsInserted(const QModelIndex &, int, int))); + for(int i = 0; i < model->rowCount(); i++) { + ChatItem *item = new ChatItem(QPersistentModelIndex(model->index(i, 2))); + addItem(item); + item->setPos(30, i*item->boundingRect().height()); } - connect(buf, SIGNAL(msgAppended(AbstractUiMsg *)), this, SLOT(appendMsg(AbstractUiMsg *))); - connect(buf, SIGNAL(msgPrepended(AbstractUiMsg *)), this, SLOT(prependMsg(AbstractUiMsg *))); + + } ChatScene::~ChatScene() { @@ -41,26 +43,6 @@ ChatScene::~ChatScene() { } -void ChatScene::appendMsg(AbstractUiMsg * msg) { - /* - ChatLine *line = dynamic_cast(msg); - Q_ASSERT(line); - _lines.append(line); - addItem(line); - line->setPos(0, _lines.count() * 30); - line->setColumnWidths(80, 80, 400); - */ -} - -void ChatScene::prependMsg(AbstractUiMsg * msg) { - /* - ChatLine *line = dynamic_cast(msg); - Q_ASSERT(line); qDebug() << "prepending"; - _lines.prepend(line); - addItem(line); - line->setPos(0, _lines.count() * 30); - */ -} void ChatScene::mousePressEvent ( QGraphicsSceneMouseEvent * mouseEvent ) { /*