stahování komponent

This commit is contained in:
2026-03-10 20:02:58 +01:00
parent f9bfe02597
commit 6b39a05207
3 changed files with 80 additions and 8 deletions
+6 -2
View File
@@ -190,9 +190,10 @@ class AmcrFilterDialog(QDialog):
self.picker_areal = setup_picker("Areál", 'areal', AREAL)
layout.addWidget(self.picker_areal)
self.chk_komponenty = QCheckBox("Načíst komponenty")
layout.addWidget(self.chk_komponenty)
layout.addStretch(1)
buttons = QDialogButtonBox(QDialogButtonBox.Ok | QDialogButtonBox.Cancel)
@@ -220,6 +221,9 @@ class AmcrFilterDialog(QDialog):
def get_bbox(self):
return "true" if self.chk_bbox.isChecked() else "false"
def get_komponenty(self):
return "true" if self.chk_komponenty.isChecked() else "false"
def get_filters(self):
filters = {}