newly created buffer views are previewed properly in the settings dialog
[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 CutoffMode {
43     CutoffLeft,
44     CutoffRight
45   };
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   inline CutoffMode senderCutoffMode() const { return _cutoffMode; }
63   inline void setSenderCutoffMode(CutoffMode mode) { _cutoffMode = mode; }
64
65 public slots:
66   void updateForViewport(qreal width, qreal height);
67   void setWidth(qreal width);
68
69   // these are used by the chatitems to notify the scene and manage selections
70   void setSelectingItem(ChatItem *item);
71   ChatItem *selectingItem() const { return _selectingItem; }
72   void startGlobalSelection(ChatItem *item, const QPointF &itemPos);
73   void putToClipboard(const QString &);
74
75   void requestBacklog();
76
77   void loadWebPreview(ChatItem *parentItem, const QString &url, const QRectF &urlRect);
78   void clearWebPreview(ChatItem *parentItem = 0);
79
80 signals:
81   void lastLineChanged(QGraphicsItem *item, qreal offset);
82
83 protected:
84   virtual void mouseMoveEvent(QGraphicsSceneMouseEvent *mouseEvent);
85   virtual void mousePressEvent(QGraphicsSceneMouseEvent *mouseEvent);
86   virtual void mouseReleaseEvent(QGraphicsSceneMouseEvent *mouseEvent);
87   virtual void customEvent(QEvent *event);
88
89 protected slots:
90   void rowsInserted(const QModelIndex &, int, int);
91   void rowsAboutToBeRemoved(const QModelIndex &, int, int);
92
93 private slots:
94   void firstHandlePositionChanged(qreal xpos);
95   void secondHandlePositionChanged(qreal xpos);
96   void showWebPreviewEvent();
97   void deleteWebPreviewEvent();
98
99 private:
100   void setHandleXLimits();
101   void updateSelection(const QPointF &pos);
102   QString selectionToString() const;
103
104   QString _idString;
105   QAbstractItemModel *_model;
106   QList<ChatLine *> _lines;
107   bool _singleBufferScene;
108
109   // calls to QChatScene::sceneRect() are very expensive. As we manage the scenerect ourselves
110   // we store the size in a member variable.
111   QRectF _sceneRect;
112   int _firstLineRow; // the first row to display (aka: not a daychange msg)
113   void updateSceneRect(qreal width);
114   inline void updateSceneRect() { updateSceneRect(_sceneRect.width()); }
115   void updateSceneRect(const QRectF &rect);
116   qreal _viewportHeight;
117
118   ColumnHandleItem *_firstColHandle, *_secondColHandle;
119   qreal _firstColHandlePos, _secondColHandlePos;
120   CutoffMode _cutoffMode;
121
122   ChatItem *_selectingItem;
123   int _selectionStartCol, _selectionMinCol;
124   int _selectionStart;
125   int _selectionEnd;
126   int _firstSelectionRow, _lastSelectionRow;
127   bool _isSelecting;
128
129   struct WebPreview {
130     ChatItem *parentItem;
131     QGraphicsItem *previewItem;
132     QString url;
133     QRectF urlRect;
134     QTimer delayTimer;
135     QTimer deleteTimer;
136     WebPreview() : parentItem(0), previewItem(0) {}
137   };
138   WebPreview webPreview;
139 };
140
141 bool ChatScene::containsBuffer(const BufferId &id) const {
142   MessageFilter *filter = qobject_cast<MessageFilter*>(model());
143   if(filter)
144     return filter->containsBuffer(id);
145   else
146     return false;
147 }
148
149 #endif