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