QGIS API Documentation
3.8.0-Zanzibar (11aff65)
src
gui
qgsmaptoolemitpoint.cpp
Go to the documentation of this file.
1
/***************************************************************************
2
qgsmaptoolemitpoint.cpp - map tool that emits a signal on click
3
---------------------
4
begin : June 2007
5
copyright : (C) 2007 by Martin Dobias
6
email : wonder.sk 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
16
17
#include "
qgsmaptoolemitpoint.h
"
18
#include "
qgsmapcanvas.h
"
19
#include "
qgsmapmouseevent.h
"
20
21
22
23
QgsMapToolEmitPoint::QgsMapToolEmitPoint
(
QgsMapCanvas
*canvas )
24
:
QgsMapTool
( canvas )
25
{
26
}
27
28
void
QgsMapToolEmitPoint::canvasMoveEvent
(
QgsMapMouseEvent
*e )
29
{
30
Q_UNUSED( e )
31
}
32
33
void
QgsMapToolEmitPoint::canvasPressEvent
(
QgsMapMouseEvent
*e )
34
{
35
QgsPointXY
pnt =
toMapCoordinates
( e->pos() );
36
emit
canvasClicked
( pnt, e->button() );
37
}
38
39
void
QgsMapToolEmitPoint::canvasReleaseEvent
(
QgsMapMouseEvent
*e )
40
{
41
Q_UNUSED( e )
42
}
QgsMapToolEmitPoint::canvasClicked
void canvasClicked(const QgsPointXY &point, Qt::MouseButton button)
signal emitted on canvas click
QgsPointXY
A class to represent a 2D point.
Definition:
qgspointxy.h:43
QgsMapMouseEvent
A QgsMapMouseEvent is the result of a user interaction with the mouse on a QgsMapCanvas.
Definition:
qgsmapmouseevent.h:35
qgsmapcanvas.h
QgsMapTool::toMapCoordinates
QgsPointXY toMapCoordinates(QPoint point)
transformation from screen coordinates to map coordinates
Definition:
qgsmaptool.cpp:42
QgsMapToolEmitPoint::QgsMapToolEmitPoint
QgsMapToolEmitPoint(QgsMapCanvas *canvas)
constructor
Definition:
qgsmaptoolemitpoint.cpp:23
QgsMapCanvas
Map canvas is a class for displaying all GIS data types on a canvas.
Definition:
qgsmapcanvas.h:73
qgsmaptoolemitpoint.h
QgsMapToolEmitPoint::canvasMoveEvent
void canvasMoveEvent(QgsMapMouseEvent *e) override
Mouse move event for overriding. Default implementation does nothing.
Definition:
qgsmaptoolemitpoint.cpp:28
QgsMapTool
Abstract base class for all map tools.
Definition:
qgsmaptool.h:62
qgsmapmouseevent.h
QgsMapToolEmitPoint::canvasPressEvent
void canvasPressEvent(QgsMapMouseEvent *e) override
Mouse press event for overriding. Default implementation does nothing.
Definition:
qgsmaptoolemitpoint.cpp:33
QgsMapToolEmitPoint::canvasReleaseEvent
void canvasReleaseEvent(QgsMapMouseEvent *e) override
Mouse release event for overriding. Default implementation does nothing.
Definition:
qgsmaptoolemitpoint.cpp:39
Generated on Sat Jun 22 2019 09:24:07 for QGIS API Documentation by
1.8.13