-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtriangulation_plugin.py
66 lines (54 loc) · 2.18 KB
/
triangulation_plugin.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
# -*- coding: utf-8 -*-
#----------------------------------------------------------------------------
#
# Triangulation
# Copyright (C) 2010-2011 Borys Jurgiel for Faunalia and University of Evora
#
#----------------------------------------------------------------------------
#
# 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, write 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.core import *
from qgis.gui import *
from qgis.utils import plugins
from triangulation_gui import *
import resources_rc
class Triangulation:
def __init__(self, iface):
self.iface = iface
def initGui(self):
# create action
self.action = QAction(QIcon(':/plugins/triangulation/icons/triangulationIcon.png'), 'Triangulation', self.iface.mainWindow())
self.action.setWhatsThis('AniMove: Triangulation')
QObject.connect(self.action, SIGNAL('triggered()'), self.run)
self.iface.addPluginToMenu('&AniMove', self.action)
self.toolBar = self.iface.mainWindow().findChild(QObject, 'AniMoveToolBar')
if not self.toolBar:
self.toolBar = self.iface.addToolBar("AniMove")
self.toolBar.setObjectName('AniMoveToolBar')
self.toolBar.addAction(self.action)
def unload(self):
self.iface.removePluginMenu('&AniMove',self.action)
self.toolBar.removeAction(self.action)
if not self.toolBar.actions():
del self.toolBar
def run(self):
dialog = TriangulationDialog(self.iface)
dialog.exec_()