724be7dcec78fb3177cd99902aad923e4d770ec3
[quassel.git] / src / qtui / chatline.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 CHATLINE_H_
22 #define CHATLINE_H_
23
24 #include <QGraphicsItem>
25
26 #include "chatlinemodel.h"
27 #include "chatitem.h"
28
29 class ChatLine : public QGraphicsItem {
30
31   public:
32   ChatLine(int row, QAbstractItemModel *model, QGraphicsItem *parent = 0);
33
34     virtual QRectF boundingRect () const;
35
36   inline int row() { return _row; }
37   inline void setRow(int row) { _row = row; }
38     inline qreal width() const { return _width; }
39     inline qreal height() const { return _height; }
40     ChatItem &item(ChatLineModel::ColumnType);
41
42     virtual void paint (QPainter * painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0);
43
44     // returns height
45     qreal setGeometry(qreal width, qreal firstColPos, qreal secondColPos);
46     void setSelected(bool selected, ChatLineModel::ColumnType minColumn = ChatLineModel::ContentsColumn);
47     void setHighlighted(bool highlighted);
48
49   protected:
50
51   private:
52   int _row;
53     ChatItem _timestampItem, _senderItem, _contentsItem;
54     qreal _width, _height;
55
56     enum { Selected = 0x40, Highlighted = 0x80 };
57     quint8 _selection;  // save space, so we put both the col and the flags into one byte
58 };
59
60 #endif