ChatView now uses MessageFilter to display only messages for its buffer.
[quassel.git] / src / qtui / chatscene.h
index fd72010..5f8057a 100644 (file)
 #ifndef _CHATSCENE_H_
 #define _CHATSCENE_H_
 
+#include <QAbstractItemModel>
 #include <QGraphicsScene>
 
-#include "messagemodel.h"
-
 class AbstractUiMsg;
 class Buffer;
 class ChatItem;
@@ -35,15 +34,18 @@ class ChatScene : public QGraphicsScene {
   Q_OBJECT
 
   public:
-    ChatScene(MessageModel *model, QObject *parent);
+    ChatScene(QAbstractItemModel *model, QObject *parent);
     virtual ~ChatScene();
 
     Buffer *buffer() const;
-    inline MessageModel *model() const { return _model; }
+    inline QAbstractItemModel *model() const { return _model; }
 
   public slots:
     void setWidth(int);
 
+  signals:
+    void heightChanged(int height);
+
   protected slots:
     void rowsInserted(const QModelIndex &, int, int);
     void mousePressEvent ( QGraphicsSceneMouseEvent * mouseEvent );
@@ -51,7 +53,7 @@ class ChatScene : public QGraphicsScene {
   private:
     int _width, _height;
     int _timestampWidth, _senderWidth;
-    MessageModel *_model;
+    QAbstractItemModel *_model;
     QList<ChatLine *> _lines;
 
 };