First steps in supporting on-hover
[quassel.git] / src / qtui / chatitem.cpp
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 #include <QApplication>
22 #include <QClipboard>
23 #include <QDesktopServices>
24 #include <QFontMetrics>
25 #include <QGraphicsSceneMouseEvent>
26 #include <QPainter>
27 #include <QPalette>
28 #include <QTextLayout>
29
30 #include "chatitem.h"
31 #include "chatlinemodel.h"
32 #include "qtui.h"
33
34 ChatItem::ChatItem(ChatLineModel::ColumnType col, QAbstractItemModel *model, QGraphicsItem *parent)
35   : QGraphicsItem(parent),
36     _fontMetrics(0),
37     _selectionMode(NoSelection),
38     _selectionStart(-1),
39     _layout(0)
40 {
41   Q_ASSERT(model);
42   QModelIndex index = model->index(row(), col);
43   _fontMetrics = QtUi::style()->fontMetrics(model->data(index, ChatLineModel::FormatRole).value<UiStyle::FormatList>().at(0).second);
44   setAcceptHoverEvents(true);
45   setZValue(20);
46 }
47
48 ChatItem::~ChatItem() {
49   delete _layout;
50 }
51
52 QVariant ChatItem::data(int role) const {
53   QModelIndex index = model()->index(row(), column());
54   if(!index.isValid()) {
55     qWarning() << "ChatItem::data(): model index is invalid!" << index;
56     return QVariant();
57   }
58   return model()->data(index, role);
59 }
60
61 qreal ChatItem::setGeometry(qreal w, qreal h) {
62   if(w == _boundingRect.width()) return _boundingRect.height();
63   prepareGeometryChange();
64   _boundingRect.setWidth(w);
65   if(h < 0) h = computeHeight();
66   //if(h < 0) h = fontMetrics()->lineSpacing(); // only contents can be multi-line
67   _boundingRect.setHeight(h);
68   if(haveLayout()) updateLayout();
69   return h;
70 }
71
72 qreal ChatItem::computeHeight() {
73   return fontMetrics()->lineSpacing(); // only contents can be multi-line
74 }
75
76 QTextLayout *ChatItem::createLayout(QTextOption::WrapMode wrapMode, Qt::Alignment alignment) {
77   QTextLayout *layout = new QTextLayout(data(MessageModel::DisplayRole).toString());
78
79   QTextOption option;
80   option.setWrapMode(wrapMode);
81   option.setAlignment(alignment);
82   layout->setTextOption(option);
83
84   QList<QTextLayout::FormatRange> formatRanges
85          = QtUi::style()->toTextLayoutList(data(MessageModel::FormatRole).value<UiStyle::FormatList>(), layout->text().length());
86   layout->setAdditionalFormats(formatRanges);
87   return layout;
88 }
89
90 void ChatItem::updateLayout() {
91   if(!haveLayout())
92     setLayout(createLayout(QTextOption::WrapAnywhere, Qt::AlignLeft));
93
94   layout()->beginLayout();
95   QTextLine line = layout()->createLine();
96   if(line.isValid()) {
97     line.setLineWidth(width());
98     line.setPosition(QPointF(0,0));
99   }
100   layout()->endLayout();
101 }
102
103 void ChatItem::clearLayout() {
104   delete _layout;
105   _layout = 0;
106 }
107
108 // NOTE: This is not the most time-efficient implementation, but it saves space by not caching unnecessary data
109 //       This is a deliberate trade-off. (-> selectFmt creation, data() call)
110 void ChatItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) {
111   Q_UNUSED(option); Q_UNUSED(widget);
112   if(!haveLayout()) updateLayout();
113   painter->setClipRect(boundingRect()); // no idea why QGraphicsItem clipping won't work
114   //if(_selectionMode == FullSelection) {
115     //painter->save();
116     //painter->fillRect(boundingRect(), QApplication::palette().brush(QPalette::Highlight));
117     //painter->restore();
118   //}
119   QVector<QTextLayout::FormatRange> formats = additionalFormats();
120   if(_selectionMode != NoSelection) {
121     QTextLayout::FormatRange selectFmt;
122     selectFmt.format.setForeground(QApplication::palette().brush(QPalette::HighlightedText));
123     selectFmt.format.setBackground(QApplication::palette().brush(QPalette::Highlight));
124     if(_selectionMode == PartialSelection) {
125       selectFmt.start = qMin(_selectionStart, _selectionEnd);
126       selectFmt.length = qAbs(_selectionStart - _selectionEnd);
127     } else { // FullSelection
128       selectFmt.start = 0;
129       selectFmt.length = data(MessageModel::DisplayRole).toString().length();
130     }
131     formats.append(selectFmt);
132   }
133   layout()->draw(painter, QPointF(0,0), formats, boundingRect());
134 }
135
136 qint16 ChatItem::posToCursor(const QPointF &pos) {
137   if(pos.y() > height()) return data(MessageModel::DisplayRole).toString().length();
138   if(pos.y() < 0) return 0;
139   if(!haveLayout()) updateLayout();
140   for(int l = layout()->lineCount() - 1; l >= 0; l--) {
141     QTextLine line = layout()->lineAt(l);
142     if(pos.y() >= line.y()) {
143       return line.xToCursor(pos.x(), QTextLine::CursorOnCharacter);
144     }
145   }
146   return 0;
147 }
148
149 void ChatItem::setFullSelection() {
150   if(_selectionMode != FullSelection) {
151     _selectionMode = FullSelection;
152     update();
153   }
154 }
155
156 void ChatItem::clearSelection() {
157   _selectionMode = NoSelection;
158   update();
159 }
160
161 void ChatItem::continueSelecting(const QPointF &pos) {
162   _selectionMode = PartialSelection;
163   _selectionEnd = posToCursor(pos);
164   update();
165 }
166
167 QList<QRectF> ChatItem::findWords(const QString &searchWord, Qt::CaseSensitivity caseSensitive) {
168   QList<QRectF> resultList;
169   const QAbstractItemModel *model_ = model();
170   if(!model_)
171     return resultList;
172
173   QString plainText = model_->data(model_->index(row(), column()), MessageModel::DisplayRole).toString();
174   QList<int> indexList;
175   int searchIdx = plainText.indexOf(searchWord, 0, caseSensitive);
176   while(searchIdx != -1) {
177     indexList << searchIdx;
178     searchIdx = plainText.indexOf(searchWord, searchIdx + 1, caseSensitive);
179   }
180
181   if(!haveLayout())
182     updateLayout();
183
184   foreach(int idx, indexList) {
185     QTextLine line = layout()->lineForTextPosition(idx);
186     qreal x = line.cursorToX(idx);
187     qreal width = line.cursorToX(idx + searchWord.count()) - x;
188     qreal height = fontMetrics()->lineSpacing();
189     qreal y = height * line.lineNumber();
190     resultList << QRectF(x, y, width, height);
191   }
192   return resultList;
193 }
194
195 void ChatItem::mousePressEvent(QGraphicsSceneMouseEvent *event) {
196   if(event->buttons() == Qt::LeftButton) {
197     chatScene()->setSelectingItem(this);
198     _selectionStart = _selectionEnd = posToCursor(event->pos());
199     _selectionMode = NoSelection; // will be set to PartialSelection by mouseMoveEvent
200     update();
201     event->accept();
202   } else {
203     event->ignore();
204   }
205 }
206
207 void ChatItem::mouseMoveEvent(QGraphicsSceneMouseEvent *event) {
208   if(event->buttons() == Qt::LeftButton) {
209     if(contains(event->pos())) {
210       qint16 end = posToCursor(event->pos());
211       if(end != _selectionEnd) {
212         _selectionEnd = end;
213         _selectionMode = (_selectionStart != _selectionEnd ? PartialSelection : NoSelection);
214         update();
215       }
216     } else {
217       setFullSelection();
218       chatScene()->startGlobalSelection(this, event->pos());
219     }
220     event->accept();
221   } else {
222     event->ignore();
223   }
224 }
225
226 void ChatItem::mouseReleaseEvent(QGraphicsSceneMouseEvent *event) {
227   if(_selectionMode != NoSelection && !event->buttons() & Qt::LeftButton) {
228     _selectionEnd = posToCursor(event->pos());
229     QString selection
230         = data(MessageModel::DisplayRole).toString().mid(qMin(_selectionStart, _selectionEnd), qAbs(_selectionStart - _selectionEnd));
231     chatScene()->putToClipboard(selection);
232     event->accept();
233   } else {
234     event->ignore();
235   }
236 }
237
238 /*************************************************************************************************/
239
240 /*************************************************************************************************/
241
242 void SenderChatItem::updateLayout() {
243   if(!haveLayout()) setLayout(createLayout(QTextOption::WrapAnywhere, Qt::AlignRight));
244   ChatItem::updateLayout();
245 }
246
247 /*************************************************************************************************/
248
249 ContentsChatItem::ContentsChatItem(QAbstractItemModel *model, QGraphicsItem *parent) : ChatItem(column(), model, parent),
250   _layoutData(0)
251 {
252
253 }
254
255 ContentsChatItem::~ContentsChatItem() {
256   delete _layoutData;
257 }
258
259 qreal ContentsChatItem::computeHeight() {
260   int lines = 1;
261   WrapColumnFinder finder(this);
262   while(finder.nextWrapColumn() > 0) lines++;
263   return lines * fontMetrics()->lineSpacing();
264 }
265
266 void ContentsChatItem::setLayout(QTextLayout *layout) {
267   if(!_layoutData) {
268     _layoutData = new LayoutData;
269     _layoutData->clickables = findClickables();
270   } else {
271     delete _layoutData->layout;
272   }
273   _layoutData->layout = layout;
274 }
275
276 void ContentsChatItem::clearLayout() {
277   delete _layoutData;
278   _layoutData = 0;
279 }
280
281 void ContentsChatItem::updateLayout() {
282   if(!haveLayout()) setLayout(createLayout(QTextOption::WrapAnywhere));
283
284   // Now layout
285   ChatLineModel::WrapList wrapList = data(ChatLineModel::WrapListRole).value<ChatLineModel::WrapList>();
286   if(!wrapList.count()) return; // empty chatitem
287
288   qreal h = 0;
289   WrapColumnFinder finder(this);
290   layout()->beginLayout();
291   forever {
292     QTextLine line = layout()->createLine();
293     if(!line.isValid())
294       break;
295
296     int col = finder.nextWrapColumn();
297     line.setNumColumns(col >= 0 ? col - line.textStart() : layout()->text().length());
298     line.setPosition(QPointF(0, h));
299     h += line.height() + fontMetrics()->leading();
300   }
301   layout()->endLayout();
302 }
303
304 // NOTE: This method is not threadsafe and not reentrant!
305 //       (RegExps are not constant while matching, and they are static here for efficiency)
306 QList<ContentsChatItem::Clickable> ContentsChatItem::findClickables() {
307   // For matching URLs
308   static QString urlEnd("(?:>|[,.;:]?\\s|\\b)");
309   static QString urlChars("(?:[\\w\\-~@/?&=+$()!%#]|[,.;:]\\w)");
310
311   static QRegExp regExp[] = {
312     // URL
313     QRegExp(QString("((?:(?:https?://|s?ftp://|irc://|mailto:)|www)%1+)%2").arg(urlChars, urlEnd)),
314
315     // Channel name
316     // We don't match for channel names starting with + or &, because that gives us a lot of false positives.
317     QRegExp("((?:#|![A-Z0-9]{5})[^,:\\s]+(?::[^,:\\s]+)?)\\b")
318
319     // TODO: Nicks, we'll need a filtering for only matching known nicknames further down if we do this
320   };
321
322   static const int regExpCount = 2;  // number of regexps in the array above
323
324   qint16 matches[] = { 0, 0, 0 };
325   qint16 matchEnd[] = { 0, 0, 0 };
326
327   QString str = data(ChatLineModel::DisplayRole).toString();
328
329   QList<Clickable> result;
330   qint16 idx = 0;
331   qint16 minidx;
332   int type = -1;
333
334   do {
335     type = -1;
336     minidx = str.length();
337     for(int i = 0; i < regExpCount; i++) {
338       if(matches[i] < 0 || idx < matchEnd[i] || matchEnd[i] >= str.length()) continue;
339       matches[i] = str.indexOf(regExp[i], qMax(matchEnd[i], idx));
340       if(matches[i] >= 0) {
341         matchEnd[i] = matches[i] + regExp[i].cap(1).length();
342         if(matches[i] < minidx) {
343           minidx = matches[i];
344           type = i;
345         }
346       }
347     }
348     if(type >= 0) {
349       idx = matchEnd[type];
350       result.append(Clickable((Clickable::Type)type, matches[type], matchEnd[type] - matches[type]));
351     }
352   } while(type >= 0);
353
354   /* testing
355   if(!result.isEmpty()) qDebug() << str;
356   foreach(Clickable click, result) {
357     qDebug() << str.mid(click.start, click.length);
358   }
359   */
360   return result;
361 }
362
363 QVector<QTextLayout::FormatRange> ContentsChatItem::additionalFormats() const {
364   // mark a clickable if hovered upon
365   QVector<QTextLayout::FormatRange> fmt;
366   if(layoutData()->currentClickable.isValid()) {
367     Clickable click = layoutData()->currentClickable;
368     QTextLayout::FormatRange f;
369     f.start = click.start;
370     f.length = click.length;
371     f.format.setFontUnderline(true);
372     fmt.append(f);
373   }
374   return fmt;
375 }
376
377 void ContentsChatItem::mouseDoubleClickEvent(QGraphicsSceneMouseEvent *event) {
378   // FIXME dirty and fast hack to make http:// urls klickable
379
380   QRegExp regex("\\b([hf]t{1,2}ps?://[^\\s]+)\\b");
381   QString str = data(ChatLineModel::DisplayRole).toString();
382   int idx = posToCursor(event->pos());
383   int mi = 0;
384   do {
385     mi = regex.indexIn(str, mi);
386     if(mi < 0) break;
387     if(idx >= mi && idx < mi + regex.matchedLength()) {
388       QDesktopServices::openUrl(QUrl(regex.capturedTexts()[1]));
389       break;
390     }
391     mi += regex.matchedLength();
392   } while(mi >= 0);
393   event->accept();
394 }
395
396 void ContentsChatItem::mouseMoveEvent(QGraphicsSceneMouseEvent *event) {
397   // mouse move events always mean we're not hovering anymore...
398   if(layoutData()->currentClickable.isValid()) {
399     layoutData()->currentClickable = Clickable();
400     update();
401   }
402   ChatItem::mouseMoveEvent(event);
403 }
404
405 void ContentsChatItem::hoverEnterEvent(QGraphicsSceneHoverEvent *event) {
406   //layoutData()->currentClickable = event->pos();
407   event->accept();
408 }
409
410 void ContentsChatItem::hoverLeaveEvent(QGraphicsSceneHoverEvent *event) {
411   if(layoutData()->currentClickable.isValid()) {
412     layoutData()->currentClickable = Clickable();
413     update();
414   }
415   event->accept();
416 }
417
418 void ContentsChatItem::hoverMoveEvent(QGraphicsSceneHoverEvent *event) {
419   qint16 idx = posToCursor(event->pos());
420   for(int i = 0; i < layoutData()->clickables.count(); i++) {
421     Clickable click = layoutData()->clickables.at(i);
422     if(idx >= click.start && idx < click.start + click.length) {
423       layoutData()->currentClickable = click;
424       update();
425     }
426   }
427   event->accept();
428 }
429
430 /*************************************************************************************************/
431
432 ContentsChatItem::WrapColumnFinder::WrapColumnFinder(ChatItem *_item)
433   : item(_item),
434     layout(0),
435     wrapList(item->data(ChatLineModel::WrapListRole).value<ChatLineModel::WrapList>()),
436     wordidx(0),
437     lastwrapcol(0),
438     lastwrappos(0),
439     w(0)
440 {
441 }
442
443 ContentsChatItem::WrapColumnFinder::~WrapColumnFinder() {
444   delete layout;
445 }
446
447 qint16 ContentsChatItem::WrapColumnFinder::nextWrapColumn() {
448   while(wordidx < wrapList.count()) {
449     w += wrapList.at(wordidx).width;
450     if(w >= item->width()) {
451       if(lastwrapcol >= wrapList.at(wordidx).start) {
452         // first word, and it doesn't fit
453         if(!line.isValid()) {
454           layout = item->createLayout(QTextOption::NoWrap);
455           layout->beginLayout();
456           line = layout->createLine();
457           line.setLineWidth(item->width());
458           layout->endLayout();
459         }
460         int idx = line.xToCursor(lastwrappos + item->width(), QTextLine::CursorOnCharacter);
461         qreal x = line.cursorToX(idx, QTextLine::Trailing);
462         w = w - wrapList.at(wordidx).width - (x - lastwrappos);
463         lastwrappos = x;
464         lastwrapcol = idx;
465         return idx;
466       }
467       // not the first word, so just wrap before this
468       lastwrapcol = wrapList.at(wordidx).start;
469       lastwrappos = lastwrappos + w - wrapList.at(wordidx).width;
470       w = 0;
471       return lastwrapcol;
472     }
473     w += wrapList.at(wordidx).trailing;
474     wordidx++;
475   }
476   return -1;
477 }