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