2297983be2af8217c3e9d72f07c49495515003cf
[quassel.git] / src / qtui / chatitem.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-09 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 #include <QMenu>
30
31 #include "buffermodel.h"
32 #include "bufferview.h"
33 #include "chatitem.h"
34 #include "chatlinemodel.h"
35 #include "contextmenuactionprovider.h"
36 #include "iconloader.h"
37 #include "mainwin.h"
38 #include "qtui.h"
39 #include "qtuistyle.h"
40
41 ChatItem::ChatItem(const qreal &width, const qreal &height, const QPointF &pos, QGraphicsItem *parent)
42   : QGraphicsItem(parent),
43     _boundingRect(0, 0, width, height),
44     _selectionMode(NoSelection),
45     _selectionStart(-1)
46 {
47   setAcceptHoverEvents(true);
48   setZValue(20);
49   setPos(pos);
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 qint16 ChatItem::posToCursor(const QPointF &pos) const {
62   if(pos.y() > height()) return data(MessageModel::DisplayRole).toString().length();
63   if(pos.y() < 0) return 0;
64
65   QTextLayout layout;
66   initLayout(&layout);
67   for(int l = layout.lineCount() - 1; l >= 0; l--) {
68     QTextLine line = layout.lineAt(l);
69     if(pos.y() >= line.y()) {
70       return line.xToCursor(pos.x(), QTextLine::CursorOnCharacter);
71     }
72   }
73   return 0;
74 }
75
76 void ChatItem::initLayoutHelper(QTextLayout *layout, QTextOption::WrapMode wrapMode, Qt::Alignment alignment) const {
77   Q_ASSERT(layout);
78
79   layout->setText(data(MessageModel::DisplayRole).toString());
80
81   QTextOption option;
82   option.setWrapMode(wrapMode);
83   option.setAlignment(alignment);
84   layout->setTextOption(option);
85
86   QList<QTextLayout::FormatRange> formatRanges
87          = QtUi::style()->toTextLayoutList(data(MessageModel::FormatRole).value<UiStyle::FormatList>(), layout->text().length(), data(ChatLineModel::MsgLabelRole).toUInt());
88   layout->setAdditionalFormats(formatRanges);
89 }
90
91 void ChatItem::doLayout(QTextLayout *layout) const {
92   layout->beginLayout();
93   QTextLine line = layout->createLine();
94   if(line.isValid()) {
95     line.setLineWidth(width());
96     line.setPosition(QPointF(0,0));
97   }
98   layout->endLayout();
99 }
100
101 void ChatItem::paintBackground(QPainter *painter) {
102   painter->setClipRect(boundingRect()); // no idea why QGraphicsItem clipping won't work
103
104   QVariant bgBrush;
105   if(_selectionMode == FullSelection)
106     bgBrush = data(ChatLineModel::SelectedBackgroundRole);
107   else
108     bgBrush = data(ChatLineModel::BackgroundRole);
109   if(bgBrush.isValid())
110     painter->fillRect(boundingRect(), bgBrush.value<QBrush>());
111 }
112
113 // NOTE: This is not the most time-efficient implementation, but it saves space by not caching unnecessary data
114 //       This is a deliberate trade-off. (-> selectFmt creation, data() call)
115 void ChatItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) {
116   Q_UNUSED(option); Q_UNUSED(widget);
117   paintBackground(painter);
118
119   QTextLayout layout;
120   initLayout(&layout);
121   layout.draw(painter, QPointF(0,0), selectionFormats(), boundingRect());
122
123   //  layout()->draw(painter, QPointF(0,0), formats, boundingRect());
124
125   // Debuging Stuff
126   // uncomment partially or all of the following stuff:
127   //
128   // 0) alternativ painter color for debug stuff
129 //   if(row() % 2)
130 //     painter->setPen(Qt::red);
131 //   else
132 //     painter->setPen(Qt::blue);
133   // 1) draw wordwrap points in the first line
134 //   if(column() == 2) {
135 //     ChatLineModel::WrapList wrapList = data(ChatLineModel::WrapListRole).value<ChatLineModel::WrapList>();
136 //     foreach(ChatLineModel::Word word, wrapList) {
137 //       if(word.endX > width())
138 //      break;
139 //       painter->drawLine(word.endX, 0, word.endX, height());
140 //     }
141 //   }
142   // 2) draw MsgId over the time column
143 //   if(column() == 0) {
144 //     QString msgIdString = QString::number(data(MessageModel::MsgIdRole).value<MsgId>().toInt());
145 //     QPointF bottomPoint = boundingRect().bottomLeft();
146 //     bottomPoint.ry() -= 2;
147 //     painter->drawText(bottomPoint, msgIdString);
148 //   }
149   // 3) draw bounding rect
150 //   painter->drawRect(_boundingRect.adjusted(0, 0, -1, -1));
151 }
152
153 QVector<QTextLayout::FormatRange> ChatItem::selectionFormats() const {
154   if(!hasSelection())
155     return QVector<QTextLayout::FormatRange>();
156
157   int start, end;
158   if(_selectionMode == FullSelection) {
159     start = 0;
160     end = data(MessageModel::DisplayRole).toString().length();
161   } else {
162     start = qMin(_selectionStart, _selectionEnd);
163     end = qMax(_selectionStart, _selectionEnd);
164   }
165
166   UiStyle::FormatList fmtList = data(MessageModel::FormatRole).value<UiStyle::FormatList>();
167
168   while(fmtList.count() >=2 && fmtList.at(1).first <= start)
169     fmtList.removeFirst();
170
171   fmtList.first().first = start;
172
173   while(fmtList.count() >= 2 && fmtList.last().first >= end)
174     fmtList.removeLast();
175
176   return QtUi::style()->toTextLayoutList(fmtList, end, UiStyle::Selected|data(ChatLineModel::MsgLabelRole).toUInt()).toVector();
177 }
178
179 bool ChatItem::hasSelection() const {
180   if(_selectionMode == NoSelection)
181     return false;
182   if(_selectionMode == FullSelection)
183     return true;
184   // partial
185   return _selectionStart != _selectionEnd;
186 }
187
188 QString ChatItem::selection() const {
189   if(_selectionMode == FullSelection)
190     return data(MessageModel::DisplayRole).toString();
191   if(_selectionMode == PartialSelection)
192     return data(MessageModel::DisplayRole).toString().mid(qMin(_selectionStart, _selectionEnd), qAbs(_selectionStart - _selectionEnd));
193   return QString();
194 }
195
196 void ChatItem::setSelection(SelectionMode mode, qint16 start, qint16 end) {
197   _selectionMode = mode;
198   _selectionStart = start;
199   _selectionEnd = end;
200   update();
201 }
202
203 void ChatItem::setFullSelection() {
204   if(_selectionMode != FullSelection) {
205     _selectionMode = FullSelection;
206     update();
207   }
208 }
209
210 void ChatItem::clearSelection() {
211   if(_selectionMode != NoSelection) {
212     _selectionMode = NoSelection;
213     update();
214   }
215 }
216
217 void ChatItem::continueSelecting(const QPointF &pos) {
218   _selectionMode = PartialSelection;
219   _selectionEnd = posToCursor(pos);
220   update();
221 }
222
223 bool ChatItem::isPosOverSelection(const QPointF &pos) const {
224   if(_selectionMode == FullSelection)
225     return true;
226   if(_selectionMode == PartialSelection) {
227     int cursor = posToCursor(pos);
228     return cursor >= qMin(_selectionStart, _selectionEnd) && cursor <= qMax(_selectionStart, _selectionEnd);
229   }
230   return false;
231 }
232
233 QList<QRectF> ChatItem::findWords(const QString &searchWord, Qt::CaseSensitivity caseSensitive) {
234   QList<QRectF> resultList;
235   const QAbstractItemModel *model_ = model();
236   if(!model_)
237     return resultList;
238
239   QString plainText = model_->data(model_->index(row(), column()), MessageModel::DisplayRole).toString();
240   QList<int> indexList;
241   int searchIdx = plainText.indexOf(searchWord, 0, caseSensitive);
242   while(searchIdx != -1) {
243     indexList << searchIdx;
244     searchIdx = plainText.indexOf(searchWord, searchIdx + 1, caseSensitive);
245   }
246
247   QTextLayout layout;
248   initLayout(&layout);
249   foreach(int idx, indexList) {
250     QTextLine line = layout.lineForTextPosition(idx);
251     qreal x = line.cursorToX(idx);
252     qreal width = line.cursorToX(idx + searchWord.count()) - x;
253     qreal height = line.height();
254     qreal y = height * line.lineNumber();
255     resultList << QRectF(x, y, width, height);
256   }
257
258   return resultList;
259 }
260
261 void ChatItem::handleClick(const QPointF &pos, ChatScene::ClickMode clickMode) {
262   // single clicks are already handled by the scene (for clearing the selection)
263   if(clickMode == ChatScene::DragStartClick) {
264     chatScene()->setSelectingItem(this);
265     _selectionStart = _selectionEnd = posToCursor(pos);
266     _selectionMode = NoSelection; // will be set to PartialSelection by mouseMoveEvent
267     update();
268   }
269 }
270
271 void ChatItem::mouseMoveEvent(QGraphicsSceneMouseEvent *event) {
272   if(event->buttons() == Qt::LeftButton) {
273     if(contains(event->pos())) {
274       qint16 end = posToCursor(event->pos());
275       if(end != _selectionEnd) {
276         _selectionEnd = end;
277         _selectionMode = (_selectionStart != _selectionEnd ? PartialSelection : NoSelection);
278         update();
279       }
280     } else {
281       setFullSelection();
282       chatScene()->startGlobalSelection(this, event->pos());
283     }
284     event->accept();
285   } else {
286     event->ignore();
287   }
288 }
289
290 void ChatItem::mousePressEvent(QGraphicsSceneMouseEvent *event) {
291   if(event->buttons() == Qt::LeftButton)
292     event->accept();
293   else
294     event->ignore();
295 }
296
297 void ChatItem::mouseReleaseEvent(QGraphicsSceneMouseEvent *event) {
298   if(_selectionMode != NoSelection && event->button() == Qt::LeftButton) {
299     chatScene()->selectionToClipboard(QClipboard::Selection);
300     event->accept();
301   } else
302     event->ignore();
303 }
304
305 void ChatItem::addActionsToMenu(QMenu *menu, const QPointF &pos) {
306   Q_UNUSED(pos);
307
308   GraphicalUi::contextMenuActionProvider()->addActions(menu, chatScene()->filter(), data(MessageModel::BufferIdRole).value<BufferId>());
309 }
310
311 // ************************************************************
312 // SenderChatItem
313 // ************************************************************
314
315 void SenderChatItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) {
316   Q_UNUSED(option); Q_UNUSED(widget);
317   paintBackground(painter);
318
319   QTextLayout layout;
320   initLayout(&layout);
321   qreal layoutWidth = layout.minimumWidth();
322   qreal offset = 0;
323   if(chatScene()->senderCutoffMode() == ChatScene::CutoffLeft)
324     offset = qMin(width() - layoutWidth, (qreal)0);
325   else
326     offset = qMax(layoutWidth - width(), (qreal)0);
327
328   if(layoutWidth > width()) {
329     // Draw a nice gradient for longer items
330     // Qt's text drawing with a gradient brush sucks, so we use an alpha-channeled pixmap instead
331     QPixmap pixmap(layout.boundingRect().toRect().size());
332     pixmap.fill(Qt::transparent);
333     QPainter pixPainter(&pixmap);
334     layout.draw(&pixPainter, QPointF(qMax(offset, (qreal)0), 0), selectionFormats());
335     pixPainter.end();
336
337     // Create alpha channel mask
338     QPixmap mask(pixmap.size());
339     QPainter maskPainter(&mask);
340     QLinearGradient gradient;
341     if(offset < 0) {
342       gradient.setStart(0, 0);
343       gradient.setFinalStop(12, 0);
344       gradient.setColorAt(0, Qt::black);
345       gradient.setColorAt(1, Qt::white);
346     } else {
347       gradient.setStart(width()-10, 0);
348       gradient.setFinalStop(width(), 0);
349       gradient.setColorAt(0, Qt::white);
350       gradient.setColorAt(1, Qt::black);
351     }
352     maskPainter.fillRect(boundingRect(), gradient);
353     pixmap.setAlphaChannel(mask);
354     painter->drawPixmap(0, 0, pixmap);
355   } else {
356     layout.draw(painter, QPointF(0,0), selectionFormats(), boundingRect());
357   }
358 }
359
360 // ************************************************************
361 // ContentsChatItem
362 // ************************************************************
363
364 ContentsChatItem::ActionProxy ContentsChatItem::_actionProxy;
365
366 ContentsChatItem::ContentsChatItem(const qreal &width, const QPointF &pos, QGraphicsItem *parent)
367   : ChatItem(0, 0, pos, parent),
368     _data(0)
369 {
370   setGeometryByWidth(width);
371 }
372
373 QFontMetricsF *ContentsChatItem::fontMetrics() const {
374   return QtUi::style()->fontMetrics(data(ChatLineModel::FormatRole).value<UiStyle::FormatList>().at(0).second);
375 }
376
377 ContentsChatItem::~ContentsChatItem() {
378   delete _data;
379 }
380
381 ContentsChatItemPrivate *ContentsChatItem::privateData() const {
382   if(!_data) {
383     ContentsChatItem *that = const_cast<ContentsChatItem *>(this);
384     that->_data = new ContentsChatItemPrivate(findClickables(), that);
385   }
386   return _data;
387 }
388
389 qreal ContentsChatItem::setGeometryByWidth(qreal w) {
390   if(w != width()) {
391     prepareGeometryChange();
392     setWidth(w);
393     // compute height
394     int lines = 1;
395     WrapColumnFinder finder(this);
396     while(finder.nextWrapColumn() > 0)
397       lines++;
398     setHeight(lines * fontMetrics()->lineSpacing());
399     delete _data;
400     _data = 0;
401   }
402   return height();
403 }
404
405 void ContentsChatItem::doLayout(QTextLayout *layout) const {
406   ChatLineModel::WrapList wrapList = data(ChatLineModel::WrapListRole).value<ChatLineModel::WrapList>();
407   if(!wrapList.count()) return; // empty chatitem
408
409   qreal h = 0;
410   WrapColumnFinder finder(this);
411   layout->beginLayout();
412   forever {
413     QTextLine line = layout->createLine();
414     if(!line.isValid())
415       break;
416
417     int col = finder.nextWrapColumn();
418     line.setNumColumns(col >= 0 ? col - line.textStart() : layout->text().length());
419     line.setPosition(QPointF(0, h));
420     h += fontMetrics()->lineSpacing();
421   }
422   layout->endLayout();
423 }
424
425 // NOTE: This method is not threadsafe and not reentrant!
426 //       (RegExps are not constant while matching, and they are static here for efficiency)
427 QList<ContentsChatItem::Clickable> ContentsChatItem::findClickables() const {
428   // For matching URLs
429   static QString urlEnd("(?:>|[,.;:\"]*\\s|\\b|$)");
430   static QString urlChars("(?:[,.;:]*[\\w\\-~@/?&=+$()!%#*|{}\\[\\]'^])");
431
432   static QRegExp regExp[] = {
433     // URL
434     // QRegExp(QString("((?:https?://|s?ftp://|irc://|mailto:|www\\.)%1+|%1+\\.[a-z]{2,4}(?:?=/%1+|\\b))%2").arg(urlChars, urlEnd)),
435     QRegExp(QString("((?:(?:mailto:|\\w+://)|www\\.)%1+)%2").arg(urlChars, urlEnd), Qt::CaseInsensitive),
436
437     // Channel name
438     // We don't match for channel names starting with + or &, because that gives us a lot of false positives.
439     QRegExp("((?:#|![A-Z0-9]{5})[^,:\\s]+(?::[^,:\\s]+)?)\\b", Qt::CaseInsensitive)
440
441     // TODO: Nicks, we'll need a filtering for only matching known nicknames further down if we do this
442   };
443
444   static const int regExpCount = 2;  // number of regexps in the array above
445
446   qint16 matches[] = { 0, 0, 0 };
447   qint16 matchEnd[] = { 0, 0, 0 };
448
449   QString str = data(ChatLineModel::DisplayRole).toString();
450
451   QList<Clickable> result;
452   qint16 idx = 0;
453   qint16 minidx;
454   int type = -1;
455
456   do {
457     type = -1;
458     minidx = str.length();
459     for(int i = 0; i < regExpCount; i++) {
460       if(matches[i] < 0 || matchEnd[i] > str.length()) continue;
461       if(idx >= matchEnd[i]) {
462         matches[i] = regExp[i].indexIn(str, qMax(matchEnd[i], idx));
463         if(matches[i] >= 0) matchEnd[i] = matches[i] + regExp[i].cap(1).length();
464       }
465       if(matches[i] >= 0 && matches[i] < minidx) {
466         minidx = matches[i];
467         type = i;
468       }
469     }
470     if(type >= 0) {
471       idx = matchEnd[type];
472       QString match = str.mid(matches[type], matchEnd[type] - matches[type]);
473       if(type == Clickable::Url && str.at(idx-1) == ')') {  // special case: closing paren only matches if we had an open one
474         if(!match.contains('(')) {
475           matchEnd[type]--;
476           match.chop(1);
477         }
478       }
479       if(type == Clickable::Channel) {
480         // don't make clickable if it could be a #number
481         if(QRegExp("^#\\d+$").exactMatch(match))
482           continue;
483       }
484       result.append(Clickable((Clickable::Type)type, matches[type], matchEnd[type] - matches[type]));
485     }
486   } while(type >= 0);
487
488   /* testing
489   if(!result.isEmpty()) qDebug() << str;
490   foreach(Clickable click, result) {
491     qDebug() << str.mid(click.start, click.length);
492   }
493   */
494   return result;
495 }
496
497 ContentsChatItem::Clickable ContentsChatItem::clickableAt(const QPointF &pos) const {
498   qint16 idx = posToCursor(pos);
499   for(int i = 0; i < privateData()->clickables.count(); i++) {
500     Clickable click = privateData()->clickables.at(i);
501     if(idx >= click.start && idx < click.start + click.length)
502       return click;
503   }
504   return Clickable();
505 }
506
507 QVector<QTextLayout::FormatRange> ContentsChatItem::additionalFormats() const {
508   // mark a clickable if hovered upon
509   QVector<QTextLayout::FormatRange> fmt;
510   if(privateData()->currentClickable.isValid()) {
511     Clickable click = privateData()->currentClickable;
512     QTextLayout::FormatRange f;
513     f.start = click.start;
514     f.length = click.length;
515     f.format.setFontUnderline(true);
516     fmt.append(f);
517   }
518   return fmt;
519 }
520
521 void ContentsChatItem::endHoverMode() {
522   if(privateData()) {
523     if(privateData()->currentClickable.isValid()) {
524       setCursor(Qt::ArrowCursor);
525       privateData()->currentClickable = Clickable();
526     }
527     clearWebPreview();
528     update();
529   }
530 }
531
532 void ContentsChatItem::handleClick(const QPointF &pos, ChatScene::ClickMode clickMode) {
533   if(clickMode == ChatScene::SingleClick) {
534     Clickable click = clickableAt(pos);
535     if(click.isValid()) {
536       QString str = data(ChatLineModel::DisplayRole).toString().mid(click.start, click.length);
537       switch(click.type) {
538         case Clickable::Url:
539           if(!str.contains("://"))
540             str = "http://" + str;
541           QDesktopServices::openUrl(QUrl::fromEncoded(str.toUtf8(), QUrl::TolerantMode));
542           break;
543         case Clickable::Channel: {
544           NetworkId networkId = Client::networkModel()->networkId(data(MessageModel::BufferIdRole).value<BufferId>());
545           BufferId bufId = Client::networkModel()->bufferId(networkId, str);
546           if(bufId.isValid()) {
547             QModelIndex targetIdx = Client::networkModel()->bufferIndex(bufId);
548             Client::bufferModel()->switchToBuffer(bufId);
549             if(!targetIdx.data(NetworkModel::ItemActiveRole).toBool())
550               Client::userInput(BufferInfo::fakeStatusBuffer(networkId), QString("/JOIN %1").arg(str));
551           } else
552               Client::userInput(BufferInfo::fakeStatusBuffer(networkId), QString("/JOIN %1").arg(str));
553           break;
554         }
555         default:
556           break;
557       }
558     }
559   } else if(clickMode == ChatScene::DoubleClick) {
560     chatScene()->setSelectingItem(this);
561     setSelectionMode(PartialSelection);
562     Clickable click = clickableAt(pos);
563     if(click.isValid()) {
564       setSelectionStart(click.start);
565       setSelectionEnd(click.start + click.length);
566     } else {
567       // find word boundary
568       QString str = data(ChatLineModel::DisplayRole).toString();
569       qint16 cursor = posToCursor(pos);
570       qint16 start = str.lastIndexOf(QRegExp("\\W"), cursor) + 1;
571       qint16 end = qMin(str.indexOf(QRegExp("\\W"), cursor), str.length());
572       if(end < 0) end = str.length();
573       setSelectionStart(start);
574       setSelectionEnd(end);
575     }
576     update();
577   } else if(clickMode == ChatScene::TripleClick) {
578     setSelection(PartialSelection, 0, data(ChatLineModel::DisplayRole).toString().length());
579   }
580   ChatItem::handleClick(pos, clickMode);
581 }
582
583 void ContentsChatItem::mouseMoveEvent(QGraphicsSceneMouseEvent *event) {
584   // mouse move events always mean we're not hovering anymore...
585   endHoverMode();
586   ChatItem::mouseMoveEvent(event);
587 }
588
589 void ContentsChatItem::hoverLeaveEvent(QGraphicsSceneHoverEvent *event) {
590   endHoverMode();
591   event->accept();
592 }
593
594 void ContentsChatItem::hoverMoveEvent(QGraphicsSceneHoverEvent *event) {
595   bool onClickable = false;
596   Clickable click = clickableAt(event->pos());
597   if(click.isValid()) {
598     if(click.type == Clickable::Url) {
599       onClickable = true;
600       showWebPreview(click);
601     } else if(click.type == Clickable::Channel) {
602       QString name = data(ChatLineModel::DisplayRole).toString().mid(click.start, click.length);
603       // don't make clickable if it's our own name
604       BufferId myId = data(MessageModel::BufferIdRole).value<BufferId>();
605       if(Client::networkModel()->bufferName(myId) != name)
606         onClickable = true;
607     }
608     if(onClickable) {
609       setCursor(Qt::PointingHandCursor);
610       privateData()->currentClickable = click;
611       update();
612       return;
613     }
614   }
615   if(!onClickable) endHoverMode();
616   event->accept();
617 }
618
619 void ContentsChatItem::addActionsToMenu(QMenu *menu, const QPointF &pos) {
620   if(privateData()->currentClickable.isValid()) {
621     Clickable click = privateData()->currentClickable;
622     switch(click.type) {
623       case Clickable::Url:
624         privateData()->activeClickable = click;
625         menu->addAction(SmallIcon("edit-copy"), tr("Copy Link Address"),
626                          &_actionProxy, SLOT(copyLinkToClipboard()))->setData(QVariant::fromValue<void *>(this));
627         break;
628       case Clickable::Channel: {
629         // Hide existing menu actions, they confuse us when right-clicking on a clickable
630         foreach(QAction *action, menu->actions())
631           action->setVisible(false);
632         QString name = data(ChatLineModel::DisplayRole).toString().mid(click.start, click.length);
633         GraphicalUi::contextMenuActionProvider()->addActions(menu, chatScene()->filter(), data(MessageModel::BufferIdRole).value<BufferId>(), name);
634         break;
635       }
636       default:
637         break;
638     }
639   } else {
640     // Buffer-specific actions
641     ChatItem::addActionsToMenu(menu, pos);
642   }
643 }
644
645 void ContentsChatItem::copyLinkToClipboard() {
646   Clickable click = privateData()->activeClickable;
647   if(click.isValid() && click.type == Clickable::Url) {
648     QString url = data(ChatLineModel::DisplayRole).toString().mid(click.start, click.length);
649     if(!url.contains("://"))
650       url = "http://" + url;
651     chatScene()->stringToClipboard(url);
652   }
653 }
654
655 /******** WEB PREVIEW *****************************************************************************/
656
657 void ContentsChatItem::showWebPreview(const Clickable &click) {
658 #ifndef HAVE_WEBKIT
659   Q_UNUSED(click);
660 #else
661   QTextLayout layout;
662   initLayout(&layout);
663   QTextLine line = layout.lineForTextPosition(click.start);
664   qreal x = line.cursorToX(click.start);
665   qreal width = line.cursorToX(click.start + click.length) - x;
666   qreal height = line.height();
667   qreal y = height * line.lineNumber();
668
669   QPointF topLeft = scenePos() + QPointF(x, y);
670   QRectF urlRect = QRectF(topLeft.x(), topLeft.y(), width, height);
671
672   QString url = data(ChatLineModel::DisplayRole).toString().mid(click.start, click.length);
673   if(!url.contains("://"))
674     url = "http://" + url;
675   chatScene()->loadWebPreview(this, url, urlRect);
676 #endif
677 }
678
679 void ContentsChatItem::clearWebPreview() {
680 #ifdef HAVE_WEBKIT
681   chatScene()->clearWebPreview(this);
682 #endif
683 }
684
685 /*************************************************************************************************/
686
687 ContentsChatItem::WrapColumnFinder::WrapColumnFinder(const ChatItem *_item)
688   : item(_item),
689     wrapList(item->data(ChatLineModel::WrapListRole).value<ChatLineModel::WrapList>()),
690     wordidx(0),
691     lineCount(0),
692     choppedTrailing(0)
693 {
694 }
695
696 ContentsChatItem::WrapColumnFinder::~WrapColumnFinder() {
697 }
698
699 qint16 ContentsChatItem::WrapColumnFinder::nextWrapColumn() {
700   if(wordidx >= wrapList.count())
701     return -1;
702
703   lineCount++;
704   qreal targetWidth = lineCount * item->width() + choppedTrailing;
705
706   qint16 start = wordidx;
707   qint16 end = wrapList.count() - 1;
708
709   // check if the whole line fits
710   if(wrapList.at(end).endX <= targetWidth) //  || start == end)
711     return -1;
712
713   // check if we have a very long word that needs inter word wrap
714   if(wrapList.at(start).endX > targetWidth) {
715     if(!line.isValid()) {
716       item->initLayoutHelper(&layout, QTextOption::NoWrap);
717       layout.beginLayout();
718       line = layout.createLine();
719       layout.endLayout();
720     }
721     return line.xToCursor(targetWidth, QTextLine::CursorOnCharacter);
722   }
723
724   while(true) {
725     if(start + 1 == end) {
726       wordidx = end;
727       const ChatLineModel::Word &lastWord = wrapList.at(start); // the last word we were able to squeeze in
728
729       // both cases should be cought preliminary
730       Q_ASSERT(lastWord.endX <= targetWidth); // ensure that "start" really fits in
731       Q_ASSERT(end < wrapList.count()); // ensure that start isn't the last word
732
733       choppedTrailing += lastWord.trailing - (targetWidth - lastWord.endX);
734       return wrapList.at(wordidx).start;
735     }
736
737     qint16 pivot = (end + start) / 2;
738     if(wrapList.at(pivot).endX > targetWidth) {
739       end = pivot;
740     } else {
741       start = pivot;
742     }
743   }
744   Q_ASSERT(false);
745   return -1;
746 }
747
748 /*************************************************************************************************/
749