5f8057ab1def3fd39e4e4471b48ffad406542d77
[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 QGraphicsSceneMouseEvent;
32
33 class ChatScene : public QGraphicsScene {
34   Q_OBJECT
35
36   public:
37     ChatScene(QAbstractItemModel *model, QObject *parent);
38     virtual ~ChatScene();
39
40     Buffer *buffer() const;
41     inline QAbstractItemModel *model() const { return _model; }
42
43   public slots:
44     void setWidth(int);
45
46   signals:
47     void heightChanged(int height);
48
49   protected slots:
50     void rowsInserted(const QModelIndex &, int, int);
51     void mousePressEvent ( QGraphicsSceneMouseEvent * mouseEvent );
52
53   private:
54     int _width, _height;
55     int _timestampWidth, _senderWidth;
56     QAbstractItemModel *_model;
57     QList<ChatLine *> _lines;
58
59 };
60
61 #endif