handle incoming invite, fixes #961
[quassel.git] / src / qtui / chatline.h
1 /***************************************************************************
2  *   Copyright (C) 2005-2010 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 #include "chatscene.h"
29
30 class ChatLine : public QGraphicsItem {
31 public:
32   ChatLine(int row, QAbstractItemModel *model,
33            const qreal &width,
34            const qreal &timestampWidth, const qreal &senderWidth, const qreal &contentsWidth,
35            const QPointF &senderPos, const QPointF &contentsPos,
36            QGraphicsItem *parent = 0);
37
38   virtual ~ChatLine();
39
40   virtual inline QRectF boundingRect () const { return QRectF(0, 0, _width, _height); }
41
42   inline QModelIndex index() const { return model()->index(row(), 0); }
43   inline MsgId msgId() const { return index().data(MessageModel::MsgIdRole).value<MsgId>(); }
44   inline Message::Type msgType() const { return (Message::Type)index().data(MessageModel::TypeRole).toInt(); }
45
46   inline int row() const { return _row; }
47   inline void setRow(int row) { _row = row; }
48
49   inline const QAbstractItemModel *model() const { return _model; }
50   inline ChatScene *chatScene() const { return qobject_cast<ChatScene *>(scene()); }
51   inline ChatView *chatView() const { return chatScene() ? chatScene()->chatView() : 0; }
52
53   inline qreal width() const { return _width; }
54   inline qreal height() const { return _height; }
55
56   ChatItem *item(ChatLineModel::ColumnType);
57   ChatItem *itemAt(const QPointF &pos);
58   inline ChatItem *timestampItem() { return &_timestampItem; }
59   inline ChatItem *senderItem() { return &_senderItem; }
60   inline ContentsChatItem *contentsItem() { return &_contentsItem; }
61
62   virtual void paint (QPainter * painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0);
63   enum { Type = ChatScene::ChatLineType };
64   virtual inline int type() const { return Type; }
65
66   // pos is relative to the parent ChatLine
67   void setFirstColumn(const qreal &timestampWidth, const qreal &senderWidth, const QPointF &senderPos);
68   // setSecondColumn and setGeometryByWidth both also relocate the chatline.
69   // the _bottom_ position is passed via linePos. linePos is updated to the top of the chatLine.
70   void setSecondColumn(const qreal &senderWidth, const qreal &contentsWidth, const QPointF &contentsPos, qreal &linePos);
71   void setGeometryByWidth(const qreal &width, const qreal &contentsWidth, qreal &linePos);
72
73   void setSelected(bool selected, ChatLineModel::ColumnType minColumn = ChatLineModel::ContentsColumn);
74   void setHighlighted(bool highlighted);
75
76   void clearCache();
77
78 protected:
79   virtual bool sceneEvent(QEvent *event);
80
81   // These need to be relayed to the appropriate ChatItem
82   virtual void mouseMoveEvent(QGraphicsSceneMouseEvent *event);
83   virtual void mousePressEvent(QGraphicsSceneMouseEvent *event);
84   virtual void mouseReleaseEvent(QGraphicsSceneMouseEvent *event);
85   virtual void hoverEnterEvent(QGraphicsSceneHoverEvent *event);
86   virtual void hoverLeaveEvent(QGraphicsSceneHoverEvent *event);
87   virtual void hoverMoveEvent(QGraphicsSceneHoverEvent *event);
88
89   ChatItem *mouseEventTargetItem(const QPointF &pos);
90
91   inline ChatItem *mouseGrabberItem() const { return _mouseGrabberItem; }
92   void setMouseGrabberItem(ChatItem *item);
93
94 private:
95   int _row;
96   QAbstractItemModel *_model;
97   ContentsChatItem _contentsItem;
98   SenderChatItem _senderItem;
99   TimestampChatItem _timestampItem;
100   qreal _width, _height;
101
102   enum { ItemMask = 0x3f,
103          Selected = 0x40,
104          Highlighted = 0x80
105   };
106   // _selection[1..0] ... Min Selected Column (See MessageModel::ColumnType)
107   // _selection[5..2] ... reserved for new column types
108   // _selection[6] ...... Selected
109   // _selection[7] ...... Highlighted
110   quint8 _selection;  // save space, so we put both the col and the flags into one byte
111
112   ChatItem *_mouseGrabberItem;
113   ChatItem *_hoverItem;
114 };
115
116 #endif