QGIS API Documentation
2.0.1-Dufour
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Groups
Pages
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 <QMouseEvent>
20
21
22
QgsMapToolEmitPoint::QgsMapToolEmitPoint
(
QgsMapCanvas
* canvas )
23
:
QgsMapTool
( canvas )
24
{
25
}
26
27
void
QgsMapToolEmitPoint::canvasMoveEvent
( QMouseEvent * e )
28
{
29
Q_UNUSED( e );
30
}
31
32
void
QgsMapToolEmitPoint::canvasPressEvent
( QMouseEvent * e )
33
{
34
QgsPoint
pnt =
toMapCoordinates
( e->pos() );
35
emit
canvasClicked
( pnt, e->button() );
36
}
37
38
void
QgsMapToolEmitPoint::canvasReleaseEvent
( QMouseEvent * e )
39
{
40
Q_UNUSED( e );
41
}
Generated on Tue Sep 24 2013 14:41:50 for QGIS API Documentation by
1.8.1.2