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