Add selection (and highlight) display to ChatLine
[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 "chatitem.h"
27 #include "chatline.h"
28 #include "qtui.h"
29
30 ChatLine::ChatLine(const QModelIndex &index, QGraphicsItem *parent) : QGraphicsItem(parent) {
31   _timestampItem = new ChatItem(QPersistentModelIndex(index.sibling(index.row(), ChatLineModel::TimestampColumn)), this);
32   _senderItem = new ChatItem(QPersistentModelIndex(index.sibling(index.row(), ChatLineModel::SenderColumn)), this);
33   _contentsItem = new ChatItem(QPersistentModelIndex(index.sibling(index.row(), ChatLineModel::ContentsColumn)), this);
34
35   _timestampItem->setPos(0,0);
36   _width = _height = 0;
37   _selection = 0;
38 }
39
40 ChatLine::~ChatLine() {
41   delete _timestampItem;
42   delete _senderItem;
43   delete _contentsItem;
44 }
45
46 QRectF ChatLine::boundingRect () const {
47   //return childrenBoundingRect();
48   return QRectF(0, 0, _width, _height);
49 }
50
51 ChatItem *ChatLine::item(ChatLineModel::ColumnType column) const {
52   switch(column) {
53     case ChatLineModel::TimestampColumn: return _timestampItem;
54     case ChatLineModel::SenderColumn: return _senderItem;
55     case ChatLineModel::ContentsColumn: return _contentsItem;
56     default: return 0;
57   }
58 }
59
60 qreal ChatLine::setGeometry(qreal width, qreal firstHandlePos, qreal secondHandlePos) {
61   if(width != _width) prepareGeometryChange();
62   qreal firstsep = QtUi::style()->firstColumnSeparator()/2;
63   qreal secondsep = QtUi::style()->secondColumnSeparator()/2;
64
65   _timestampItem->setWidth(firstHandlePos - firstsep);
66   _senderItem->setWidth(secondHandlePos - firstHandlePos - (firstsep+secondsep));
67   _height = _contentsItem->setWidth(width - secondHandlePos - secondsep);
68
69   _senderItem->setPos(firstHandlePos + firstsep, 0);
70   _contentsItem->setPos(secondHandlePos + secondsep, 0);
71
72   _width = width;
73   return _height;
74 }
75
76 void ChatLine::setSelected(bool selected, ChatLineModel::ColumnType minColumn) {
77   if(selected) {
78     _selection = (_selection & 0x80) | 0x40 | minColumn;
79     for(int i = 0; i < minColumn; i++) item((ChatLineModel::ColumnType)i)->clearSelection();
80     for(int i = minColumn; i <= ChatLineModel::ContentsColumn; i++) item((ChatLineModel::ColumnType)i)->setFullSelection();
81   }
82   else {
83     _selection &= 0x80;
84     for(int i = 0; i <= ChatLineModel::ContentsColumn; i++) item((ChatLineModel::ColumnType)i)->clearSelection();
85   }
86   update();
87 }
88
89 void ChatLine::setHighlighted(bool highlighted) {
90   if(highlighted) _selection |= 0x80;
91   else _selection &= 0x7f;
92   update();
93 }
94
95 void ChatLine::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) {
96   if(_selection & Highlighted) {
97     painter->fillRect(boundingRect(), QBrush(QtUi::style()->highlightColor()));
98   }
99   if(_selection & Selected) {
100     qreal left = item((ChatLineModel::ColumnType)(_selection & 0x3f))->x();
101     QRectF selectRect(left, 0, width() - left, height());
102     painter->fillRect(selectRect, QApplication::palette().brush(QPalette::Highlight));
103   }
104 }