Method stub for implementing multiline selections next
[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
27 class AbstractUiMsg;
28 class Buffer;
29 class ChatItem;
30 class ChatLine;
31 class ColumnHandleItem;
32
33 class QGraphicsSceneMouseEvent;
34
35 class ChatScene : public QGraphicsScene {
36   Q_OBJECT
37
38   public:
39     ChatScene(QAbstractItemModel *model, const QString &idString, QObject *parent);
40     virtual ~ChatScene();
41
42     Buffer *buffer() const;
43     inline QAbstractItemModel *model() const { return _model; }
44
45   public slots:
46     void setWidth(qreal);
47
48     // these are used by the chatitems to notify the scene
49     void setSelectingItem(ChatItem *item);
50     ChatItem *selectingItem() const { return _selectingItem; }
51     void startGlobalSelection(ChatItem *item);
52
53   signals:
54     void heightChanged(qreal height);
55
56   protected:
57     virtual void mouseMoveEvent(QGraphicsSceneMouseEvent *mouseEvent);
58     virtual void mousePressEvent(QGraphicsSceneMouseEvent *mouseEvent);
59     virtual void mouseReleaseEvent(QGraphicsSceneMouseEvent *mouseEvent);
60
61   protected slots:
62     void rowsInserted(const QModelIndex &, int, int);
63
64   private slots:
65     void rectChanged(const QRectF &);
66     void handlePositionChanged(qreal xpos);
67
68   private:
69     QString _idString;
70     qreal _width, _height;
71     QAbstractItemModel *_model;
72     QList<ChatLine *> _lines;
73
74     ColumnHandleItem *firstColHandle, *secondColHandle;
75     qreal firstColHandlePos, secondColHandlePos;
76
77     ChatItem *_selectingItem;
78 };
79
80 #endif