typos
[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
168 MsgId ChatView::lastMsgId() const {
169   if(!scene())
170     return MsgId();
171
172   QAbstractItemModel *model = scene()->model();
173   if(!model || model->rowCount() == 0)
174     return MsgId();
175
176   return model->data(model->index(model->rowCount() - 1, 0), MessageModel::MsgIdRole).value<MsgId>();
177 }
178
179 void ChatView::addActionsToMenu(QMenu *menu, const QPointF &pos) {
180   // zoom actions
181   BufferWidget *bw = qobject_cast<BufferWidget *>(bufferContainer());
182   if(bw) {
183     bw->addActionsToMenu(menu, pos);
184     menu->addSeparator();
185   }
186 }
187
188 void ChatView::zoomIn() {
189     _currentScaleFactor *= 1.2;
190     scale(1.2, 1.2);
191     scene()->setWidth(viewport()->width() / _currentScaleFactor - 2);
192 }
193
194 void ChatView::zoomOut() {
195     _currentScaleFactor /= 1.2;
196     scale(1 / 1.2, 1 / 1.2);
197     scene()->setWidth(viewport()->width() / _currentScaleFactor - 2);
198 }
199
200 void ChatView::zoomOriginal() {
201     scale(1/_currentScaleFactor, 1/_currentScaleFactor);
202     _currentScaleFactor = 1;
203     scene()->setWidth(viewport()->width() - 2);
204 }