Quantum GIS API Documentation  1.7.5-Wroclaw
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
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 /* $Id$ */
16 
17 
18 #include "qgsmaptoolemitpoint.h"
19 #include "qgsmapcanvas.h"
20 #include <QMouseEvent>
21 
22 
24  : QgsMapTool( canvas )
25 {
26 }
27 
28 void QgsMapToolEmitPoint::canvasMoveEvent( QMouseEvent * e )
29 {
30 }
31 
33 {
34  QgsPoint pnt = toMapCoordinates( e->pos() );
35  emit canvasClicked( pnt, e->button() );
36 }
37 
39 {
40 }