Continuing my personal crusade against Buffer.
[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 "types.h"
29
30 class AbstractUiMsg;
31 class BufferId;
32 class ChatItem;
33 class ChatLine;
34 class ColumnHandleItem;
35
36 class QGraphicsSceneMouseEvent;
37
38 class ChatScene : public QGraphicsScene {
39   Q_OBJECT
40
41   public:
42     ChatScene(QAbstractItemModel *model, const QString &idString, QObject *parent);
43     virtual ~ChatScene();
44
45     inline QAbstractItemModel *model() const { return _model; }
46     inline QString idString() const { return _idString; }
47
48     inline bool isFetchingBacklog() const;
49     inline bool isBacklogFetchingEnabled() const;
50     inline BufferId bufferForBacklogFetching() const;
51     int sectionByScenePos(int x);
52     inline int sectionByScenePos(const QPoint &pos) { return sectionByScenePos(pos.x()); }
53
54   public slots:
55     void setWidth(qreal);
56
57     // these are used by the chatitems to notify the scene and manage selections
58     void setSelectingItem(ChatItem *item);
59     ChatItem *selectingItem() const { return _selectingItem; }
60     void startGlobalSelection(ChatItem *item, const QPointF &itemPos);
61
62     void setIsFetchingBacklog(bool);
63     inline void setBufferForBacklogFetching(BufferId buffer);
64
65   signals:
66     void heightChanged(qreal height);
67
68   protected:
69     virtual void mouseMoveEvent(QGraphicsSceneMouseEvent *mouseEvent);
70     virtual void mousePressEvent(QGraphicsSceneMouseEvent *mouseEvent);
71     virtual void mouseReleaseEvent(QGraphicsSceneMouseEvent *mouseEvent);
72
73   protected slots:
74     void rowsInserted(const QModelIndex &, int, int);
75     void modelReset();
76
77   private slots:
78     void rectChanged(const QRectF &);
79     void handlePositionChanged(qreal xpos);
80
81   private:
82     void updateSelection(const QPointF &pos);
83     QString selectionToString() const;
84     void requestBacklogIfNeeded();
85
86     QString _idString;
87     qreal _width, _height;
88     QAbstractItemModel *_model;
89     QList<ChatLine *> _lines;
90
91     ColumnHandleItem *firstColHandle, *secondColHandle;
92     qreal firstColHandlePos, secondColHandlePos;
93
94     ChatItem *_selectingItem, *_lastItem;
95     QSet<ChatLine *> _selectedItems;
96     int _selectionStartCol, _selectionMinCol;
97     int _selectionStart;
98     int _selectionEnd;
99     bool _isSelecting;
100
101     bool _fetchingBacklog;
102     BufferId _backlogFetchingBuffer;
103     MsgId _lastBacklogOffset;
104     int _lastBacklogSize;
105 };
106
107 bool ChatScene::isFetchingBacklog() const {
108   return _fetchingBacklog;
109 }
110
111 bool ChatScene::isBacklogFetchingEnabled() const {
112   return _backlogFetchingBuffer.isValid();
113 }
114
115 BufferId ChatScene::bufferForBacklogFetching() const {
116   return _backlogFetchingBuffer;
117 }
118
119 void ChatScene::setBufferForBacklogFetching(BufferId buf) {
120   _backlogFetchingBuffer = buf;
121 }
122
123 #endif