Moving branches/0.3 to trunk
[quassel.git] / src / qtui / chatview.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 <QGraphicsTextItem>
22
23 #include "buffer.h"
24 #include "chatlinemodelitem.h"
25 #include "chatscene.h"
26 #include "chatview.h"
27 #include "client.h"
28 #include "quasselui.h"
29
30 ChatView::ChatView(Buffer *buf, QWidget *parent) : QGraphicsView(parent), AbstractChatView() {
31   _scene = new ChatScene(Client::messageModel(), this);
32   setScene(_scene);
33
34   //QGraphicsTextItem *item = scene()->addText(buf->bufferInfo().bufferName());
35
36 }
37
38
39 ChatView::~ChatView() {
40
41 }
42
43
44 ChatScene *ChatView::scene() const {
45   return _scene;
46 }
47
48
49 void ChatView::clear()
50 {
51 }
52
53 void ChatView::prependMsg(AbstractUiMsg *msg) {
54   //ChatLine *line = dynamic_cast<ChatLine*>(msg);
55   //Q_ASSERT(line);
56   //prependChatLine(line);
57 }
58
59 void ChatView::prependChatLine(ChatLine *line) {
60   //qDebug() << "prepending";
61 }
62
63 void ChatView::prependChatLines(QList<ChatLine *> clist) {
64
65 }
66
67 void ChatView::appendMsg(AbstractUiMsg *msg) {
68   //ChatLine *line = dynamic_cast<ChatLine*>(msg);
69   //Q_ASSERT(line);
70   //appendChatLine(line);
71 }
72
73 void ChatView::appendChatLine(ChatLine *line) {
74   //qDebug() << "appending";
75 }
76
77
78 void ChatView::appendChatLines(QList<ChatLine *> list) {
79   //foreach(ChatLine *line, list) {
80     
81   //}
82 }
83
84 void ChatView::setContents(const QList<AbstractUiMsg *> &list) {
85   //qDebug() << "setting" << list.count();
86   //appendChatLines(list);
87 }
88