Fixes #682 - Core crashes on client connection
[quassel.git] / src / qtui / chatscene.h
1 /***************************************************************************
2  *   Copyright (C) 2005-09 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 <QClipboard>
26 #include <QGraphicsItem>
27 #include <QGraphicsScene>
28 #include <QSet>
29 #include <QTimer>
30
31 #include "chatlinemodel.h"
32 #include "messagefilter.h"
33
34 class AbstractUiMsg;
35 class ChatItem;
36 class ChatLine;
37 class ChatView;
38 class ColumnHandleItem;
39 class WebPreviewItem;
40
41 class QGraphicsSceneMouseEvent;
42
43 class ChatScene : public QGraphicsScene {
44   Q_OBJECT
45
46 public:
47   enum CutoffMode {
48     CutoffLeft,
49     CutoffRight
50   };
51
52   enum ItemType {
53     ChatLineType = QGraphicsItem::UserType + 1,
54     ChatItemType,
55     TimestampChatItemType,
56     SenderChatItemType,
57     ContentsChatItemType,
58     SearchHighlightType,
59     WebPreviewType,
60     ColumnHandleType
61   };
62
63   enum ClickMode {
64     NoClick,
65     DragStartClick,
66     SingleClick,
67     DoubleClick,
68     TripleClick
69   };
70
71   ChatScene(QAbstractItemModel *model, const QString &idString, qreal width, ChatView *parent);
72   virtual ~ChatScene();
73
74   inline QAbstractItemModel *model() const { return _model; }
75   inline MessageFilter *filter() const { return qobject_cast<MessageFilter*>(_model); }
76   inline QString idString() const { return _idString; }
77
78   int rowByScenePos(qreal y) const;
79   inline int rowByScenePos(const QPointF &pos) const { return rowByScenePos(pos.y()); }
80   ChatLineModel::ColumnType columnByScenePos(qreal x) const ;
81   inline ChatLineModel::ColumnType columnByScenePos(const QPointF &pos) const { return columnByScenePos(pos.x()); }
82
83   ChatView *chatView() const;
84   ChatItem *chatItemAt(const QPointF &pos) const;
85   inline ChatLine *chatLine(int row) { return (row < _lines.count()) ? _lines[row] : 0; }
86
87   inline bool isSingleBufferScene() const { return _singleBufferId.isValid(); }
88   inline BufferId singleBufferId() const { return _singleBufferId; }
89   bool containsBuffer(const BufferId &id) const;
90
91   ColumnHandleItem *firstColumnHandle() const;
92   ColumnHandleItem *secondColumnHandle() const;
93
94   inline CutoffMode senderCutoffMode() const { return _cutoffMode; }
95   inline void setSenderCutoffMode(CutoffMode mode) { _cutoffMode = mode; }
96
97   QString selection() const;
98   bool hasSelection() const;
99   bool hasGlobalSelection() const;
100   bool isPosOverSelection(const QPointF &) const;
101   bool isGloballySelecting() const;
102   void initiateDrag(QWidget *source);
103
104   bool isScrollingAllowed() const;
105
106   virtual bool event(QEvent *e);
107
108  public slots:
109   void updateForViewport(qreal width, qreal height);
110   void setWidth(qreal width);
111
112   // these are used by the chatitems to notify the scene and manage selections
113   void setSelectingItem(ChatItem *item);
114   ChatItem *selectingItem() const { return _selectingItem; }
115   void startGlobalSelection(ChatItem *item, const QPointF &itemPos);
116   void clearGlobalSelection();
117   void clearSelection();
118   void selectionToClipboard(QClipboard::Mode = QClipboard::Clipboard);
119   void stringToClipboard(const QString &str, QClipboard::Mode = QClipboard::Clipboard);
120
121   void requestBacklog();
122
123 #ifdef HAVE_WEBKIT
124   void loadWebPreview(ChatItem *parentItem, const QString &url, const QRectF &urlRect);
125   void clearWebPreview(ChatItem *parentItem = 0);
126 #endif
127
128 signals:
129   void lastLineChanged(QGraphicsItem *item, qreal offset);
130   void layoutChanged(); // indicates changes to the scenerect due to resizing of the contentsitems
131   void mouseMoveWhileSelecting(const QPointF &scenePos);
132
133 protected:
134   virtual void contextMenuEvent(QGraphicsSceneContextMenuEvent *contextMenuEvent);
135   virtual void mouseMoveEvent(QGraphicsSceneMouseEvent *mouseEvent);
136   virtual void mousePressEvent(QGraphicsSceneMouseEvent *mouseEvent);
137   virtual void mouseReleaseEvent(QGraphicsSceneMouseEvent *mouseEvent);
138   virtual void mouseDoubleClickEvent(QGraphicsSceneMouseEvent *mouseEvent);
139   virtual void handleClick(Qt::MouseButton button, const QPointF &scenePos);
140
141 protected slots:
142   void rowsInserted(const QModelIndex &, int, int);
143   void rowsAboutToBeRemoved(const QModelIndex &, int, int);
144
145 private slots:
146   void firstHandlePositionChanged(qreal xpos);
147   void secondHandlePositionChanged(qreal xpos);
148 #ifdef HAVE_WEBKIT
149   void webPreviewNextStep();
150 #endif
151   void showWebPreviewChanged();
152
153   void clickTimeout();
154
155 private:
156   void setHandleXLimits();
157   void updateSelection(const QPointF &pos);
158
159   ChatView *_chatView;
160   QString _idString;
161   QAbstractItemModel *_model;
162   QList<ChatLine *> _lines;
163   BufferId _singleBufferId;
164
165   // calls to QChatScene::sceneRect() are very expensive. As we manage the scenerect ourselves
166   // we store the size in a member variable.
167   QRectF _sceneRect;
168   int _firstLineRow; // the first row to display (aka: not a daychange msg)
169   void updateSceneRect(qreal width);
170   inline void updateSceneRect() { updateSceneRect(_sceneRect.width()); }
171   void updateSceneRect(const QRectF &rect);
172   qreal _viewportHeight;
173
174   ColumnHandleItem *_firstColHandle, *_secondColHandle;
175   qreal _firstColHandlePos, _secondColHandlePos;
176   CutoffMode _cutoffMode;
177
178   ChatItem *_selectingItem;
179   int _selectionStartCol, _selectionMinCol;
180   int _selectionStart;
181   int _selectionEnd;
182   int _firstSelectionRow;
183   bool _isSelecting;
184
185   QTimer _clickTimer;
186   ClickMode _clickMode;
187   QPointF _clickPos;
188   bool _clickHandled;
189   bool _leftButtonPressed;
190
191   bool _showWebPreview;
192
193 #ifdef HAVE_WEBKIT
194   struct WebPreview {
195     enum PreviewState {
196       NoPreview,
197       NewPreview,
198       DelayPreview,
199       ShowPreview,
200       HidePreview
201     };
202     ChatItem *parentItem;
203     QGraphicsItem *previewItem;
204     QString url;
205     QRectF urlRect;
206     PreviewState previewState;
207     QTimer timer;
208     WebPreview() : parentItem(0), previewItem(0), previewState(NoPreview) {}
209   };
210   WebPreview webPreview;
211 #endif // HAVE_WEBKIT
212 };
213
214 #endif