-
Notifications
You must be signed in to change notification settings - Fork 36
/
profileplugin.py
120 lines (94 loc) · 3.92 KB
/
profileplugin.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
# -*- 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 progsram; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
#---------------------------------------------------------------------
from qgis.PyQt.QtCore import *
from qgis.PyQt.QtGui import *
from qgis.core import *
from qgis.gui import *
from qgis.utils import *
import qgis
try:
from qgis.PyQt.QtWidgets import *
except:
pass
from . import resources
from .tools.profiletool_core import ProfileToolCore
class ProfilePlugin:
def __init__(self, iface):
self.iface = iface
self.canvas = iface.mapCanvas()
self.profiletool = None
self.dockOpened = False #remember for not reopening dock if there's already one opened
#self.wdg = None
#self.tool = None
#self.lastFreeHandPoints = []
self.canvas.mapToolSet.connect(self.mapToolChanged)
def initGui(self):
# create action
self.action = QAction(QIcon(":/plugins/profiletool/icons/profileIcon.png"), "Terrain profile", self.iface.mainWindow())
self.action.setWhatsThis("Plots terrain profiles")
self.action.triggered.connect(self.run)
self.aboutAction = QAction("About", self.iface.mainWindow())
self.aboutAction.triggered.connect(self.about)
# add toolbar button and menu item
self.iface.addToolBarIcon(self.action)
self.iface.addPluginToMenu("&Profile Tool", self.action)
self.iface.addPluginToMenu("&Profile Tool", self.aboutAction)
def unload(self):
try:
self.profiletool.dockwidget.close()
except:
pass
try:
self.canvas.mapToolSet.disconnect(self.mapToolChanged)
except:
pass
self.iface.removeToolBarIcon(self.action)
self.iface.removePluginMenu("&Profile Tool", self.action)
self.iface.removePluginMenu("&Profile Tool", self.aboutAction)
def run(self):
if not self.dockOpened:
#if self.profiletool is None:
self.profiletool = ProfileToolCore(self.iface,self)
self.iface.addDockWidget(self.profiletool.dockwidget.location, self.profiletool.dockwidget)
self.profiletool.dockwidget.closed.connect(self.cleaning)
self.dockOpened = True
self.profiletool.activateProfileMapTool()
else:
self.profiletool.activateProfileMapTool()
def cleaning(self):
self.dockOpened = False
self.profiletool.rubberband.reset(self.profiletool.polygon)
self.profiletool.rubberbandbuf.reset()
self.profiletool.rubberbandpoint.hide()
self.canvas.unsetMapTool(self.profiletool.toolrenderer.tool)
self.canvas.setMapTool(self.profiletool.saveTool)
self.iface.mainWindow().statusBar().showMessage( "" )
def mapToolChanged(self,newtool,oldtool = None):
pass
#print('maptoolchanged',newtool,oldtool)
def about(self):
from ui.dlgabout import DlgAbout
DlgAbout(self.iface.mainWindow()).exec_()