6344c9c2c23564d71566c42f58d02dd21a8eae36
[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 #include <QScrollBar>
23
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(BufferId bufferId, QWidget *parent)
32   : QGraphicsView(parent),
33     AbstractChatView()
34 {
35   QList<BufferId> filterList;
36   filterList.append(bufferId);
37   MessageFilter *filter = new MessageFilter(Client::messageModel(), filterList, this);
38   init(filter);
39 }
40
41 ChatView::ChatView(MessageFilter *filter, QWidget *parent)
42   : QGraphicsView(parent),
43     AbstractChatView()
44 {
45   init(filter);
46 }
47
48 void ChatView::init(MessageFilter *filter) {
49   setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
50   setAlignment(Qt::AlignBottom);
51   setInteractive(true);
52
53   _scene = new ChatScene(filter, filter->idString(), viewport()->width() - 2, this); // see below: resizeEvent()
54   connect(_scene, SIGNAL(sceneHeightChanged(qreal)), this, SLOT(sceneHeightChanged(qreal)));
55   connect(_scene, SIGNAL(sceneRectChanged(const QRectF &)), this, SLOT(sceneRectChanged(const QRectF &)));
56   setScene(_scene);
57
58   _lastScrollbarPos = verticalScrollBar()->maximum();
59   connect(verticalScrollBar(), SIGNAL(valueChanged(int)), this, SLOT(verticalScrollbarChanged(int)));
60 }
61
62 void ChatView::resizeEvent(QResizeEvent *event) {
63   QGraphicsView::resizeEvent(event);
64   scene()->setWidth(viewport()->width() - 2);  // FIXME figure out why we have to hardcode the -2 here -> Qt-Bug most probably
65   verticalScrollBar()->setValue(verticalScrollBar()->maximum());
66 }
67
68 void ChatView::sceneHeightChanged(qreal dh) {
69   QAbstractSlider *vbar = verticalScrollBar();
70   Q_ASSERT(vbar);
71   if(vbar->maximum() - vbar->value() <= dh + 5) // in case we had scrolled only about half a line to the bottom we allow a grace of 5
72     vbar->setValue(vbar->maximum());
73 }
74
75 void ChatView::verticalScrollbarChanged(int newPos) {
76   QAbstractSlider *vbar = verticalScrollBar();
77   Q_ASSERT(vbar);
78
79   if(vbar->maximum() - vbar->value() <= 5) // FIXME workaround the fact that the view gets scrolled up a few px on buffer change
80     vbar->setValue(vbar->maximum());
81
82   if(newPos < _lastScrollbarPos) {
83     int relativePos = 100;
84     if(vbar->maximum() - vbar->minimum() != 0)
85       relativePos = (newPos - vbar->minimum()) * 100 / (vbar->maximum() - vbar->minimum());
86
87     if(relativePos < 20) {
88       scene()->requestBacklog();
89     }
90   }
91   _lastScrollbarPos = newPos;
92 }
93
94 MsgId ChatView::lastMsgId() const {
95   if(!scene())
96     return MsgId();
97
98   QAbstractItemModel *model = scene()->model();
99   if(!model || model->rowCount() == 0)
100     return MsgId();
101
102   return model->data(model->index(model->rowCount() - 1, 0), MessageModel::MsgIdRole).value<MsgId>();
103 }