1 /***************************************************************************
2 * Copyright (C) 2005-09 by the Quassel Project *
3 * devel@quassel-irc.org *
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. *
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. *
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 ***************************************************************************/
24 #include <QGraphicsItem>
26 #include "chatlinemodel.h"
28 #include "chatscene.h"
30 class ChatLine : public QGraphicsItem {
32 ChatLine(int row, QAbstractItemModel *model,
34 const qreal ×tampWidth, const qreal &senderWidth, const qreal &contentsWidth,
35 const QPointF &senderPos, const QPointF &contentsPos,
36 QGraphicsItem *parent = 0);
38 virtual inline QRectF boundingRect () const { return QRectF(0, 0, _width, _height); }
40 inline int row() { return _row; }
41 inline void setRow(int row) { _row = row; }
43 inline const QAbstractItemModel *model() const { return _model; }
44 inline ChatScene *chatScene() const { return qobject_cast<ChatScene *>(scene()); }
46 inline qreal width() const { return _width; }
47 inline qreal height() const { return _height; }
49 ChatItem &item(ChatLineModel::ColumnType);
50 inline ChatItem ×tampItem() { return _timestampItem; }
51 inline ChatItem &senderItem() { return _senderItem; }
52 inline ContentsChatItem &contentsItem() { return _contentsItem; }
54 virtual void paint (QPainter * painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0);
55 enum { Type = ChatScene::ChatLineType };
56 virtual inline int type() const { return Type; }
58 void setFirstColumn(const qreal ×tampWidth, const qreal &senderWidth, const QPointF &senderPos);
59 // setSecondColumn and setGeometryByWidth both also relocate the chatline.
60 // the _bottom_ position is passed via linePos. linePos is updated to the top of the chatLine.
61 void setSecondColumn(const qreal &senderWidth, const qreal &contentsWidth, const QPointF &contentsPos, qreal &linePos);
62 void setGeometryByWidth(const qreal &width, const qreal &contentsWidth, qreal &linePos);
64 void setSelected(bool selected, ChatLineModel::ColumnType minColumn = ChatLineModel::ContentsColumn);
65 void setHighlighted(bool highlighted);
69 QAbstractItemModel *_model;
70 ContentsChatItem _contentsItem;
71 SenderChatItem _senderItem;
72 TimestampChatItem _timestampItem;
73 qreal _width, _height;
75 enum { ItemMask = 0x3f,
79 // _selection[1..0] ... Min Selected Column (See MessageModel::ColumnType)
80 // _selection[5..2] ... reserved for new column types
81 // _selection[6] ...... Selected
82 // _selection[7] ...... Highlighted
83 quint8 _selection; // save space, so we put both the col and the flags into one byte