forked from CEN-RA/Plugin_QGIS
43 lines
1.9 KiB
Python
43 lines
1.9 KiB
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
/***************************************************************************
|
|
CopieDialog
|
|
A QGIS plugin
|
|
Permet la copie d'une table dans une base PostGis
|
|
-------------------
|
|
begin : 2015-04-13
|
|
git sha : $Format:%H$
|
|
copyright : (C) 2015 by Guillaume COSTES - CEN Rhône-Alpes
|
|
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. *
|
|
* *
|
|
***************************************************************************/
|
|
"""
|
|
|
|
import os
|
|
|
|
from qgis.PyQt import QtCore, QtGui, QtGui, uic
|
|
from qgis.PyQt.QtWidgets import QAction, QMenu, QDialog
|
|
|
|
FORM_CLASS, _ = uic.loadUiType(os.path.join(
|
|
os.path.dirname(__file__), 'copie_dialog_base.ui'))
|
|
|
|
|
|
class CopieDialog(QDialog, FORM_CLASS):
|
|
def __init__(self, parent=None):
|
|
"""Constructor."""
|
|
super(CopieDialog, self).__init__(parent)
|
|
# 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)
|