Revamping ChatView/ChatScene's mouse handling
[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     _currentScaleFactor(1)
35 {
36   QList<BufferId> filterList;
37   filterList.append(bufferId);
38   MessageFilter *filter = new MessageFilter(Client::messageModel(), filterList, this);
39   init(filter);
40 }
41
42 ChatView::ChatView(MessageFilter *filter, QWidget *parent)
43   : QGraphicsView(parent),
44     AbstractChatView(),
45     _currentScaleFactor(1)
46 {
47   init(filter);
48 }
49
50 void ChatView::init(MessageFilter *filter) {
51   setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
52   setAlignment(Qt::AlignBottom);
53   setInteractive(true);
54   //setOptimizationFlags(QGraphicsView::DontClipPainter | QGraphicsView::DontAdjustForAntialiasing);
55   // setOptimizationFlags(QGraphicsView::DontAdjustForAntialiasing);
56   setViewportUpdateMode(QGraphicsView::BoundingRectViewportUpdate);
57   // setTransformationAnchor(QGraphicsView::NoAnchor);
58   setTransformationAnchor(QGraphicsView::AnchorViewCenter);
59
60   _scrollTimer.setInterval(100);
61   _scrollTimer.setSingleShot(true);
62   connect(&_scrollTimer, SIGNAL(timeout()), SLOT(scrollTimerTimeout()));
63
64   _scene = new ChatScene(filter, filter->idString(), viewport()->width() - 4, this); // see below: resizeEvent()
65   connect(_scene, SIGNAL(sceneRectChanged(const QRectF &)), this, SLOT(sceneRectChanged(const QRectF &)));
66   connect(_scene, SIGNAL(lastLineChanged(QGraphicsItem *, qreal)), this, SLOT(lastLineChanged(QGraphicsItem *, qreal)));
67   connect(_scene, SIGNAL(mouseMoveWhileSelecting(const QPointF &)), this, SLOT(mouseMoveWhileSelecting(const QPointF &)));
68   setScene(_scene);
69   // installEventFilter(_scene);
70
71   connect(verticalScrollBar(), SIGNAL(valueChanged(int)), this, SLOT(verticalScrollbarChanged(int)));
72 }
73
74 void ChatView::resizeEvent(QResizeEvent *event) {
75   QGraphicsView::resizeEvent(event);
76
77   // we can reduce viewport updates if we scroll to the bottom allready at the beginning
78   verticalScrollBar()->setValue(verticalScrollBar()->maximum());
79
80   // FIXME: without the hardcoded -4 Qt reserves space for a horizontal scrollbar even though it's disabled permanently.
81   // this does only occur on QtX11 (at least not on Qt for Mac OS). Seems like a Qt Bug.
82   scene()->updateForViewport(viewport()->width() - 4, viewport()->height());
83
84   _lastScrollbarPos = verticalScrollBar()->maximum();
85   verticalScrollBar()->setValue(verticalScrollBar()->maximum());
86 }
87
88 void ChatView::mouseMoveWhileSelecting(const QPointF &scenePos) {
89   int y = (int)mapFromScene(scenePos).y();
90   _scrollOffset = 0;
91   if(y < 0)
92     _scrollOffset = y;
93   else if(y > height())
94     _scrollOffset = y - height();
95
96   if(_scrollOffset && !_scrollTimer.isActive())
97     _scrollTimer.start();
98 }
99
100 void ChatView::scrollTimerTimeout() {
101   // scroll view
102   QAbstractSlider *vbar = verticalScrollBar();
103   if(_scrollOffset < 0 && vbar->value() > 0)
104     vbar->setValue(qMax(vbar->value() + _scrollOffset, 0));
105   else if(_scrollOffset > 0 && vbar->value() < vbar->maximum())
106     vbar->setValue(qMin(vbar->value() + _scrollOffset, vbar->maximum()));
107 }
108
109 void ChatView::lastLineChanged(QGraphicsItem *chatLine, qreal offset) {
110   Q_UNUSED(chatLine)
111   // disabled until further testing/discussion
112   //if(!scene()->isScrollingAllowed())
113   //  return;
114
115   QAbstractSlider *vbar = verticalScrollBar();
116   Q_ASSERT(vbar);
117   if(vbar->maximum() - vbar->value() <= (offset + 5) * _currentScaleFactor ) { // 5px grace area
118     vbar->setValue(vbar->maximum());
119   }
120 }
121
122 void ChatView::verticalScrollbarChanged(int newPos) {
123   QAbstractSlider *vbar = verticalScrollBar();
124   Q_ASSERT(vbar);
125
126   // check for backlog request
127   if(newPos < _lastScrollbarPos) {
128     int relativePos = 100;
129     if(vbar->maximum() - vbar->minimum() != 0)
130       relativePos = (newPos - vbar->minimum()) * 100 / (vbar->maximum() - vbar->minimum());
131
132     if(relativePos < 20) {
133       scene()->requestBacklog();
134     }
135   }
136   _lastScrollbarPos = newPos;
137 }
138
139 MsgId ChatView::lastMsgId() const {
140   if(!scene())
141     return MsgId();
142
143   QAbstractItemModel *model = scene()->model();
144   if(!model || model->rowCount() == 0)
145     return MsgId();
146
147   return model->data(model->index(model->rowCount() - 1, 0), MessageModel::MsgIdRole).value<MsgId>();
148 }
149
150 void ChatView::zoomIn() {
151     _currentScaleFactor *= 1.2;
152     scale(1.2, 1.2);
153     scene()->setWidth(viewport()->width() / _currentScaleFactor - 2);
154 }
155
156 void ChatView::zoomOut() {
157     _currentScaleFactor /= 1.2;
158     scale(1 / 1.2, 1 / 1.2);
159     scene()->setWidth(viewport()->width() / _currentScaleFactor - 2);
160 }
161
162 void ChatView::zoomNormal() {
163     scale(1/_currentScaleFactor, 1/_currentScaleFactor);
164     _currentScaleFactor = 1;
165     scene()->setWidth(viewport()->width() - 2);
166 }