921258b16030328cef741c8231908136dd5d2fde
[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 }
37
38 ChatLine::~ChatLine() {
39   delete _timestampItem;
40   delete _senderItem;
41   delete _contentsItem;
42 }
43
44 // FIXME make more efficient by caching width/height
45 QRectF ChatLine::boundingRect () const {
46   return childrenBoundingRect();
47 }
48
49 int ChatLine::setColumnWidths(int ts, int sender, int contents) {
50   _timestampItem->setWidth(ts);
51   _senderItem->setWidth(sender);
52   int h = _contentsItem->setWidth(contents);
53
54   _senderItem->setPos(ts, 0);
55   _contentsItem->setPos(ts + sender, 0);
56
57   return h;
58 }
59
60 void ChatLine::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) {
61
62 }
63
64 /*
65 void ChatLine::setColumnWidths(int tsColWidth, int senderColWidth, int textColWidth) {
66   if(tsColWidth >= 0) {
67     _tsColWidth = tsColWidth;
68     _tsItem->setWidth(tsColWidth);
69   }
70   if(senderColWidth >= 0) {
71     _senderColWidth = senderColWidth;
72     _senderItem->setWidth(senderColWidth);
73   }
74   if(textColWidth >= 0) {
75     _textColWidth = textColWidth;
76     _textItem->setWidth(textColWidth);
77   }
78   layout();
79 }
80
81 void ChatLine::layout() {
82   prepareGeometryChange();
83   _tsItem->setPos(QPointF(0, 0));
84   _senderItem->setPos(QPointF(_tsColWidth + QtUi::style()->sepTsSender(), 0));
85   _textItem->setPos(QPointF(_tsColWidth + QtUi::style()->sepTsSender() + _senderColWidth + QtUi::style()->sepSenderText(), 0));
86 }
87
88
89 bool ChatLine::sceneEvent ( QEvent * event ) {
90   qDebug() <<(void*)this<< "receiving event";
91   event->ignore();
92   return false;
93 }
94 */
95
96