forked from CEN-RA/Plugin_QGIS
38 lines
1.7 KiB
Python
38 lines
1.7 KiB
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
/***************************************************************************
|
|
SICENDialog
|
|
A QGIS plugin
|
|
Filtre sur données SICEN
|
|
-------------------
|
|
begin : 2014-10-17
|
|
copyright : (C) 2014 by Guillaume COSTES
|
|
email : guillaume.costes@espaces-naturels.fr
|
|
***************************************************************************/
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* 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. *
|
|
* *
|
|
***************************************************************************/
|
|
"""
|
|
|
|
from qgis.PyQt import QtCore, QtGui
|
|
from qgis.PyQt.QtWidgets import QAction, QDialog
|
|
from .ui_sicen import Ui_SICEN
|
|
# create the dialog for zoom to point
|
|
|
|
|
|
class SICENDialog(QDialog, Ui_SICEN):
|
|
def __init__(self):
|
|
QDialog.__init__(self)
|
|
# Set up the user interface from Designer.
|
|
# After 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)
|