72099e672202b3bf03f1cf7476d31e7a9e7366f1
[quassel.git] / src / qtui / chatscene.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-08 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 <QGraphicsSceneMouseEvent>
22 #include <QPersistentModelIndex>
23
24 #include "buffer.h"
25 #include "chatitem.h"
26 #include "chatlinemodelitem.h"
27 #include "chatscene.h"
28 #include "quasselui.h"
29
30 ChatScene::ChatScene(QAbstractItemModel *model, QObject *parent) : QGraphicsScene(parent), _model(model) {
31   _width = 0;
32   _timestampWidth = 60;
33   _senderWidth = 80;
34   connect(model, SIGNAL(rowsInserted(const QModelIndex &, int, int)), this, SLOT(rowsInserted(const QModelIndex &, int, int)));
35   for(int i = 0; i < model->rowCount(); i++) {
36     ChatLine *line = new ChatLine(model->index(i, 0));
37     _lines.append(line);
38     addItem(line);
39   }
40   emit heightChanged(height());
41 }
42
43 ChatScene::~ChatScene() {
44
45
46 }
47
48 void ChatScene::rowsInserted(const QModelIndex &index, int start, int end) {
49   Q_UNUSED(index);
50   // maybe make this more efficient by prepending stuff with negative yval
51   // dunno if that's worth not guranteeing that 0 is on the top...
52   // TODO bulk inserts, iterators
53   int h = 0;
54   int y = 0;
55   if(_width && start > 0) y = _lines.value(start - 1)->y() + _lines.value(start - 1)->height();
56   for(int i = start; i <= end; i++) {
57     ChatLine *line = new ChatLine(model()->index(i, 0));
58     _lines.insert(i, line);
59     addItem(line);
60     if(_width > 0) {
61       line->setPos(0, y+h);
62       h += line->setColumnWidths(_timestampWidth, _senderWidth, _width - _timestampWidth - _senderWidth);
63     }
64   }
65   if(h > 0) {
66     _height += h;
67     for(int i = end+1; i < _lines.count(); i++) {
68       _lines.value(i)->moveBy(0, h);
69     }
70     setSceneRect(QRectF(0, 0, _width, _height));
71     emit heightChanged(height());
72   }
73 }
74
75 void ChatScene::setWidth(int w) {
76   _width = w;
77   _height = 0;
78   foreach(ChatLine *line, _lines) {
79     line->setPos(0, _height);
80     _height += line->setColumnWidths(_timestampWidth, _senderWidth, w - _timestampWidth - _senderWidth);
81   }
82   setSceneRect(QRectF(0, 0, w, _height));
83   emit heightChanged(height());
84 }
85
86 void ChatScene::mousePressEvent ( QGraphicsSceneMouseEvent * mouseEvent ) {
87   /*
88   qDebug() << "recv" << mouseEvent->scenePos();
89   ChatLine *line = static_cast<ChatLine*>(itemAt(mouseEvent->scenePos()));
90   ChatItem *item = static_cast<ChatItem*>(itemAt(mouseEvent->scenePos()));
91   qDebug() << (void*)line << (void*)item;
92   if(line) {
93     line->myMousePressEvent(mouseEvent);
94   } else  QGraphicsScene::mousePressEvent(mouseEvent);
95   */
96 }