1abfcfb2eb8b39dc227ef0e9fd4cd011ff31f2bb
[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   _senderItem->setPos(80, 0);
36   _contentsItem->setPos(160, 0);
37 }
38
39 Chatline::~Chatline() {
40
41 }
42
43 QRectF Chatline::boundingRect () const {
44   return childrenBoundingRect();
45 }
46
47 void Chatline::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) {
48
49 }
50
51 /*
52 void ChatLine::setColumnWidths(int tsColWidth, int senderColWidth, int textColWidth) {
53   if(tsColWidth >= 0) {
54     _tsColWidth = tsColWidth;
55     _tsItem->setWidth(tsColWidth);
56   }
57   if(senderColWidth >= 0) {
58     _senderColWidth = senderColWidth;
59     _senderItem->setWidth(senderColWidth);
60   }
61   if(textColWidth >= 0) {
62     _textColWidth = textColWidth;
63     _textItem->setWidth(textColWidth);
64   }
65   layout();
66 }
67
68 void ChatLine::layout() {
69   prepareGeometryChange();
70   _tsItem->setPos(QPointF(0, 0));
71   _senderItem->setPos(QPointF(_tsColWidth + QtUi::style()->sepTsSender(), 0));
72   _textItem->setPos(QPointF(_tsColWidth + QtUi::style()->sepTsSender() + _senderColWidth + QtUi::style()->sepSenderText(), 0));
73 }
74
75
76 bool ChatLine::sceneEvent ( QEvent * event ) {
77   qDebug() <<(void*)this<< "receiving event";
78   event->ignore();
79   return false;
80 }
81 */
82
83