QGIS API Documentation  3.4.15-Madeira (e83d02e274)
qgslayoutviewtooltemporarymousepan.cpp
Go to the documentation of this file.
1 /***************************************************************************
2  qgslayoutviewtooltemporarymousepan.cpp
3  --------------------------------------
4  Date : July 2017
5  Copyright : (C) 2017 Nyall Dawson
6  Email : nyall dot dawson at gmail dot com
7  ***************************************************************************
8  * *
9  * This program is free software; you can redistribute it and/or modify *
10  * it under the terms of the GNU General Public License as published by *
11  * the Free Software Foundation; either version 2 of the License, or *
12  * (at your option) any later version. *
13  * *
14  ***************************************************************************/
15 
18 #include "qgslayoutview.h"
19 #include <QScrollBar>
20 
22  : QgsLayoutViewTool( view, tr( "Pan" ) )
23 {
24  setCursor( Qt::ClosedHandCursor );
25 }
26 
28 {
29  view()->horizontalScrollBar()->setValue( view()->horizontalScrollBar()->value() - ( event->x() - mLastMousePos.x() ) );
30  view()->verticalScrollBar()->setValue( view()->verticalScrollBar()->value() - ( event->y() - mLastMousePos.y() ) );
31  mLastMousePos = event->pos();
32  view()->viewChanged();
33 }
34 
36 {
37  if ( event->button() == Qt::MidButton )
38  {
39  view()->setTool( mPreviousViewTool );
40  }
41 }
42 
44 {
45  mLastMousePos = view()->mapFromGlobal( QCursor::pos() );
46  mPreviousViewTool = view()->tool();
48 }
void setCursor(const QCursor &cursor)
Sets a user defined cursor for use when the tool is active.
A graphical widget to display and interact with QgsLayouts.
Definition: qgslayoutview.h:49
void activate() override
Called when tool is set as the currently active layout tool.
virtual void activate()
Called when tool is set as the currently active layout tool.
void setTool(QgsLayoutViewTool *tool)
Sets the tool currently being used in the view.
QgsLayoutView * view() const
Returns the view associated with the tool.
void layoutReleaseEvent(QgsLayoutViewMouseEvent *event) override
Mouse release event for overriding.
A QgsLayoutViewMouseEvent is the result of a user interaction with the mouse on a QgsLayoutView...
void layoutMoveEvent(QgsLayoutViewMouseEvent *event) override
Mouse move event for overriding.
QgsLayoutViewToolTemporaryMousePan(QgsLayoutView *view)
Constructor for QgsLayoutViewToolTemporaryMousePan.
QgsLayoutViewTool tool
Definition: qgslayoutview.h:64
void viewChanged()
Updates associated rulers and other widgets after view extent or zoom has changed.
Abstract base class for all layout view tools.