~ubuntu-branches/ubuntu/utopic/qgis/utopic

« back to all changes in this revision

Viewing changes to src/plugins/georeferencer/qgsgeoreftooldeletepoint.h

  • Committer: Package Import Robot
  • Author(s): Francesco Paolo Lovergine
  • Date: 2012-04-24 15:12:20 UTC
  • mfrom: (3.1.9 sid)
  • Revision ID: package-import@ubuntu.com-20120424151220-r88g00af5fpn5fc3
Tags: 1.7.4+1.7.5~20120320-1
The "Sometimes they come back" release.

* Branching from Qgis tree and adapting to current Debian Policy and
  standards. The target tree is currently set to release-1.7.
  (closes: #661491, #606304, #615683, #616182, #600308)
* Policy bumped to 3.9.3.
* Moving to debhelper compatibility level 9.
* Source format is now 3.0 with quilt support.
* Merged with 2bf42287 upstream git snapshot.
* Migrated to dh_python2 instead of python-central.
  (closes: #617048)
* Snapshot in qgis.org release-1.7: c936d031
* Added an automagic creation of a lintian override for sqlite embedding.
  This is required for uploading currently.
* Added missing ${misc:Depends} to make lintian happy.
* Copyright notes updated and debian/copyright moved to format 1.0.
* More licenses notices now reported in debian/copyright. Thanks ftpmasters.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
     qgsgeoreftooldeletepoint.h
 
3
     --------------------------------------
 
4
    Date                 : 14-Feb-2010
 
5
    Copyright            : (C) 2010 by Jack R, Maxim Dubinin (GIS-Lab)
 
6
    Email                : sim@gis-lab.info
 
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
#ifndef QGSGEOREFTOOLDELETEPOINT_H
 
18
#define QGSGEOREFTOOLDELETEPOINT_H
 
19
 
 
20
#include <QMouseEvent>
 
21
 
 
22
#include "qgsmaptoolemitpoint.h"
 
23
 
 
24
class QgsPoint;
 
25
class QgsMapCanvas;
 
26
 
 
27
class QgsGeorefToolDeletePoint : public QgsMapToolEmitPoint
 
28
{
 
29
    Q_OBJECT
 
30
 
 
31
  public:
 
32
    QgsGeorefToolDeletePoint( QgsMapCanvas* canvas );
 
33
 
 
34
    // Mouse events for overriding
 
35
    void canvasPressEvent( QMouseEvent * e );
 
36
 
 
37
  signals:
 
38
    void deleteDataPoint( const QPoint & );
 
39
};
 
40
 
 
41
#endif // QGSGEOREFTOOLDELETEPOINT_H