Quassel now handles even huge ChatScenes without slowing to a crawl.
authorManuel Nickschas <sputnick@quassel-irc.org>
Thu, 22 May 2008 19:08:29 +0000 (19:08 +0000)
committerManuel Nickschas <sputnick@quassel-irc.org>
Thu, 22 May 2008 19:08:29 +0000 (19:08 +0000)
For some bizarre reason, setting the scene's rect myself (which should save Qt from
computing bounding rects) causes huge mem consumption and slows down everything.
I have no idea why that would be.

src/qtui/chatscene.cpp
src/qtui/chatscene.h
src/qtui/chatview.cpp
src/qtui/chatview.h

index b7b8cf1..73d0bc8 100644 (file)
@@ -37,6 +37,7 @@ ChatScene::ChatScene(MessageModel *model, QObject *parent) : QGraphicsScene(pare
     _lines.append(line);
     addItem(line);
   }
+  emit heightChanged(height());
 }
 
 ChatScene::~ChatScene() {
@@ -66,7 +67,7 @@ void ChatScene::rowsInserted(const QModelIndex &index, int start, int end) {
     for(int i = end+1; i < _lines.count(); i++) {
       _lines.value(i)->moveBy(0, h);
     }
-    //setSceneRect(0, 0, _width, _height);
+    emit heightChanged(height());
   }
 }
 
@@ -77,8 +78,7 @@ void ChatScene::setWidth(int w) {
     line->setPos(0, _height);
     _height += line->setColumnWidths(_timestampWidth, _senderWidth, w - _timestampWidth - _senderWidth);
   }
-  qDebug() << "setting width";
-  setSceneRect(0, 0, _width, _height * 2);
+  emit heightChanged(_height);
 }
 
 void ChatScene::mousePressEvent ( QGraphicsSceneMouseEvent * mouseEvent ) {
index fd72010..a0bcefc 100644 (file)
@@ -44,6 +44,9 @@ class ChatScene : public QGraphicsScene {
   public slots:
     void setWidth(int);
 
+  signals:
+    void heightChanged(int height);
+
   protected slots:
     void rowsInserted(const QModelIndex &, int, int);
     void mousePressEvent ( QGraphicsSceneMouseEvent * mouseEvent );
index 22d3b0e..a458254 100644 (file)
@@ -33,9 +33,10 @@ ChatView::ChatView(Buffer *buf, QWidget *parent) : QGraphicsView(parent), Abstra
       |QGraphicsView::DontSavePainterState
       |QGraphicsView::DontAdjustForAntialiasing);
   _scene = new ChatScene(Client::messageModel(), this);
-  _scene->setWidth(width());
+  connect(_scene, SIGNAL(heightChanged(int)), this, SLOT(sceneHeightChanged(int)));
+  //_scene->setWidth(width());
   setScene(_scene);
-
+  setSceneRect(0, 0, width(), 0);
 
 }
 
@@ -54,6 +55,10 @@ void ChatView::resizeEvent(QResizeEvent *event) {
   qDebug() << "resize";
 }
 
+void ChatView::sceneHeightChanged(int h) {
+  setSceneRect(0, 0, width(), h);
+}
+
 void ChatView::clear()
 {
 }
index 9799142..100b311 100644 (file)
@@ -56,6 +56,9 @@ class ChatView : public QGraphicsView, public AbstractChatView {
   protected:
     virtual void resizeEvent(QResizeEvent *event);
 
+  protected slots:
+    virtual void sceneHeightChanged(int height);
+
   private:
     ChatScene *_scene;
 };