-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathAboutQSSDialog.py
47 lines (41 loc) · 1.62 KB
/
AboutQSSDialog.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
41
42
43
44
45
46
47
# -*- coding: utf-8 -*-
"""
/***************************************************************************
IdentityTool
A QGIS plugin
Configure look and feel
-------------------
begin : 2015-04-29
copyright : (C) 2016 All4Gis.
email : franka1986 at gmail dot com
***************************************************************************/
/***************************************************************************
* *
* 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 *
# any later version. *
* *
***************************************************************************/
"""
# Import the PyQt and QGIS libraries
from LoadQSS.gui.generated.About import Ui_About
from LoadQSS.utils.utils import *
from qgis.core import *
from qgis.gui import *
try:
from PyQt5.QtCore import *
from PyQt5.QtGui import *
from PyQt5.QtWidgets import *
except ImportError:
from PyQt4.QtCore import *
from PyQt4.QtGui import *
try:
from pydevd import *
except ImportError:
None
class AboutQSSDialog(QDialog, Ui_About):
def __init__(self, iface):
QDialog.__init__(self)
self.setupUi(self)
self.iface = iface