added and to predefined alias variables. (needs core restart)
[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 "messagefilter.h"
29 #include "quasselui.h"
30
31 ChatView::ChatView(Buffer *buf, QWidget *parent) : QGraphicsView(parent), AbstractChatView() {
32   setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
33   setOptimizationFlags(QGraphicsView::DontClipPainter
34       |QGraphicsView::DontSavePainterState
35       |QGraphicsView::DontAdjustForAntialiasing);
36
37   QList<BufferId> filterList;
38   filterList.append(buf->bufferInfo().bufferId());
39   MessageFilter *filter = new MessageFilter(Client::messageModel(), filterList, this);
40
41   _scene = new ChatScene(filter, this);
42   connect(_scene, SIGNAL(heightChanged(int)), this, SLOT(sceneHeightChanged(int)));
43   setScene(_scene);
44   setSceneRect(0, 0, width(), 0);
45
46 }
47
48
49 ChatView::~ChatView() {
50
51 }
52
53
54 ChatScene *ChatView::scene() const {
55   return _scene;
56 }
57
58 void ChatView::resizeEvent(QResizeEvent *event) {
59   scene()->setWidth(event->size().width());
60 }
61
62 void ChatView::sceneHeightChanged(int h) {
63   setSceneRect(0, 0, width(), h);
64 }
65
66 void ChatView::clear()
67 {
68 }
69
70 void ChatView::prependMsg(AbstractUiMsg *msg) {
71   //ChatLine *line = dynamic_cast<ChatLine*>(msg);
72   //Q_ASSERT(line);
73   //prependChatLine(line);
74 }
75
76 void ChatView::prependChatLine(ChatLine *line) {
77   //qDebug() << "prepending";
78 }
79
80 void ChatView::prependChatLines(QList<ChatLine *> clist) {
81
82 }
83
84 void ChatView::appendMsg(AbstractUiMsg *msg) {
85   //ChatLine *line = dynamic_cast<ChatLine*>(msg);
86   //Q_ASSERT(line);
87   //appendChatLine(line);
88 }
89
90 void ChatView::appendChatLine(ChatLine *line) {
91   //qDebug() << "appending";
92 }
93
94
95 void ChatView::appendChatLines(QList<ChatLine *> list) {
96   //foreach(ChatLine *line, list) {
97     
98   //}
99 }
100
101 void ChatView::setContents(const QList<AbstractUiMsg *> &list) {
102   //qDebug() << "setting" << list.count();
103   //appendChatLines(list);
104 }
105