| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- # -*- coding: utf-8 -*-
- """
- /***************************************************************************
- MnCheckDialog
- A QGIS plugin
- Contrôle des données FTTH format MN
- Generated by Plugin Builder: http://g-sherman.github.io/Qgis-Plugin-Builder/
- -------------------
- begin : 2018-12-07
- git sha : $Format:%H$
- copyright : (C) 2018 by Manche Numérique 2019
- email : olivier.massot@manchenumerique.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 PyQt5 import uic
- from PyQt5 import QtWidgets
- FORM_CLASS, _ = uic.loadUiType(os.path.join(
- os.path.dirname(__file__), 'dlg_main.ui'))
- class DlgMain(QtWidgets.QDialog, FORM_CLASS):
- def __init__(self, parent=None):
- """Constructor."""
- super(DlgMain, 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)
|