1fee5c290ea84b59bcf0e65c382cf77ee60e1c51
[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 ChatItem;
32 class ChatLine;
33 class ColumnHandleItem;
34
35 class QGraphicsSceneMouseEvent;
36
37 class ChatScene : public QGraphicsScene {
38   Q_OBJECT
39
40   public:
41     ChatScene(QAbstractItemModel *model, const QString &idString, QObject *parent);
42     virtual ~ChatScene();
43
44     inline QAbstractItemModel *model() const { return _model; }
45     inline QString idString() const { return _idString; }
46
47     int sectionByScenePos(int x);
48     inline int sectionByScenePos(const QPoint &pos) { return sectionByScenePos(pos.x()); }
49     inline bool isSingleBufferScene() const { return _singleBufferScene; }
50     inline ChatLine *chatLine(int row) { return (row < _lines.count()) ? _lines[row] : 0; }
51
52   public slots:
53     void setWidth(qreal);
54
55     // these are used by the chatitems to notify the scene and manage selections
56     void setSelectingItem(ChatItem *item);
57     ChatItem *selectingItem() const { return _selectingItem; }
58     void startGlobalSelection(ChatItem *item, const QPointF &itemPos);
59     void putToClipboard(const QString &);
60
61     void requestBacklog();
62
63   signals:
64     void heightChanged(qreal height);
65
66   protected:
67     virtual void mouseMoveEvent(QGraphicsSceneMouseEvent *mouseEvent);
68     virtual void mousePressEvent(QGraphicsSceneMouseEvent *mouseEvent);
69     virtual void mouseReleaseEvent(QGraphicsSceneMouseEvent *mouseEvent);
70
71   protected slots:
72     void rowsInserted(const QModelIndex &, int, int);
73     void modelReset();
74
75   private slots:
76     void rectChanged(const QRectF &);
77     void handlePositionChanged(qreal xpos);
78
79   private:
80     void updateSelection(const QPointF &pos);
81     QString selectionToString() const;
82
83     QString _idString;
84     qreal _width, _height;
85     QAbstractItemModel *_model;
86     QList<ChatLine *> _lines;
87     bool _singleBufferScene;
88
89     ColumnHandleItem *firstColHandle, *secondColHandle;
90     qreal firstColHandlePos, secondColHandlePos;
91
92     ChatItem *_selectingItem;
93     int _selectionStartCol, _selectionMinCol;
94     int _selectionStart;
95     int _selectionEnd;
96     int _firstSelectionRow, _lastSelectionRow;
97     bool _isSelecting;
98
99     int _lastBacklogSize;
100 };
101
102 #endif