-
Notifications
You must be signed in to change notification settings - Fork 0
/
ui_budovysearchform.py
77 lines (67 loc) · 3.39 KB
/
ui_budovysearchform.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
72
73
74
75
76
77
from builtins import object
# -*- coding: utf-8 -*-
# Form implementation generated from reading ui file 'ui_budovysearchform.ui'
#
# Created: Fri Nov 20 17:50:07 2015
# by: PyQt4 UI code generator 4.10.4
#
# WARNING! All changes made in this file will be lost!
from qgis.PyQt import QtCore, QtWidgets
try:
_fromUtf8 = QtCore.QString.fromUtf8
except AttributeError:
def _fromUtf8(s):
return s
try:
_encoding = QtWidgets.QApplication.UnicodeUTF8
def _translate(context, text, disambig):
return QtWidgets.QApplication.translate(context, text, disambig, _encoding)
except AttributeError:
def _translate(context, text, disambig):
return QtWidgets.QApplication.translate(context, text, disambig)
class Ui_BudovySearchForm(object):
def setupUi(self, BudovySearchForm):
BudovySearchForm.setObjectName(_fromUtf8("BudovySearchForm"))
BudovySearchForm.resize(248, 190)
self.gridLayout_2 = QtWidgets.QGridLayout(BudovySearchForm)
self.gridLayout_2.setObjectName(_fromUtf8("gridLayout_2"))
self.label = QtWidgets.QLabel(BudovySearchForm)
self.label.setObjectName(_fromUtf8("label"))
self.gridLayout_2.addWidget(self.label, 3, 0, 1, 1)
self.label_2 = QtWidgets.QLabel(BudovySearchForm)
self.label_2.setObjectName(_fromUtf8("label_2"))
self.gridLayout_2.addWidget(self.label_2, 1, 0, 1, 1)
self.label_3 = QtWidgets.QLabel(BudovySearchForm)
self.label_3.setObjectName(_fromUtf8("label_3"))
self.gridLayout_2.addWidget(self.label_3, 0, 0, 1, 1)
self.cisloDomovniLineEdit = QtWidgets.QLineEdit(BudovySearchForm)
self.cisloDomovniLineEdit.setObjectName(
_fromUtf8("cisloDomovniLineEdit"))
self.gridLayout_2.addWidget(self.cisloDomovniLineEdit, 0, 1, 1, 1)
self.naParceleLineEdit = QtWidgets.QLineEdit(BudovySearchForm)
self.naParceleLineEdit.setObjectName(_fromUtf8("naParceleLineEdit"))
self.gridLayout_2.addWidget(self.naParceleLineEdit, 1, 1, 1, 1)
self.label_4 = QtWidgets.QLabel(BudovySearchForm)
self.label_4.setObjectName(_fromUtf8("label_4"))
self.gridLayout_2.addWidget(self.label_4, 2, 0, 1, 1)
spacerItem = QtWidgets.QSpacerItem(
20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding)
self.gridLayout_2.addItem(spacerItem, 4, 0, 1, 1)
self.lvBudovyLineEdit = QtWidgets.QLineEdit(BudovySearchForm)
self.lvBudovyLineEdit.setObjectName(_fromUtf8("lvBudovyLineEdit"))
self.gridLayout_2.addWidget(self.lvBudovyLineEdit, 3, 1, 1, 1)
self.mZpVyuzitiCombo = QtWidgets.QComboBox(BudovySearchForm)
self.mZpVyuzitiCombo.setObjectName(_fromUtf8("mZpVyuzitiCombo"))
self.gridLayout_2.addWidget(self.mZpVyuzitiCombo, 2, 1, 1, 1)
self.retranslateUi(BudovySearchForm)
QtCore.QMetaObject.connectSlotsByName(BudovySearchForm)
def retranslateUi(self, BudovySearchForm):
BudovySearchForm.setWindowTitle(
_translate("BudovySearchForm", "Form", None))
self.label.setText(_translate("BudovySearchForm", "LV:", None))
self.label_2.setText(
_translate("BudovySearchForm", "Na parcele:", None))
self.label_3.setText(
_translate("BudovySearchForm", "Č. domovní:", None))
self.label_4.setText(
_translate("BudovySearchForm", "Zp. využití:", None))