fixing speed up aftermath
[quassel.git] / src / qtui / chatscene.h
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 #ifndef CHATSCENE_H_
22 #define CHATSCENE_H_
23
24 #include <QAbstractItemModel>
25 #include <QGraphicsScene>
26 #include <QSet>
27
28 #include "columnhandleitem.h"
29 #include "messagefilter.h"
30
31 class AbstractUiMsg;
32 class ChatItem;
33 class ChatLine;
34
35 class QGraphicsSceneMouseEvent;
36
37 class ChatScene : public QGraphicsScene {
38   Q_OBJECT
39
40 public:
41   ChatScene(QAbstractItemModel *model, const QString &idString, qreal width, QObject *parent);
42   virtual ~ChatScene();
43
44   inline QAbstractItemModel *model() const { return _model; }
45   inline QString idString() const { return _idString; }
46
47   int sectionByScenePos(int x);
48   inline int sectionByScenePos(const QPoint &pos) { return sectionByScenePos(pos.x()); }
49   inline bool isSingleBufferScene() const { return _singleBufferScene; }
50   inline bool containsBuffer(const BufferId &id) const;
51   inline ChatLine *chatLine(int row) { return (row < _lines.count()) ? _lines[row] : 0; }
52
53   inline ColumnHandleItem *firstColumnHandle() const { return firstColHandle; }
54   inline ColumnHandleItem *secondColumnHandle() const { return secondColHandle; }
55
56 public slots:
57   void updateForViewport(qreal width, qreal height);
58   void setWidth(qreal, bool forceReposition = false);
59
60   // these are used by the chatitems to notify the scene and manage selections
61   void setSelectingItem(ChatItem *item);
62   ChatItem *selectingItem() const { return _selectingItem; }
63   void startGlobalSelection(ChatItem *item, const QPointF &itemPos);
64   void putToClipboard(const QString &);
65
66   void requestBacklog();
67
68 signals:
69   void lastLineChanged(QGraphicsItem *);
70
71 protected:
72   virtual void mouseMoveEvent(QGraphicsSceneMouseEvent *mouseEvent);
73   virtual void mousePressEvent(QGraphicsSceneMouseEvent *mouseEvent);
74   virtual void mouseReleaseEvent(QGraphicsSceneMouseEvent *mouseEvent);
75
76 protected slots:
77   void rowsInserted(const QModelIndex &, int, int);
78   void rowsAboutToBeRemoved(const QModelIndex &, int, int);
79
80 private slots:
81   void handlePositionChanged(qreal xpos);
82
83 private:
84   void setHandleXLimits();
85   void updateSelection(const QPointF &pos);
86   QString selectionToString() const;
87
88   QString _idString;
89   QAbstractItemModel *_model;
90   QList<ChatLine *> _lines;
91   bool _singleBufferScene;
92
93   // calls to QChatScene::sceneRect() are very expensive. As we manage the scenerect ourselves
94   // we store the size in a member variable.
95   QRectF _sceneRect;
96   void updateSceneRect(const QRectF &rect);
97   qreal _viewportHeight;
98
99   ColumnHandleItem *firstColHandle, *secondColHandle;
100   qreal firstColHandlePos, secondColHandlePos;
101
102   ChatItem *_selectingItem;
103   int _selectionStartCol, _selectionMinCol;
104   int _selectionStart;
105   int _selectionEnd;
106   int _firstSelectionRow, _lastSelectionRow;
107   bool _isSelecting;
108
109   int _lastBacklogSize;
110 };
111
112 bool ChatScene::containsBuffer(const BufferId &id) const {
113   MessageFilter *filter = qobject_cast<MessageFilter*>(model());
114   if(filter)
115     return filter->containsBuffer(id);
116   else
117     return false;
118 }
119
120 #endif