Introduce QtUiStyleSettings and make highlight color configurable again
[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 class AbstractUiMsg;
29 class Buffer;
30 class ChatItem;
31 class ChatLine;
32 class ColumnHandleItem;
33
34 class QGraphicsSceneMouseEvent;
35
36 class ChatScene : public QGraphicsScene {
37   Q_OBJECT
38
39   public:
40     ChatScene(QAbstractItemModel *model, const QString &idString, QObject *parent);
41     virtual ~ChatScene();
42
43     Buffer *buffer() const;
44     inline QAbstractItemModel *model() const { return _model; }
45     inline QString idString() const { return _idString; }
46
47   public slots:
48     void setWidth(qreal);
49
50     // these are used by the chatitems to notify the scene and manage selections
51     void setSelectingItem(ChatItem *item);
52     ChatItem *selectingItem() const { return _selectingItem; }
53     void startGlobalSelection(ChatItem *item, const QPointF &itemPos);
54
55   signals:
56     void heightChanged(qreal height);
57
58   protected:
59     virtual void mouseMoveEvent(QGraphicsSceneMouseEvent *mouseEvent);
60     virtual void mousePressEvent(QGraphicsSceneMouseEvent *mouseEvent);
61     virtual void mouseReleaseEvent(QGraphicsSceneMouseEvent *mouseEvent);
62
63   protected slots:
64     void rowsInserted(const QModelIndex &, int, int);
65     void modelReset();
66
67   private slots:
68     void rectChanged(const QRectF &);
69     void handlePositionChanged(qreal xpos);
70
71   private:
72     void updateSelection(const QPointF &pos);
73     QString selectionToString() const;
74
75     QString _idString;
76     qreal _width, _height;
77     QAbstractItemModel *_model;
78     QList<ChatLine *> _lines;
79
80     ColumnHandleItem *firstColHandle, *secondColHandle;
81     qreal firstColHandlePos, secondColHandlePos;
82
83     ChatItem *_selectingItem, *_lastItem;
84     QSet<ChatLine *> _selectedItems;
85     int _selectionStartCol, _selectionMinCol;
86     int _selectionStart;
87     int _selectionEnd;
88     bool _isSelecting;
89 };
90
91 #endif