71c14276b5cfb676a5245779f371573c0de85c1b
[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 #include "qtui.h"
32 #include "qtuistyle.h"
33 #include "clientignorelistmanager.h"
34
35 ChatView::ChatView(BufferId bufferId, QWidget *parent)
36   : QGraphicsView(parent),
37     AbstractChatView(),
38     _bufferContainer(0),
39     _currentScaleFactor(1),
40     _invalidateFilter(false)
41 {
42   QList<BufferId> filterList;
43   filterList.append(bufferId);
44   MessageFilter *filter = new MessageFilter(Client::messageModel(), filterList, this);
45   init(filter);
46 }
47
48 ChatView::ChatView(MessageFilter *filter, QWidget *parent)
49   : QGraphicsView(parent),
50     AbstractChatView(),
51     _bufferContainer(0),
52     _currentScaleFactor(1),
53     _invalidateFilter(false)
54 {
55   init(filter);
56 }
57
58 void ChatView::init(MessageFilter *filter) {
59   setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
60   setVerticalScrollBarPolicy(Qt::ScrollBarAsNeeded);
61   setAlignment(Qt::AlignLeft|Qt::AlignBottom);
62   setInteractive(true);
63   //setOptimizationFlags(QGraphicsView::DontClipPainter | QGraphicsView::DontAdjustForAntialiasing);
64   // setOptimizationFlags(QGraphicsView::DontAdjustForAntialiasing);
65   setViewportUpdateMode(QGraphicsView::BoundingRectViewportUpdate);
66   // setTransformationAnchor(QGraphicsView::NoAnchor);
67   setTransformationAnchor(QGraphicsView::AnchorViewCenter);
68
69   _scrollTimer.setInterval(100);
70   _scrollTimer.setSingleShot(true);
71   connect(&_scrollTimer, SIGNAL(timeout()), SLOT(scrollTimerTimeout()));
72
73   _scene = new ChatScene(filter, filter->idString(), viewport()->width(), this);
74   connect(_scene, SIGNAL(sceneRectChanged(const QRectF &)), this, SLOT(adjustSceneRect()));
75   connect(_scene, SIGNAL(lastLineChanged(QGraphicsItem *, qreal)), this, SLOT(lastLineChanged(QGraphicsItem *, qreal)));
76   connect(_scene, SIGNAL(mouseMoveWhileSelecting(const QPointF &)), this, SLOT(mouseMoveWhileSelecting(const QPointF &)));
77   setScene(_scene);
78
79   connect(verticalScrollBar(), SIGNAL(valueChanged(int)), this, SLOT(verticalScrollbarChanged(int)));
80   _lastScrollbarPos = verticalScrollBar()->value();
81
82   // only connect if client is synched with a core
83   if(Client::isConnected())
84     connect(Client::ignoreListManager(), SIGNAL(ignoreListChanged()), this, SLOT(invalidateFilter()));
85 }
86
87 bool ChatView::event(QEvent *event) {
88   if(event->type() == QEvent::KeyPress) {
89     QKeyEvent *keyEvent = static_cast<QKeyEvent*>(event);
90     switch(keyEvent->key()) {
91     case Qt::Key_Up:
92     case Qt::Key_Down:
93     case Qt::Key_PageUp:
94     case Qt::Key_PageDown:
95       if(!verticalScrollBar()->isVisible()) {
96         scene()->requestBacklog();
97         return true;
98       }
99     default:
100       break;
101     }
102   }
103
104   if(event->type() == QEvent::Wheel) {
105     if(!verticalScrollBar()->isVisible()) {
106       scene()->requestBacklog();
107       return true;
108     }
109   }
110
111   if(event->type() == QEvent::Show) {
112     if(_invalidateFilter)
113       invalidateFilter();
114   }
115
116   return QGraphicsView::event(event);
117 }
118
119 void ChatView::resizeEvent(QResizeEvent *event) {
120   QGraphicsView::resizeEvent(event);
121
122   // we can reduce viewport updates if we scroll to the bottom allready at the beginning
123   verticalScrollBar()->setValue(verticalScrollBar()->maximum());
124   scene()->updateForViewport(viewport()->width(), viewport()->height());
125   adjustSceneRect();
126
127   _lastScrollbarPos = verticalScrollBar()->maximum();
128   verticalScrollBar()->setValue(verticalScrollBar()->maximum());
129 }
130
131 void ChatView::adjustSceneRect() {
132   // Workaround for QTBUG-6322
133   // If the viewport's sceneRect() is (almost) as wide as as the viewport itself,
134   // Qt wants to reserve space for scrollbars even if they're turned off, resulting in
135   // an ugly white space at the bottom of the ChatView.
136   // Since the view's scene's width actually doesn't matter at all, we just adjust it
137   // by some hopefully large enough value to avoid this problem.
138
139   setSceneRect(scene()->sceneRect().adjusted(0, 0, -25 ,0));
140 }
141
142 void ChatView::mouseMoveWhileSelecting(const QPointF &scenePos) {
143   int y = (int)mapFromScene(scenePos).y();
144   _scrollOffset = 0;
145   if(y < 0)
146     _scrollOffset = y;
147   else if(y > height())
148     _scrollOffset = y - height();
149
150   if(_scrollOffset && !_scrollTimer.isActive())
151     _scrollTimer.start();
152 }
153
154 void ChatView::scrollTimerTimeout() {
155   // scroll view
156   QAbstractSlider *vbar = verticalScrollBar();
157   if(_scrollOffset < 0 && vbar->value() > 0)
158     vbar->setValue(qMax(vbar->value() + _scrollOffset, 0));
159   else if(_scrollOffset > 0 && vbar->value() < vbar->maximum())
160     vbar->setValue(qMin(vbar->value() + _scrollOffset, vbar->maximum()));
161 }
162
163 void ChatView::lastLineChanged(QGraphicsItem *chatLine, qreal offset) {
164   Q_UNUSED(chatLine)
165   // disabled until further testing/discussion
166   //if(!scene()->isScrollingAllowed())
167   //  return;
168
169   QAbstractSlider *vbar = verticalScrollBar();
170   Q_ASSERT(vbar);
171   if(vbar->maximum() - vbar->value() <= (offset + 5) * _currentScaleFactor ) { // 5px grace area
172     vbar->setValue(vbar->maximum());
173   }
174 }
175
176 void ChatView::verticalScrollbarChanged(int newPos) {
177   QAbstractSlider *vbar = verticalScrollBar();
178   Q_ASSERT(vbar);
179
180   // check for backlog request
181   if(newPos < _lastScrollbarPos) {
182     int relativePos = 100;
183     if(vbar->maximum() - vbar->minimum() != 0)
184       relativePos = (newPos - vbar->minimum()) * 100 / (vbar->maximum() - vbar->minimum());
185
186     if(relativePos < 20) {
187       scene()->requestBacklog();
188     }
189   }
190   _lastScrollbarPos = newPos;
191
192   // FIXME: Fugly workaround for the ChatView scrolling up 1px on buffer switch
193   if(vbar->maximum() - newPos <= 2)
194     vbar->setValue(vbar->maximum());
195 }
196
197 MsgId ChatView::lastMsgId() const {
198   if(!scene())
199     return MsgId();
200
201   QAbstractItemModel *model = scene()->model();
202   if(!model || model->rowCount() == 0)
203     return MsgId();
204
205   return model->data(model->index(model->rowCount() - 1, 0), MessageModel::MsgIdRole).value<MsgId>();
206 }
207
208 void ChatView::addActionsToMenu(QMenu *menu, const QPointF &pos) {
209   // zoom actions
210   BufferWidget *bw = qobject_cast<BufferWidget *>(bufferContainer());
211   if(bw) {
212     bw->addActionsToMenu(menu, pos);
213     menu->addSeparator();
214   }
215 }
216
217 void ChatView::zoomIn() {
218     _currentScaleFactor *= 1.2;
219     scale(1.2, 1.2);
220     scene()->setWidth(viewport()->width() / _currentScaleFactor - 2);
221 }
222
223 void ChatView::zoomOut() {
224     _currentScaleFactor /= 1.2;
225     scale(1 / 1.2, 1 / 1.2);
226     scene()->setWidth(viewport()->width() / _currentScaleFactor - 2);
227 }
228
229 void ChatView::zoomOriginal() {
230     scale(1/_currentScaleFactor, 1/_currentScaleFactor);
231     _currentScaleFactor = 1;
232     scene()->setWidth(viewport()->width() - 2);
233 }
234
235 void ChatView::invalidateFilter() {
236   // if this is the currently selected chatview
237   // invalidate immediately
238   if(isVisible()) {
239     _scene->filter()->invalidateFilter();
240     _invalidateFilter = false;
241   }
242   // otherwise invalidate whenever the view is shown
243   else {
244     _invalidateFilter = true;
245   }
246 }