-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathqgswpserrormsggui.py
40 lines (35 loc) · 1.52 KB
/
qgswpserrormsggui.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
30
31
32
33
34
35
36
37
38
39
40
# -*- coding: utf-8 -*-
"""
/***************************************************************************
QGIS Web Processing Service Plugin
-------------------------------------------------------------------
Date : 09 November 2009
Copyright : (C) 2009 by Dr. Horst Duester
email : horst dot duester at kappasys dot ch
***************************************************************************
* *
* 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 __future__ import absolute_import
from qgis.PyQt.QtWidgets import QDialog
from PyQt4.QtCore import pyqtSignature
from wps import version
from .Ui_qgswpserrormsggui import Ui_Dialog
class QgsWpsErrorMsgGui(QDialog, Ui_Dialog):
"""
Class documentation goes here.
"""
def __init__(self, parent = None):
"""
Constructor
"""
QDialog.__init__(self, parent)
self.setupUi(self)
self.setWindowTitle('QGIS WPS-Client '+version())
def on_buttonBox_rejected(self):
self.close()