-
Notifications
You must be signed in to change notification settings - Fork 1
/
ui_selectDate.py
71 lines (63 loc) · 3.17 KB
/
ui_selectDate.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
"""
/***************************************************************************
QGIS Historize Plugin
-------------------------------------------------------------------
Date : 09 Mai 2017
Copyright : (C) 2017 by William Habelt
email : wha@sourcepole.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. *
* *
***************************************************************************/
"""
# -*- coding: utf-8 -*-
# Form implementation generated from reading ui file 'selectDate.ui'
#
# Created by: PyQt4 UI code generator 4.11.4
#
# WARNING! All changes made in this file will be lost!
from PyQt4 import QtCore, QtGui
try:
_fromUtf8 = QtCore.QString.fromUtf8
except AttributeError:
def _fromUtf8(s):
return s
try:
_encoding = QtGui.QApplication.UnicodeUTF8
def _translate(context, text, disambig):
return QtGui.QApplication.translate(context, text, disambig, _encoding)
except AttributeError:
def _translate(context, text, disambig):
return QtGui.QApplication.translate(context, text, disambig)
class Ui_SelectDate(object):
def setupUi(self, SelectDate):
SelectDate.setObjectName(_fromUtf8("SelectDate"))
SelectDate.resize(393, 131)
self.gridLayout_2 = QtGui.QGridLayout(SelectDate)
self.gridLayout_2.setObjectName(_fromUtf8("gridLayout_2"))
self.dateBox = QtGui.QGroupBox(SelectDate)
self.dateBox.setObjectName(_fromUtf8("dateBox"))
self.gridLayout = QtGui.QGridLayout(self.dateBox)
self.gridLayout.setObjectName(_fromUtf8("gridLayout"))
self.cmbDate = QtGui.QComboBox(self.dateBox)
self.cmbDate.setObjectName(_fromUtf8("cmbDate"))
self.gridLayout.addWidget(self.cmbDate, 0, 0, 1, 1)
self.gridLayout_2.addWidget(self.dateBox, 0, 0, 1, 1)
self.buttonBox = QtGui.QDialogButtonBox(SelectDate)
self.buttonBox.setOrientation(QtCore.Qt.Horizontal)
self.buttonBox.setStandardButtons(QtGui.QDialogButtonBox.Cancel|QtGui.QDialogButtonBox.Ok)
self.buttonBox.setObjectName(_fromUtf8("buttonBox"))
self.gridLayout_2.addWidget(self.buttonBox, 1, 0, 1, 1)
self.dateBox.raise_()
self.buttonBox.raise_()
self.retranslateUi(SelectDate)
QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL(_fromUtf8("accepted()")), SelectDate.accept)
QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL(_fromUtf8("rejected()")), SelectDate.reject)
QtCore.QMetaObject.connectSlotsByName(SelectDate)
def retranslateUi(self, SelectDate):
SelectDate.setWindowTitle(_translate("SelectDate", "Load", None))
self.dateBox.setTitle(_translate("SelectDate", "Select Date", None))