forked from msweier/QGISflowEstimator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ptmaptool.py
95 lines (72 loc) · 2.71 KB
/
ptmaptool.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# -*- coding: utf-8 -*-
#-----------------------------------------------------------
#
# Profile
# Copyright (C) 2008 Borys Jurgiel
# Copyright (C) 2012 Patrice Verchere
#-----------------------------------------------------------
#
# licensed under the terms of GNU GPL 2
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, print to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
#---------------------------------------------------------------------
"""
from PyQt4.QtCore import *
from PyQt4.QtGui import *
"""
from qgis.PyQt.QtCore import *
from qgis.PyQt.QtGui import *
from qgis.core import *
from qgis.gui import *
import qgis
# ajh: we are still not using this
#from .selectlinetool import SelectLineTool
class ProfiletoolMapTool(QgsMapTool):
moved = pyqtSignal(dict)
rightClicked = pyqtSignal(dict)
leftClicked = pyqtSignal(dict)
doubleClicked = pyqtSignal(dict)
desactivate = pyqtSignal()
def __init__(self, canvas,button):
QgsMapTool.__init__(self,canvas)
self.canvas = canvas
self.cursor = QCursor(Qt.CrossCursor)
self.button = button
def canvasMoveEvent(self,event):
self.moved.emit({'x': event.pos().x(), 'y': event.pos().y()})
def canvasReleaseEvent(self,event):
if event.button() == Qt.RightButton:
self.rightClicked.emit({'x': event.pos().x(), 'y': event.pos().y()})
else:
self.leftClicked.emit( {'x': event.pos().x(), 'y': event.pos().y()} )
def canvasDoubleClickEvent(self,event):
self.doubleClicked.emit( {'x': event.pos().x(), 'y': event.pos().y()} )
def activate(self):
QgsMapTool.activate(self)
self.canvas.setCursor(self.cursor)
#self.button.setCheckable(True)
#self.button.setChecked(True)
def deactivate(self):
self.desactivate.emit()
#self.button.setCheckable(False)
try: #should work, but we'll use try anyway
QgsMapTool.deactivate(self)
except:
pass # something funny is going on
def isZoomTool(self):
return False
def setCursor(self,cursor):
self.cursor = QCursor(cursor)