27874928b6ecf87e787a990d8e529e5b14f5708f
[quassel.git] / src / qtui / chatview.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-09 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 <QKeyEvent>
23 #include <QMenu>
24 #include <QScrollBar>
25
26 #include "bufferwidget.h"
27 #include "chatscene.h"
28 #include "chatview.h"
29 #include "client.h"
30 #include "messagefilter.h"
31
32 ChatView::ChatView(BufferId bufferId, QWidget *parent)
33   : QGraphicsView(parent),
34     AbstractChatView(),
35     _bufferContainer(0),
36     _currentScaleFactor(1)
37 {
38   QList<BufferId> filterList;
39   filterList.append(bufferId);
40   MessageFilter *filter = new MessageFilter(Client::messageModel(), filterList, this);
41   init(filter);
42 }
43
44 ChatView::ChatView(MessageFilter *filter, QWidget *parent)
45   : QGraphicsView(parent),
46     AbstractChatView(),
47     _bufferContainer(0),
48     _currentScaleFactor(1)
49 {
50   init(filter);
51 }
52
53 void ChatView::init(MessageFilter *filter) {
54   setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
55   setAlignment(Qt::AlignBottom);
56   setInteractive(true);
57   //setOptimizationFlags(QGraphicsView::DontClipPainter | QGraphicsView::DontAdjustForAntialiasing);
58   // setOptimizationFlags(QGraphicsView::DontAdjustForAntialiasing);
59   setViewportUpdateMode(QGraphicsView::BoundingRectViewportUpdate);
60   // setTransformationAnchor(QGraphicsView::NoAnchor);
61   setTransformationAnchor(QGraphicsView::AnchorViewCenter);
62
63   _scrollTimer.setInterval(100);
64   _scrollTimer.setSingleShot(true);
65   connect(&_scrollTimer, SIGNAL(timeout()), SLOT(scrollTimerTimeout()));
66
67   _scene = new ChatScene(filter, filter->idString(), viewport()->width() - 4, this); // see below: resizeEvent()
68   connect(_scene, SIGNAL(sceneRectChanged(const QRectF &)), this, SLOT(sceneRectChanged(const QRectF &)));
69   connect(_scene, SIGNAL(lastLineChanged(QGraphicsItem *, qreal)), this, SLOT(lastLineChanged(QGraphicsItem *, qreal)));
70   connect(_scene, SIGNAL(mouseMoveWhileSelecting(const QPointF &)), this, SLOT(mouseMoveWhileSelecting(const QPointF &)));
71   setScene(_scene);
72
73   connect(verticalScrollBar(), SIGNAL(valueChanged(int)), this, SLOT(verticalScrollbarChanged(int)));
74 }
75
76 bool ChatView::event(QEvent *event) {
77   if(event->type() == QEvent::KeyPress) {
78     QKeyEvent *keyEvent = static_cast<QKeyEvent*>(event);
79     switch(keyEvent->key()) {
80     case Qt::Key_Up:
81     case Qt::Key_Down:
82     case Qt::Key_PageUp:
83     case Qt::Key_PageDown:
84       if(!verticalScrollBar()->isVisible()) {
85         scene()->requestBacklog();
86         return true;
87       }
88     default:
89       break;
90     }
91   }
92
93   if(event->type() == QEvent::Wheel) {
94     if(!verticalScrollBar()->isVisible()) {
95       scene()->requestBacklog();
96       return true;
97     }
98   }
99
100   return QGraphicsView::event(event);
101 }
102
103 void ChatView::resizeEvent(QResizeEvent *event) {
104   QGraphicsView::resizeEvent(event);
105
106   // we can reduce viewport updates if we scroll to the bottom allready at the beginning
107   verticalScrollBar()->setValue(verticalScrollBar()->maximum());
108
109   // FIXME: without the hardcoded -4 Qt reserves space for a horizontal scrollbar even though it's disabled permanently.
110   // this does only occur on QtX11 (at least not on Qt for Mac OS). Seems like a Qt Bug.
111   scene()->updateForViewport(viewport()->width() - 4, viewport()->height());
112
113   _lastScrollbarPos = verticalScrollBar()->maximum();
114   verticalScrollBar()->setValue(verticalScrollBar()->maximum());
115 }
116
117 void ChatView::mouseMoveWhileSelecting(const QPointF &scenePos) {
118   int y = (int)mapFromScene(scenePos).y();
119   _scrollOffset = 0;
120   if(y < 0)
121     _scrollOffset = y;
122   else if(y > height())
123     _scrollOffset = y - height();
124
125   if(_scrollOffset && !_scrollTimer.isActive())
126     _scrollTimer.start();
127 }
128
129 void ChatView::scrollTimerTimeout() {
130   // scroll view
131   QAbstractSlider *vbar = verticalScrollBar();
132   if(_scrollOffset < 0 && vbar->value() > 0)
133     vbar->setValue(qMax(vbar->value() + _scrollOffset, 0));
134   else if(_scrollOffset > 0 && vbar->value() < vbar->maximum())
135     vbar->setValue(qMin(vbar->value() + _scrollOffset, vbar->maximum()));
136 }
137
138 void ChatView::lastLineChanged(QGraphicsItem *chatLine, qreal offset) {
139   Q_UNUSED(chatLine)
140   // disabled until further testing/discussion
141   //if(!scene()->isScrollingAllowed())
142   //  return;
143
144   QAbstractSlider *vbar = verticalScrollBar();
145   Q_ASSERT(vbar);
146   if(vbar->maximum() - vbar->value() <= (offset + 5) * _currentScaleFactor ) { // 5px grace area
147     vbar->setValue(vbar->maximum());
148   }
149 }
150
151 void ChatView::verticalScrollbarChanged(int newPos) {
152   QAbstractSlider *vbar = verticalScrollBar();
153   Q_ASSERT(vbar);
154
155   // check for backlog request
156   if(newPos < _lastScrollbarPos) {
157     int relativePos = 100;
158     if(vbar->maximum() - vbar->minimum() != 0)
159       relativePos = (newPos - vbar->minimum()) * 100 / (vbar->maximum() - vbar->minimum());
160
161     if(relativePos < 20) {
162       scene()->requestBacklog();
163     }
164   }
165   _lastScrollbarPos = newPos;
166
167   // FIXME: Fugly workaround for the ChatView scrolling up 1px on buffer switch
168   if(vbar->maximum() - newPos <= 2)
169     vbar->setValue(vbar->maximum());
170 }
171
172 MsgId ChatView::lastMsgId() const {
173   if(!scene())
174     return MsgId();
175
176   QAbstractItemModel *model = scene()->model();
177   if(!model || model->rowCount() == 0)
178     return MsgId();
179
180   return model->data(model->index(model->rowCount() - 1, 0), MessageModel::MsgIdRole).value<MsgId>();
181 }
182
183 void ChatView::addActionsToMenu(QMenu *menu, const QPointF &pos) {
184   // zoom actions
185   BufferWidget *bw = qobject_cast<BufferWidget *>(bufferContainer());
186   if(bw) {
187     bw->addActionsToMenu(menu, pos);
188     menu->addSeparator();
189   }
190 }
191
192 void ChatView::zoomIn() {
193     _currentScaleFactor *= 1.2;
194     scale(1.2, 1.2);
195     scene()->setWidth(viewport()->width() / _currentScaleFactor - 2);
196 }
197
198 void ChatView::zoomOut() {
199     _currentScaleFactor /= 1.2;
200     scale(1 / 1.2, 1 / 1.2);
201     scene()->setWidth(viewport()->width() / _currentScaleFactor - 2);
202 }
203
204 void ChatView::zoomOriginal() {
205     scale(1/_currentScaleFactor, 1/_currentScaleFactor);
206     _currentScaleFactor = 1;
207     scene()->setWidth(viewport()->width() - 2);
208 }