Resurrecting chatline.{cpp|h} from the dead.
[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 QPersistentModelIndex &index_, QGraphicsItem *parent) : QGraphicsItem(parent), _index(index_) {
31
32 }
33
34 ChatLine::~ChatLine() {
35
36 }
37
38 QRectF ChatLine::boundingRect () const {
39   return childrenBoundingRect();
40 }
41
42 void ChatLine::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) {
43
44 }
45
46 /*
47 void ChatLine::setColumnWidths(int tsColWidth, int senderColWidth, int textColWidth) {
48   if(tsColWidth >= 0) {
49     _tsColWidth = tsColWidth;
50     _tsItem->setWidth(tsColWidth);
51   }
52   if(senderColWidth >= 0) {
53     _senderColWidth = senderColWidth;
54     _senderItem->setWidth(senderColWidth);
55   }
56   if(textColWidth >= 0) {
57     _textColWidth = textColWidth;
58     _textItem->setWidth(textColWidth);
59   }
60   layout();
61 }
62
63 void ChatLine::layout() {
64   prepareGeometryChange();
65   _tsItem->setPos(QPointF(0, 0));
66   _senderItem->setPos(QPointF(_tsColWidth + QtUi::style()->sepTsSender(), 0));
67   _textItem->setPos(QPointF(_tsColWidth + QtUi::style()->sepTsSender() + _senderColWidth + QtUi::style()->sepSenderText(), 0));
68 }
69
70
71 bool ChatLine::sceneEvent ( QEvent * event ) {
72   qDebug() <<(void*)this<< "receiving event";
73   event->ignore();
74   return false;
75 }
76 */
77
78