73b153301829b5ad1dc4c7e19158fe59efc4b442
[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   computeWrapList();
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:
56       return part->plainText;
57     case ChatLineModel::FormatRole:
58       return QVariant::fromValue<UiStyle::FormatList>(part->formatList);
59     case ChatLineModel::WrapListRole:
60       if(column != ChatLineModel::ContentsColumn) return QVariant();
61       return QVariant::fromValue<ChatLineModel::WrapList>(_wrapList);
62   }
63
64   return MessageModelItem::data(column, role);
65 }
66
67 bool ChatLineModelItem::setData(int column, const QVariant &value, int role) {
68   return false;
69 }
70
71 void ChatLineModelItem::computeWrapList() {
72   enum Mode { SearchStart, SearchEnd };
73
74   QList<ChatLineModel::Word> wplist;  // use a temp list which we'll later copy into a QVector for efficiency
75   QTextBoundaryFinder finder(QTextBoundaryFinder::Word, _contents.plainText);
76   int idx;
77   int oldidx = 0;
78   bool wordStart = false; bool wordEnd = false;
79   Mode mode = SearchEnd;
80   ChatLineModel::Word word;
81   word.start = 0;
82   int wordstartx = 0;
83
84   QTextLayout layout(_contents.plainText);
85   QTextOption option;
86   option.setWrapMode(QTextOption::NoWrap);
87   layout.setTextOption(option);
88
89   layout.setAdditionalFormats(QtUi::style()->toTextLayoutList(_contents.formatList, _contents.plainText.length()));
90   layout.beginLayout();
91   QTextLine line = layout.createLine();
92   line.setNumColumns(_contents.plainText.length());
93   layout.endLayout();
94
95   do {
96     idx = finder.toNextBoundary();
97     if(idx < 0) {
98       idx = _contents.plainText.length();
99       wordStart = false;
100       wordEnd = false;
101       mode = SearchStart;
102     } else {
103       wordStart = finder.boundaryReasons().testFlag(QTextBoundaryFinder::StartWord);
104       wordEnd = finder.boundaryReasons().testFlag(QTextBoundaryFinder::EndWord);
105     }
106
107     //if(flg) qDebug() << idx << mode << wordStart << wordEnd << _contents.plainText.left(idx) << _contents.plainText.mid(idx);
108
109     if(mode == SearchEnd || (!wordStart && wordEnd)) {
110       if(wordStart || !wordEnd) continue;
111       oldidx = idx;
112       mode = SearchStart;
113       continue;
114     }
115     int wordendx = line.cursorToX(oldidx);
116     int trailingendx = line.cursorToX(idx);
117     word.width = wordendx - wordstartx;
118     word.trailing = trailingendx - wordendx;
119     wordstartx = trailingendx;
120     wplist.append(word);
121
122     if(wordStart) {
123       word.start = idx;
124       mode = SearchEnd;
125     }
126   } while(finder.isAtBoundary());
127
128   // A QVector needs less space than a QList
129   _wrapList.resize(wplist.count());
130   for(int i = 0; i < wplist.count(); i++) {
131     _wrapList[i] = wplist.at(i);
132   }
133 }
134