# -*- coding: utf-8 -*- """ /*************************************************************************** table_postgisDialog A QGIS plugin table_postgis ------------------- begin : 2013-10-15 copyright : (C) 2013 by gcostes email : sfdg ***************************************************************************/ /*************************************************************************** * * * 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 QDialog from .ui_table_postgis import Ui_table_postgis # create the dialog for zoom to point class table_postgisDialog(QDialog): def __init__(self): QDialog.__init__(self) # Set up the user interface from Designer. self.ui = Ui_table_postgis() self.ui.setupUi(self)