-
Notifications
You must be signed in to change notification settings - Fork 0
/
budovySearchForm.py
69 lines (54 loc) · 2.47 KB
/
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
# -*- coding: utf-8 -*-
"""
/***************************************************************************
vfkPluginDialog
A QGIS plugin
Plugin umoznujici praci s daty katastru nemovitosti
-------------------
begin : 2015-06-11
git sha : $Format:%H$
copyright : (C) 2015 by Stepan Bambula
email : [email protected]
***************************************************************************/
/***************************************************************************
* *
* 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 builtins import str
from qgis.PyQt import QtGui, QtWidgets
from PyQt5.QtGui import *
from PyQt5.QtWidgets import *
from qgis.PyQt.QtCore import QAbstractItemModel
from .ui_budovysearchform import *
class BudovySearchForm(QWidget):
def __init__(self, parent=None):
super(BudovySearchForm, self).__init__(parent)
# Set up the user interface from Designer.
self.ui = Ui_BudovySearchForm()
self.ui.setupUi(self)
self.__mZpusobVyuzitiModel = QAbstractItemModel
def domovniCislo(self):
return str(self.ui.cisloDomovniLineEdit.text()).strip()
def naParcele(self):
return str(self.ui.naParceleLineEdit.text()).strip()
def lv(self):
return str(self.ui.lvBudovyLineEdit.text()).strip()
def setZpusobVyuzitiModel(self, model):
"""
:param model: QAbstractItemModel
"""
self.__mZpusobVyuzitiModel = model
self.ui.mZpVyuzitiCombo.setModel(model)
self.ui.mZpVyuzitiCombo.setModelColumn(1)
def zpusobVyuzitiKod(self):
row = self.ui.mZpVyuzitiCombo.currentIndex()
index = self.ui.mZpVyuzitiCombo.model().index(row, 1)
if self.ui.mZpVyuzitiCombo.model().data(index) == u"libovolný":
return u''
else:
return u"{}".format(self.ui.mZpVyuzitiCombo.model().data(index))