Add direct access to chatmon configuration to context menu
[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 <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   void loadWebPreview(ChatItem *parentItem, const QString &url, const QRectF &urlRect);
124   void clearWebPreview(ChatItem *parentItem = 0);
125
126 signals:
127   void lastLineChanged(QGraphicsItem *item, qreal offset);
128   void layoutChanged(); // indicates changes to the scenerect due to resizing of the contentsitems
129   void mouseMoveWhileSelecting(const QPointF &scenePos);
130
131 protected:
132   virtual void contextMenuEvent(QGraphicsSceneContextMenuEvent *contextMenuEvent);
133   virtual void mouseMoveEvent(QGraphicsSceneMouseEvent *mouseEvent);
134   virtual void mousePressEvent(QGraphicsSceneMouseEvent *mouseEvent);
135   virtual void mouseReleaseEvent(QGraphicsSceneMouseEvent *mouseEvent);
136   virtual void mouseDoubleClickEvent(QGraphicsSceneMouseEvent *mouseEvent);
137   virtual void handleClick(Qt::MouseButton button, const QPointF &scenePos);
138
139 protected slots:
140   void rowsInserted(const QModelIndex &, int, int);
141   void rowsAboutToBeRemoved(const QModelIndex &, int, int);
142
143 private slots:
144   void firstHandlePositionChanged(qreal xpos);
145   void secondHandlePositionChanged(qreal xpos);
146   void showWebPreviewEvent();
147   void deleteWebPreviewEvent();
148   void showWebPreviewChanged();
149
150   void clickTimeout();
151
152 private:
153   void setHandleXLimits();
154   void updateSelection(const QPointF &pos);
155
156   ChatView *_chatView;
157   QString _idString;
158   QAbstractItemModel *_model;
159   QList<ChatLine *> _lines;
160   BufferId _singleBufferId;
161
162   // calls to QChatScene::sceneRect() are very expensive. As we manage the scenerect ourselves
163   // we store the size in a member variable.
164   QRectF _sceneRect;
165   int _firstLineRow; // the first row to display (aka: not a daychange msg)
166   void updateSceneRect(qreal width);
167   inline void updateSceneRect() { updateSceneRect(_sceneRect.width()); }
168   void updateSceneRect(const QRectF &rect);
169   qreal _viewportHeight;
170
171   ColumnHandleItem *_firstColHandle, *_secondColHandle;
172   qreal _firstColHandlePos, _secondColHandlePos;
173   CutoffMode _cutoffMode;
174
175   ChatItem *_selectingItem;
176   int _selectionStartCol, _selectionMinCol;
177   int _selectionStart;
178   int _selectionEnd;
179   int _firstSelectionRow;
180   bool _isSelecting;
181
182   QTimer _clickTimer;
183   ClickMode _clickMode;
184   QPointF _clickPos;
185   bool _clickHandled;
186   bool _leftButtonPressed;
187
188   bool _showWebPreview;
189
190   struct WebPreview {
191     ChatItem *parentItem;
192     QGraphicsItem *previewItem;
193     QString url;
194     QRectF urlRect;
195     QTimer delayTimer;
196     QTimer deleteTimer;
197     WebPreview() : parentItem(0), previewItem(0) {}
198   };
199   WebPreview webPreview;
200 };
201
202 #endif