aebde9dd951b49cd163649a1b3495cbec39af8e9
[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, oldidx;
77   bool wordStart = false; bool wordEnd = false;
78   Mode mode = SearchEnd;
79   ChatLineModel::Word word;
80   word.start = 0;
81   int wordstartx = 0;
82
83   QTextLayout layout(_contents.plainText);
84   QTextOption option;
85   option.setWrapMode(QTextOption::NoWrap);
86   layout.setTextOption(option);
87
88   layout.setAdditionalFormats(QtUi::style()->toTextLayoutList(_contents.formatList, _contents.plainText.length()));
89   layout.beginLayout();
90   QTextLine line = layout.createLine();
91   line.setNumColumns(_contents.plainText.length());
92   layout.endLayout();
93
94   do {
95     idx = finder.toNextBoundary();
96     if(idx < 0) idx = _contents.plainText.length();
97     wordStart = finder.boundaryReasons().testFlag(QTextBoundaryFinder::StartWord);
98     wordEnd = finder.boundaryReasons().testFlag(QTextBoundaryFinder::EndWord);
99
100     //qDebug() << wordStart << wordEnd << _contents.plainText.left(idx) << _contents.plainText.mid(idx);
101
102     if(mode == SearchEnd || !wordStart && wordEnd) {
103       if(wordStart || !wordEnd) continue;
104       oldidx = idx;
105       mode = SearchStart;
106       continue;
107     }
108     int wordendx = line.cursorToX(oldidx);
109     int trailingendx = line.cursorToX(idx);
110     word.width = wordendx - wordstartx;
111     word.trailing = trailingendx - wordendx;
112     wordstartx = trailingendx;
113     wplist.append(word);
114
115     if(wordStart) {
116       word.start = idx;
117       mode = SearchEnd;
118     }
119   } while(finder.isAtBoundary());
120
121   // A QVector needs less space than a QList
122   _wrapList.resize(wplist.count());
123   for(int i = 0; i < wplist.count(); i++) {
124     _wrapList[i] = wplist.at(i);
125   }
126 }
127