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