Some optimizations... QGraphicsScene has some weird issues here
[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   setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
32   setOptimizationFlags(QGraphicsView::DontClipPainter
33       |QGraphicsView::DontSavePainterState
34       |QGraphicsView::DontAdjustForAntialiasing);
35   _scene = new ChatScene(Client::messageModel(), this);
36   _scene->setWidth(width());
37   setScene(_scene);
38
39
40 }
41
42
43 ChatView::~ChatView() {
44
45 }
46
47
48 ChatScene *ChatView::scene() const {
49   return _scene;
50 }
51
52 void ChatView::resizeEvent(QResizeEvent *event) {
53   scene()->setWidth(event->size().width());
54   qDebug() << "resize";
55 }
56
57 void ChatView::clear()
58 {
59 }
60
61 void ChatView::prependMsg(AbstractUiMsg *msg) {
62   //ChatLine *line = dynamic_cast<ChatLine*>(msg);
63   //Q_ASSERT(line);
64   //prependChatLine(line);
65 }
66
67 void ChatView::prependChatLine(ChatLine *line) {
68   //qDebug() << "prepending";
69 }
70
71 void ChatView::prependChatLines(QList<ChatLine *> clist) {
72
73 }
74
75 void ChatView::appendMsg(AbstractUiMsg *msg) {
76   //ChatLine *line = dynamic_cast<ChatLine*>(msg);
77   //Q_ASSERT(line);
78   //appendChatLine(line);
79 }
80
81 void ChatView::appendChatLine(ChatLine *line) {
82   //qDebug() << "appending";
83 }
84
85
86 void ChatView::appendChatLines(QList<ChatLine *> list) {
87   //foreach(ChatLine *line, list) {
88     
89   //}
90 }
91
92 void ChatView::setContents(const QList<AbstractUiMsg *> &list) {
93   //qDebug() << "setting" << list.count();
94   //appendChatLines(list);
95 }
96