hiding daychange messages at the top of the buffer
[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 class WebPreviewItem;
35
36 class QGraphicsSceneMouseEvent;
37
38 class ChatScene : public QGraphicsScene {
39   Q_OBJECT
40
41 public:
42   ChatScene(QAbstractItemModel *model, const QString &idString, qreal width, QObject *parent);
43   virtual ~ChatScene();
44
45   inline QAbstractItemModel *model() const { return _model; }
46   inline QString idString() const { return _idString; }
47
48   int sectionByScenePos(int x);
49   inline int sectionByScenePos(const QPoint &pos) { return sectionByScenePos(pos.x()); }
50   inline bool isSingleBufferScene() const { return _singleBufferScene; }
51   inline bool containsBuffer(const BufferId &id) const;
52   inline ChatLine *chatLine(int row) { return (row < _lines.count()) ? _lines[row] : 0; }
53
54   inline ColumnHandleItem *firstColumnHandle() const { return firstColHandle; }
55   inline ColumnHandleItem *secondColumnHandle() const { return secondColHandle; }
56
57 public slots:
58   void updateForViewport(qreal width, qreal height);
59   void setWidth(qreal, bool forceReposition = false);
60
61   // these are used by the chatitems to notify the scene and manage selections
62   void setSelectingItem(ChatItem *item);
63   ChatItem *selectingItem() const { return _selectingItem; }
64   void startGlobalSelection(ChatItem *item, const QPointF &itemPos);
65   void putToClipboard(const QString &);
66
67   void requestBacklog();
68
69   void loadWebPreview(ChatItem *parentItem, const QString &url, const QRectF &urlRect);
70   void clearWebPreview(ChatItem *parentItem = 0);
71
72 signals:
73   void lastLineChanged(QGraphicsItem *);
74
75 protected:
76   virtual void mouseMoveEvent(QGraphicsSceneMouseEvent *mouseEvent);
77   virtual void mousePressEvent(QGraphicsSceneMouseEvent *mouseEvent);
78   virtual void mouseReleaseEvent(QGraphicsSceneMouseEvent *mouseEvent);
79
80 protected slots:
81   void rowsInserted(const QModelIndex &, int, int);
82   void rowsAboutToBeRemoved(const QModelIndex &, int, int);
83
84 private slots:
85   void handlePositionChanged(qreal xpos);
86
87 private:
88   void setHandleXLimits();
89   void updateSelection(const QPointF &pos);
90   QString selectionToString() const;
91
92   QString _idString;
93   QAbstractItemModel *_model;
94   QList<ChatLine *> _lines;
95   bool _singleBufferScene;
96
97   // calls to QChatScene::sceneRect() are very expensive. As we manage the scenerect ourselves
98   // we store the size in a member variable.
99   QRectF _sceneRect;
100   void updateSceneRect();
101   void updateSceneRect(qreal width);
102   void updateSceneRect(const QRectF &rect);
103   qreal _viewportHeight;
104
105   ColumnHandleItem *firstColHandle, *secondColHandle;
106   qreal firstColHandlePos, secondColHandlePos;
107
108   ChatItem *_selectingItem;
109   int _selectionStartCol, _selectionMinCol;
110   int _selectionStart;
111   int _selectionEnd;
112   int _firstSelectionRow, _lastSelectionRow;
113   bool _isSelecting;
114
115   int _lastBacklogSize;
116
117   struct WebPreview {
118     ChatItem *parentItem;
119     WebPreviewItem *previewItem;
120     QString url;
121     QRectF urlRect;
122     WebPreview() : parentItem(0), previewItem(0) {}
123   };
124   WebPreview webPreview;
125 };
126
127 bool ChatScene::containsBuffer(const BufferId &id) const {
128   MessageFilter *filter = qobject_cast<MessageFilter*>(model());
129   if(filter)
130     return filter->containsBuffer(id);
131   else
132     return false;
133 }
134
135 #endif