forked from marcusmohr/simplewcs2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
simplewcs_dialog.py
29 lines (23 loc) · 1.02 KB
/
simplewcs_dialog.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
"""
Simple WCS 2 - QGIS Plugin
Basic support for OGC WCS 2.X
created by Marcus Mohr (LGB)
email: [email protected]
licence: GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007
"""
import os
from qgis.PyQt import uic
from qgis.PyQt import QtWidgets
# This loads your .ui file so that PyQt can populate your plugin with the elements from Qt Designer
FORM_CLASS, _ = uic.loadUiType(os.path.join(
os.path.dirname(__file__), 'simplewcs_dialog_base.ui'))
class SimpleWCSDialog(QtWidgets.QDialog, FORM_CLASS):
def __init__(self, parent=None):
"""Constructor."""
super(SimpleWCSDialog, self).__init__(parent)
# Set up the user interface from Designer through FORM_CLASS.
# After self.setupUi() you can access any designer object by doing
# self.<objectname>, and you can use autoconnect slots - see
# http://qt-project.org/doc/qt-4.8/designer-using-a-ui-file.html
# #widgets-and-dialogs-with-auto-connect
self.setupUi(self)