Fixing the remaining crash that might have happened while selecting
[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   _boundingRect.setHeight(h);
67   if(haveLayout()) updateLayout();
68   return h;
69 }
70
71 qreal ChatItem::computeHeight() {
72   return fontMetrics()->lineSpacing(); // only contents can be multi-line
73 }
74
75 QTextLayout *ChatItem::createLayout(QTextOption::WrapMode wrapMode, Qt::Alignment alignment) {
76   QTextLayout *layout = new QTextLayout(data(MessageModel::DisplayRole).toString());
77
78   QTextOption option;
79   option.setWrapMode(wrapMode);
80   option.setAlignment(alignment);
81   layout->setTextOption(option);
82
83   QList<QTextLayout::FormatRange> formatRanges
84          = QtUi::style()->toTextLayoutList(data(MessageModel::FormatRole).value<UiStyle::FormatList>(), layout->text().length());
85   layout->setAdditionalFormats(formatRanges);
86   return layout;
87 }
88
89 void ChatItem::updateLayout() {
90   if(!haveLayout())
91     setLayout(createLayout(QTextOption::WrapAnywhere, Qt::AlignLeft));
92
93   layout()->beginLayout();
94   QTextLine line = layout()->createLine();
95   if(line.isValid()) {
96     line.setLineWidth(width());
97     line.setPosition(QPointF(0,0));
98   }
99   layout()->endLayout();
100 }
101
102 void ChatItem::clearLayout() {
103   delete _layout;
104   _layout = 0;
105 }
106
107 // NOTE: This is not the most time-efficient implementation, but it saves space by not caching unnecessary data
108 //       This is a deliberate trade-off. (-> selectFmt creation, data() call)
109 void ChatItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) {
110   Q_UNUSED(option); Q_UNUSED(widget);
111   if(!haveLayout()) updateLayout();
112   painter->setClipRect(boundingRect()); // no idea why QGraphicsItem clipping won't work
113   //if(_selectionMode == FullSelection) {
114     //painter->save();
115     //painter->fillRect(boundingRect(), QApplication::palette().brush(QPalette::Highlight));
116     //painter->restore();
117   //}
118   QVector<QTextLayout::FormatRange> formats;
119   if(_selectionMode != NoSelection) {
120     QTextLayout::FormatRange selectFmt;
121     selectFmt.format.setForeground(QApplication::palette().brush(QPalette::HighlightedText));
122     selectFmt.format.setBackground(QApplication::palette().brush(QPalette::Highlight));
123     if(_selectionMode == PartialSelection) {
124       selectFmt.start = qMin(_selectionStart, _selectionEnd);
125       selectFmt.length = qAbs(_selectionStart - _selectionEnd);
126     } else { // FullSelection
127       selectFmt.start = 0;
128       selectFmt.length = data(MessageModel::DisplayRole).toString().length();
129     }
130     formats.append(selectFmt);
131   }
132   layout()->draw(painter, QPointF(0,0), formats, boundingRect());
133 }
134
135 qint16 ChatItem::posToCursor(const QPointF &pos) {
136   if(pos.y() > height()) return data(MessageModel::DisplayRole).toString().length();
137   if(pos.y() < 0) return 0;
138   if(!haveLayout()) updateLayout();
139   for(int l = layout()->lineCount() - 1; l >= 0; l--) {
140     QTextLine line = layout()->lineAt(l);
141     if(pos.y() >= line.y()) {
142       return line.xToCursor(pos.x(), QTextLine::CursorOnCharacter);
143     }
144   }
145   return 0;
146 }
147
148 void ChatItem::setFullSelection() {
149   if(_selectionMode != FullSelection) {
150     _selectionMode = FullSelection;
151     update();
152   }
153 }
154
155 void ChatItem::clearSelection() {
156   _selectionMode = NoSelection;
157   update();
158 }
159
160 void ChatItem::continueSelecting(const QPointF &pos) {
161   _selectionMode = PartialSelection;
162   _selectionEnd = posToCursor(pos);
163   update();
164 }
165
166 QList<QRectF> ChatItem::findWords(const QString &searchWord, Qt::CaseSensitivity caseSensitive) {
167   QList<QRectF> resultList;
168   const QAbstractItemModel *model_ = model();
169   if(!model_)
170     return resultList;
171
172   QString plainText = model_->data(model_->index(row(), column()), MessageModel::DisplayRole).toString();
173   QList<int> indexList;
174   int searchIdx = plainText.indexOf(searchWord, 0, caseSensitive);
175   while(searchIdx != -1) {
176     indexList << searchIdx;
177     searchIdx = plainText.indexOf(searchWord, searchIdx + 1, caseSensitive);
178   }
179
180   if(!haveLayout())
181     updateLayout();
182
183   foreach(int idx, indexList) {
184     QTextLine line = layout()->lineForTextPosition(idx);
185     qreal x = line.cursorToX(idx);
186     qreal width = line.cursorToX(idx + searchWord.count()) - x;
187     qreal height = fontMetrics()->lineSpacing();
188     qreal y = height * line.lineNumber();
189     resultList << QRectF(x, y, width, height);
190   }
191   return resultList;
192 }
193
194 void ChatItem::mousePressEvent(QGraphicsSceneMouseEvent *event) {
195   if(event->buttons() == Qt::LeftButton) {
196     chatScene()->setSelectingItem(this);
197     _selectionStart = _selectionEnd = posToCursor(event->pos());
198     _selectionMode = NoSelection; // will be set to PartialSelection by mouseMoveEvent
199     update();
200     event->accept();
201   } else {
202     event->ignore();
203   }
204 }
205
206 void ChatItem::mouseMoveEvent(QGraphicsSceneMouseEvent *event) {
207   if(event->buttons() == Qt::LeftButton) {
208     if(contains(event->pos())) {
209       qint16 end = posToCursor(event->pos());
210       if(end != _selectionEnd) {
211         _selectionEnd = end;
212         _selectionMode = (_selectionStart != _selectionEnd ? PartialSelection : NoSelection);
213         update();
214       }
215     } else {
216       setFullSelection();
217       chatScene()->startGlobalSelection(this, event->pos());
218     }
219     event->accept();
220   } else {
221     event->ignore();
222   }
223 }
224
225 void ChatItem::mouseReleaseEvent(QGraphicsSceneMouseEvent *event) {
226   if(_selectionMode != NoSelection && !event->buttons() & Qt::LeftButton) {
227     _selectionEnd = posToCursor(event->pos());
228     QString selection
229         = data(MessageModel::DisplayRole).toString().mid(qMin(_selectionStart, _selectionEnd), qAbs(_selectionStart - _selectionEnd));
230     chatScene()->putToClipboard(selection);
231     event->accept();
232   } else {
233     event->ignore();
234   }
235 }
236
237 /*************************************************************************************************/
238
239 /*************************************************************************************************/
240
241 void SenderChatItem::updateLayout() {
242   if(!haveLayout()) setLayout(createLayout(QTextOption::WrapAnywhere, Qt::AlignRight));
243   ChatItem::updateLayout();
244 }
245
246 /*************************************************************************************************/
247
248 ContentsChatItem::ContentsChatItem(QAbstractItemModel *model, QGraphicsItem *parent) : ChatItem(column(), model, parent),
249   _layoutData(0)
250 {
251
252 }
253
254 ContentsChatItem::~ContentsChatItem() {
255   delete _layoutData;
256 }
257
258 qreal ContentsChatItem::computeHeight() {
259   int lines = 1;
260   WrapColumnFinder finder(this);
261   while(finder.nextWrapColumn() > 0) lines++;
262   return lines * fontMetrics()->lineSpacing();
263 }
264
265 void ContentsChatItem::setLayout(QTextLayout *layout) {
266   if(!_layoutData)
267     _layoutData = new LayoutData;
268   _layoutData->layout = layout;
269 }
270
271 void ContentsChatItem::clearLayout() {
272   delete _layoutData;
273   _layoutData = 0;
274 }
275
276 void ContentsChatItem::updateLayout() {
277   if(!haveLayout()) setLayout(createLayout(QTextOption::WrapAnywhere));
278
279   // Now layout
280   ChatLineModel::WrapList wrapList = data(ChatLineModel::WrapListRole).value<ChatLineModel::WrapList>();
281   if(!wrapList.count()) return; // empty chatitem
282
283   qreal h = 0;
284   WrapColumnFinder finder(this);
285   layout()->beginLayout();
286   forever {
287     QTextLine line = layout()->createLine();
288     if(!line.isValid())
289       break;
290
291     int col = finder.nextWrapColumn();
292     line.setNumColumns(col >= 0 ? col - line.textStart() : layout()->text().length());
293     line.setPosition(QPointF(0, h));
294     h += line.height() + fontMetrics()->leading();
295   }
296   layout()->endLayout();
297 }
298
299 void ContentsChatItem::mouseDoubleClickEvent(QGraphicsSceneMouseEvent *event) {
300   // FIXME dirty and fast hack to make http:// urls klickable
301
302   QRegExp regex("\\b([hf]t{1,2}ps?://[^\\s]+)\\b");
303   QString str = data(ChatLineModel::DisplayRole).toString();
304   int idx = posToCursor(event->pos());
305   int mi = 0;
306   do {
307     mi = regex.indexIn(str, mi);
308     if(mi < 0) break;
309     if(idx >= mi && idx < mi + regex.matchedLength()) {
310       QDesktopServices::openUrl(QUrl(regex.capturedTexts()[1]));
311       break;
312     }
313     mi += regex.matchedLength();
314   } while(mi >= 0);
315   event->accept();
316 }
317
318 void ContentsChatItem::hoverEnterEvent(QGraphicsSceneHoverEvent *event) {
319   //qDebug() << (void*)this << "entering";
320   event->ignore();
321 }
322
323 void ContentsChatItem::hoverLeaveEvent(QGraphicsSceneHoverEvent *event) {
324   //qDebug() << (void*)this << "leaving";
325   event->ignore();
326 }
327
328 void ContentsChatItem::hoverMoveEvent(QGraphicsSceneHoverEvent *event) {
329   //qDebug() << (void*)this << event->pos();
330   event->ignore();
331 }
332
333 /*************************************************************************************************/
334
335 ContentsChatItem::WrapColumnFinder::WrapColumnFinder(ChatItem *_item) : item(_item) {
336   wrapList = item->data(ChatLineModel::WrapListRole).value<ChatLineModel::WrapList>();
337   wordidx = 0;
338   layout = 0;
339   lastwrapcol = 0;
340   lastwrappos = 0;
341   w = 0;
342 }
343
344 ContentsChatItem::WrapColumnFinder::~WrapColumnFinder() {
345   delete layout;
346 }
347
348 qint16 ContentsChatItem::WrapColumnFinder::nextWrapColumn() {
349   while(wordidx < wrapList.count()) {
350     w += wrapList.at(wordidx).width;
351     if(w >= item->width()) {
352       if(lastwrapcol >= wrapList.at(wordidx).start) {
353         // first word, and it doesn't fit
354         if(!line.isValid()) {
355           layout = item->createLayout(QTextOption::NoWrap);
356           layout->beginLayout();
357           line = layout->createLine();
358           line.setLineWidth(item->width());
359           layout->endLayout();
360         }
361         int idx = line.xToCursor(lastwrappos + item->width(), QTextLine::CursorOnCharacter);
362         qreal x = line.cursorToX(idx, QTextLine::Trailing);
363         w = w - wrapList.at(wordidx).width - (x - lastwrappos);
364         lastwrappos = x;
365         lastwrapcol = idx;
366         return idx;
367       }
368       // not the first word, so just wrap before this
369       lastwrapcol = wrapList.at(wordidx).start;
370       lastwrappos = lastwrappos + w - wrapList.at(wordidx).width;
371       w = 0;
372       return lastwrapcol;
373     }
374     w += wrapList.at(wordidx).trailing;
375     wordidx++;
376   }
377   return -1;
378 }