summaryrefslogtreecommitdiffstats
path: root/Src/PyCatcher/src/pyCatcherView.py
diff options
context:
space:
mode:
authorTom2012-04-23 18:13:08 +0200
committerTom2012-04-23 18:13:08 +0200
commit336286e4ddde5b963035a1d16252291181712416 (patch)
tree57366b8a4d89d6d42caa315a96706481a2ebf938 /Src/PyCatcher/src/pyCatcherView.py
parentfinished database implementation and documentation in thesis, incorporated ch... (diff)
downloadimsi-catcher-detection-336286e4ddde5b963035a1d16252291181712416.tar.gz
imsi-catcher-detection-336286e4ddde5b963035a1d16252291181712416.tar.xz
imsi-catcher-detection-336286e4ddde5b963035a1d16252291181712416.zip
implemented neighbourhood on all bads and csv exporter
Diffstat (limited to 'Src/PyCatcher/src/pyCatcherView.py')
-rw-r--r--Src/PyCatcher/src/pyCatcherView.py9
1 files changed, 4 insertions, 5 deletions
diff --git a/Src/PyCatcher/src/pyCatcherView.py b/Src/PyCatcher/src/pyCatcherView.py
index c6f6457..68400a7 100644
--- a/Src/PyCatcher/src/pyCatcherView.py
+++ b/Src/PyCatcher/src/pyCatcherView.py
@@ -93,11 +93,6 @@ class PyCatcherGUI:
else:
self._catcher_controller.arfcn_filter.is_active = False
- if self._builder.get_object('cb_filter_900').get_active():
- self._catcher_controller.band_filter.is_active = True
- else:
- self._catcher_controller.band_filter.is_active = False
-
self._catcher_controller.trigger_evaluation()
def _update_rules(self):
@@ -117,6 +112,10 @@ class PyCatcherGUI:
def _update_evaluators(self):
pass
+ def _on_csv_clicked(self, widget):
+ self._update_databases()
+ self._catcher_controller.export_csv()
+
def _update_databases(self):
self._catcher_controller.use_google = self._builder.get_object('cb_google').get_active()
self._catcher_controller.use_open_cell_id = self._builder.get_object('cb_opencellid').get_active()