8d15b92cd6c97cdcfdaa8385dfa36e0ea5e12c5c
[quassel.git] / src / qtui / chatlinemodelitem.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 <QFontMetrics>
22 #include <QTextBoundaryFinder>
23
24 #include "chatlinemodelitem.h"
25 #include "chatlinemodel.h"
26 #include "qtui.h"
27 #include "uistyle.h"
28
29 ChatLineModelItem::ChatLineModelItem(const Message &msg) : MessageModelItem(msg) {
30   QtUiStyle::StyledMessage m = QtUi::style()->styleMessage(msg);
31
32   _timestamp.plainText = m.timestamp.plainText;
33   _sender.plainText = m.sender.plainText;
34   _contents.plainText = m.contents.plainText;
35
36   _timestamp.formatList = m.timestamp.formatList;
37   _sender.formatList = m.sender.formatList;
38   _contents.formatList = m.contents.formatList;
39
40   computeWordList();
41 }
42
43
44 QVariant ChatLineModelItem::data(int column, int role) const {
45   const ChatLinePart *part;
46
47   switch(column) {
48     case ChatLineModel::TimestampColumn: part = &_timestamp; break;
49     case ChatLineModel::SenderColumn:    part = &_sender; break;
50     case ChatLineModel::ContentsColumn:      part = &_contents; break;
51     default: return MessageModelItem::data(column, role);
52   }
53
54   switch(role) {
55     case ChatLineModel::DisplayRole: return part->plainText;
56     case ChatLineModel::FormatRole:  return QVariant::fromValue<UiStyle::FormatList>(part->formatList);
57   }
58
59   return MessageModelItem::data(column, role);
60 }
61
62 bool ChatLineModelItem::setData(int column, const QVariant &value, int role) {
63   return false;
64 }
65
66 void ChatLineModelItem::computeWordList() {
67   QList<QPair<quint16, quint16> > wplist;  // use a temp list which we'll later copy into a QVector for efficiency
68   QTextBoundaryFinder finder(QTextBoundaryFinder::Word, _contents.plainText);
69   int idx;
70   int flistidx = -1;
71   int fmtend = -1;
72   QFontMetricsF *metrics;
73   QPair<quint16, quint16> wp(0, 0);
74   do {
75     idx = finder.toNextBoundary();
76     if(idx < 0) idx = _contents.plainText.length();
77     else if(finder.boundaryReasons() != QTextBoundaryFinder::StartWord) continue;
78     int start = wp.first;
79     while(start < idx) {
80       if(fmtend <= start) {
81         flistidx++;
82         fmtend = _contents.formatList.count() > flistidx+1 ? _contents.formatList[flistidx+1].first
83                                                            : _contents.plainText.length();
84         metrics = QtUi::style()->fontMetrics(_contents.formatList[flistidx].second);
85         Q_ASSERT(fmtend > start);
86       }
87       int i = qMin(idx, fmtend);
88       wp.second += metrics->width(_contents.plainText.mid(start, i - start));
89       start = i;
90     }
91     wplist.append(wp);
92     wp.first = idx;
93   } while(idx < _contents.plainText.length());
94
95   // A QVector needs less space than a QList
96   _wordList.resize(wplist.count());
97   for(int i = 0; i < wplist.count(); i++) {
98     _wordList[i] = wplist.at(i);
99   }
100 }
101