QGIS API Documentation  2.14.0-Essen
qgsmaptooltouch.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgsmaptooltouch.h - map tool for zooming and panning using qgestures
3  ----------------------
4  begin : February 2012
5  copyright : (C) 2012 by Marco Bernasocchi
6  email : marco at bernawebdesign.ch
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 
16 #ifndef QGSMAPTOOLTOUCH_H
17 #define QGSMAPTOOLTOUCH_H
18 
19 #include "qgsmaptool.h"
20 #include <QGestureEvent>
21 #include <QPinchGesture>
22 
23 class QgsMapCanvas;
24 
25 
31 class GUI_EXPORT QgsMapToolTouch : public QgsMapTool
32 {
33  public:
35  QgsMapToolTouch( QgsMapCanvas* canvas );
36 
37  ~QgsMapToolTouch();
38 
39  void activate() override;
40  void deactivate() override;
41 
43  virtual void canvasMoveEvent( QgsMapMouseEvent* e ) override;
44 
46  virtual void canvasReleaseEvent( QgsMapMouseEvent* e ) override;
47 
49  virtual void canvasDoubleClickEvent( QgsMapMouseEvent* e ) override;
50 
51  virtual bool isTransient() override { return true; }
52 
53  bool gestureEvent( QGestureEvent *event ) override;
54 
55  private:
56 
58  bool mDragging;
60  bool mPinching;
61  void pinchTriggered( QPinchGesture *gesture );
62 };
63 
64 #endif
virtual void canvasMoveEvent(QgsMapMouseEvent *e)
Mouse move event for overriding. Default implementation does nothing.
Definition: qgsmaptool.cpp:145
A QgsMapMouseEvent is the result of a user interaction with the mouse on a QgsMapCanvas.
Map canvas is a class for displaying all GIS data types on a canvas.
Definition: qgsmapcanvas.h:105
virtual void activate()
called when set as currently active map tool
Definition: qgsmaptool.cpp:83
virtual void deactivate()
called when map tool is being deactivated
Definition: qgsmaptool.cpp:99
A map tool for panning the map.
Abstract base class for all map tools.
Definition: qgsmaptool.h:50
virtual void canvasDoubleClickEvent(QgsMapMouseEvent *e)
Mouse double click event for overriding. Default implementation does nothing.
Definition: qgsmaptool.cpp:150
virtual bool isTransient() override
Check whether this MapTool performs a zoom or pan operation.
virtual void canvasReleaseEvent(QgsMapMouseEvent *e)
Mouse release event for overriding. Default implementation does nothing.
Definition: qgsmaptool.cpp:160