Spliting the functionality of setWidth into 3 separate functions for regular setWidth...
[quassel.git] / src / qtui / chatitem.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 CHATITEM_H_
22 #define CHATITEM_H_
23
24 #include <QGraphicsItem>
25 #include <QObject>
26
27 #include "chatlinemodel.h"
28 #include "chatscene.h"
29 #include "uistyle.h"
30 #include "qtui.h"
31
32 class QTextLayout;
33 struct ChatItemPrivate;
34
35 class ChatItem : public QGraphicsItem {
36 protected:
37   ChatItem(const qreal &width, const qreal &height, const QPointF &pos, QGraphicsItem *parent);
38   virtual ~ChatItem();
39
40 public:
41   inline const QAbstractItemModel *model() const;
42   inline int row() const;
43   virtual ChatLineModel::ColumnType column() const = 0;
44   inline ChatScene *chatScene() const { return qobject_cast<ChatScene *>(scene()); }
45
46   inline QRectF boundingRect() const { return _boundingRect; }
47   inline qreal width() const { return _boundingRect.width(); }
48   inline qreal height() const { return _boundingRect.height(); }
49
50   QTextLayout *createLayout(QTextOption::WrapMode, Qt::Alignment = Qt::AlignLeft) const;
51   virtual void doLayout();
52   void clearLayout();
53
54   virtual void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0);
55
56   QVariant data(int role) const;
57
58   // selection stuff, to be called by the scene
59   void clearSelection();
60   void setFullSelection();
61   void continueSelecting(const QPointF &pos);
62
63   QList<QRectF> findWords(const QString &searchWord, Qt::CaseSensitivity caseSensitive);
64
65 protected:
66   virtual void mouseMoveEvent(QGraphicsSceneMouseEvent *event);
67   virtual void mousePressEvent(QGraphicsSceneMouseEvent *event);
68   virtual void mouseReleaseEvent(QGraphicsSceneMouseEvent *event);
69
70   inline QTextLayout *layout() const;
71
72   virtual inline QVector<QTextLayout::FormatRange> additionalFormats() const { return QVector<QTextLayout::FormatRange>(); }
73   qint16 posToCursor(const QPointF &pos);
74
75   inline bool hasPrivateData() const { return (bool)_data; }
76   ChatItemPrivate *privateData() const;
77   virtual inline ChatItemPrivate *newPrivateData();
78
79   // WARNING: setGeometry and setHeight should not be used without either:
80   //  a) calling prepareGeometryChange() immediately before setColumns()
81   //  b) calling Chatline::setPos() immediately afterwards
82   inline void setGeometry(qreal width, qreal height) {
83     _boundingRect.setWidth(width);
84     _boundingRect.setHeight(height);
85   }
86   inline void setHeight(const qreal &height) {
87     _boundingRect.setHeight(height);
88   }
89   inline void setWidth(const qreal &width) {
90     _boundingRect.setWidth(width);
91   }
92
93 private:
94   // internal selection stuff
95   void setSelection(int start, int length);
96
97   ChatItemPrivate *_data;
98   QRectF _boundingRect;
99
100   enum SelectionMode { NoSelection, PartialSelection, FullSelection };
101   SelectionMode _selectionMode;
102   qint16 _selectionStart, _selectionEnd;
103
104   friend class ChatLine;
105 };
106
107 struct ChatItemPrivate {
108   QTextLayout *layout;
109   ChatItemPrivate(QTextLayout *l) : layout(l) {}
110   ~ChatItemPrivate() {
111     delete layout;
112   }
113 };
114
115 // inlines of ChatItem
116 QTextLayout *ChatItem::layout() const { return privateData()->layout; }
117 ChatItemPrivate *ChatItem::newPrivateData() { return new ChatItemPrivate(createLayout(QTextOption::WrapAnywhere)); }
118
119 // ************************************************************
120 // TimestampChatItem
121 // ************************************************************
122
123 //! A ChatItem for the timestamp column
124 class TimestampChatItem : public ChatItem {
125 public:
126   TimestampChatItem(const qreal &width, const qreal &height, QGraphicsItem *parent) : ChatItem(width, height, QPointF(0, 0), parent) {}
127   virtual inline ChatLineModel::ColumnType column() const { return ChatLineModel::TimestampColumn; }
128 };
129
130 // ************************************************************
131 // SenderChatItem
132 // ************************************************************
133 //! A ChatItem for the sender column
134 class SenderChatItem : public ChatItem {
135 public:
136   SenderChatItem(const qreal &width, const qreal &height, const QPointF &pos, QGraphicsItem *parent) : ChatItem(width, height, pos, parent) {}
137   virtual inline ChatLineModel::ColumnType column() const { return ChatLineModel::SenderColumn; }
138
139 protected:
140   virtual inline ChatItemPrivate *newPrivateData() { return new ChatItemPrivate(createLayout(QTextOption::WrapAnywhere, Qt::AlignRight)); }
141 };
142
143 // ************************************************************
144 // ContentsChatItem
145 // ************************************************************
146 struct ContentsChatItemPrivate;
147
148 //! A ChatItem for the contents column
149 class ContentsChatItem : public ChatItem {
150 public:
151   ContentsChatItem(const qreal &width, const QPointF &pos, QGraphicsItem *parent);
152
153   inline ChatLineModel::ColumnType column() const { return ChatLineModel::ContentsColumn; }
154   inline QFontMetricsF *fontMetrics() const { return _fontMetrics; }
155
156 protected:
157   virtual void mouseMoveEvent(QGraphicsSceneMouseEvent *event);
158   virtual void mousePressEvent(QGraphicsSceneMouseEvent *event);
159   virtual void mouseReleaseEvent(QGraphicsSceneMouseEvent *event);
160   virtual void hoverLeaveEvent(QGraphicsSceneHoverEvent *event);
161   virtual void hoverMoveEvent(QGraphicsSceneHoverEvent *event);
162
163   virtual QVector<QTextLayout::FormatRange> additionalFormats() const;
164
165   virtual void doLayout();
166   virtual inline ChatItemPrivate *newPrivateData();
167
168 private:
169   struct Clickable;
170   class WrapColumnFinder;
171
172   inline ContentsChatItemPrivate *privateData() const;
173
174   QList<Clickable> findClickables() const;
175   void endHoverMode();
176   void showWebPreview(const Clickable &click);
177   void clearWebPreview();
178
179   qreal setGeometryByWidth(qreal w);
180   friend class ChatLine;
181   friend struct ContentsChatItemPrivate;
182
183   QFontMetricsF *_fontMetrics;
184 };
185
186 struct ContentsChatItem::Clickable {
187   // Don't change these enums without also changing the regexps in analyze()!
188   enum Type {
189     Invalid = -1,
190     Url = 0,
191     Channel = 1,
192     Nick = 2
193   };
194
195   Type type;
196   quint16 start;
197   quint16 length;
198
199   inline Clickable() : type(Invalid) {};
200   inline Clickable(Type type_, quint16 start_, quint16 length_) : type(type_), start(start_), length(length_) {};
201   inline bool isValid() const { return type != Invalid; }
202 };
203
204 struct ContentsChatItemPrivate : ChatItemPrivate {
205   ContentsChatItem *contentsItem;
206   QList<ContentsChatItem::Clickable> clickables;
207   ContentsChatItem::Clickable currentClickable;
208   bool hasDragged;
209
210   ContentsChatItemPrivate(QTextLayout *l, const QList<ContentsChatItem::Clickable> &c, ContentsChatItem *parent) : ChatItemPrivate(l), contentsItem(parent), clickables(c), hasDragged(false) {}
211 };
212
213 //inlines regarding ContentsChatItemPrivate
214 ChatItemPrivate *ContentsChatItem::newPrivateData() { return new ContentsChatItemPrivate(createLayout(QTextOption::WrapAnywhere), findClickables(), this); }
215 ContentsChatItemPrivate *ContentsChatItem::privateData() const { return (ContentsChatItemPrivate *)ChatItem::privateData(); }
216
217 class ContentsChatItem::WrapColumnFinder {
218 public:
219   WrapColumnFinder(ChatItem *parent);
220   ~WrapColumnFinder();
221
222   qint16 nextWrapColumn();
223
224 private:
225   ChatItem *item;
226   QTextLayout *layout;
227   QTextLine line;
228   ChatLineModel::WrapList wrapList;
229   qint16 wordidx;
230   qint16 lineCount;
231   qreal choppedTrailing;
232 };
233
234 /*************************************************************************************************/
235
236 // Avoid circular include deps
237 #include "chatline.h"
238 const QAbstractItemModel *ChatItem::model() const { return static_cast<ChatLine *>(parentItem())->model(); }
239 int ChatItem::row() const { return static_cast<ChatLine *>(parentItem())->row(); }
240
241 #endif