fixing a typo in an include and properly making qwebkit optional
[quassel.git] / src / qtui / chatline.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 <QDateTime>
22 #include <QString>
23 #include <QtGui>
24
25 #include "bufferinfo.h"
26 #include "buffersyncer.h"
27 #include "client.h"
28 #include "chatitem.h"
29 #include "chatline.h"
30 #include "columnhandleitem.h"
31 #include "messagemodel.h"
32 #include "networkmodel.h"
33 #include "qtui.h"
34 #include "qtuisettings.h"
35 #include "qtuistyle.h"
36
37 ChatLine::ChatLine(int row, QAbstractItemModel *model,
38                    const qreal &width,
39                    const qreal &timestampWidth, const qreal &senderWidth, const qreal &contentsWidth,
40                    const QPointF &senderPos, const QPointF &contentsPos,
41                    QGraphicsItem *parent)
42   : QGraphicsItem(parent),
43     _row(row), // needs to be set before the items
44     _model(model),
45     _contentsItem(contentsWidth, contentsPos, this),
46     _senderItem(senderWidth, _contentsItem.height(), senderPos, this),
47     _timestampItem(timestampWidth, _contentsItem.height(), this),
48     _width(width),
49     _height(_contentsItem.height()),
50     _selection(0)
51 {
52   Q_ASSERT(model);
53   QModelIndex index = model->index(row, ChatLineModel::ContentsColumn);
54   setZValue(0);
55   setHighlighted(model->data(index, MessageModel::FlagsRole).toInt() & Message::Highlight);
56 }
57
58 ChatItem &ChatLine::item(ChatLineModel::ColumnType column) {
59   switch(column) {
60     case ChatLineModel::TimestampColumn:
61       return _timestampItem;
62     case ChatLineModel::SenderColumn:
63       return _senderItem;
64     case ChatLineModel::ContentsColumn:
65       return _contentsItem;
66   default:
67     return *(ChatItem *)0; // provoke an error
68   }
69 }
70
71 // WARNING: setColumns should not be used without either:
72 //  a) calling prepareGeometryChange() immediately before setColumns()
73 //  b) calling Chatline::setPos() immediately afterwards
74 //
75 // NOTE: senderPos and contentsPos are in ChatLines coordinate system!
76 qreal ChatLine::setColumns(const qreal &timestampWidth, const qreal &senderWidth, const qreal &contentsWidth,
77                            const QPointF &senderPos, const QPointF &contentsPos) {
78   _height = _contentsItem.setGeometryByWidth(contentsWidth);
79   _senderItem.setGeometry(senderWidth, _height);
80   _timestampItem.setGeometry(timestampWidth, _height);
81
82   _senderItem.setPos(senderPos);
83   _contentsItem.setPos(contentsPos);
84
85   _contentsItem.clearLayout();
86   _senderItem.clearLayout();
87   _timestampItem.clearLayout();
88
89   return _height;
90 }
91
92 // WARNING: setGeometryByWidth should not be used without either:
93 //  a) calling prepareGeometryChange() immediately before setColumns()
94 //  b) calling Chatline::setPos() immediately afterwards
95 qreal ChatLine::setGeometryByWidth(const qreal &width, const qreal &contentsWidth) {
96   _width = width;
97   _height = _contentsItem.setGeometryByWidth(contentsWidth);
98   _timestampItem.setHeight(_height);
99   _senderItem.setHeight(_height);
100   _contentsItem.clearLayout();
101   return _height;
102 }
103
104 void ChatLine::setSelected(bool selected, ChatLineModel::ColumnType minColumn) {
105   if(selected) {
106     quint8 sel = (_selection & Highlighted) | Selected | minColumn;
107     if(sel != _selection) {
108       _selection = sel;
109       for(int i = 0; i < minColumn; i++)
110         item((ChatLineModel::ColumnType)i).clearSelection();
111       for(int i = minColumn; i <= ChatLineModel::ContentsColumn; i++)
112         item((ChatLineModel::ColumnType)i).setFullSelection();
113       update();
114     }
115   } else {
116     quint8 sel = _selection & Highlighted;
117     if(sel != _selection) {
118       _selection = sel;
119       for(int i = 0; i <= ChatLineModel::ContentsColumn; i++)
120         item((ChatLineModel::ColumnType)i).clearSelection();
121       update();
122     }
123   }
124 }
125
126 void ChatLine::setHighlighted(bool highlighted) {
127   if(highlighted) _selection |= Highlighted;
128   else _selection &= ~Highlighted;
129   update();
130 }
131
132 void ChatLine::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) {
133   Q_UNUSED(option);
134   Q_UNUSED(widget);
135   if(_selection & Highlighted) {
136     painter->fillRect(boundingRect(), QBrush(QtUi::style()->highlightColor()));
137   }
138   if(_selection & Selected) {
139     qreal left = item((ChatLineModel::ColumnType)(_selection & ItemMask)).x();
140     QRectF selectRect(left, 0, width() - left, height());
141     painter->fillRect(selectRect, QApplication::palette().brush(QPalette::Highlight));
142   }
143
144   // new line marker
145   const QAbstractItemModel *model_ = model();
146   if(model_ && row() > 0) {
147     QModelIndex prevRowIdx = model_->index(row() - 1, 0);
148     MsgId msgId = model_->data(prevRowIdx, MessageModel::MsgIdRole).value<MsgId>();
149     Message::Flags flags = (Message::Flags)model_->data(model_->index(row(), 0), MessageModel::FlagsRole).toInt();
150     // don't show the marker if we wrote that new line
151     if(!(flags & Message::Self)) {
152       BufferId bufferId = model_->data(prevRowIdx, MessageModel::BufferIdRole).value<BufferId>();
153       if(msgId == Client::networkModel()->lastSeenMsgId(bufferId) && chatScene()->isSingleBufferScene()) {
154         QtUiStyleSettings s("Colors");
155         QLinearGradient gradient(0, 0, 0, height());
156         gradient.setColorAt(0, s.value("newMsgMarkerFG", QColor(Qt::red)).value<QColor>());
157         gradient.setColorAt(0.1, Qt::transparent);
158         painter->fillRect(boundingRect(), gradient);
159       }
160     }
161   }
162 }