(self, *, gpc, gui_vars)
| 24 | signal_redraw_maps = Signal() |
| 25 | |
| 26 | def __init__(self, *, gpc, gui_vars): |
| 27 | super().__init__() |
| 28 | |
| 29 | # The variable enables/disables plot updates. Setting it False prevents |
| 30 | # plot updates while updating the table or Select/Deselect All operation |
| 31 | self._enable_plot_updates = False |
| 32 | self._changes_exist = False |
| 33 | |
| 34 | # Global processing classes |
| 35 | self.gpc = gpc |
| 36 | # Global GUI variables (used for control of GUI state) |
| 37 | self.gui_vars = gui_vars |
| 38 | |
| 39 | self.initialize() |
| 40 | |
| 41 | def initialize(self): |
| 42 | self.setWindowTitle("PyXRF: Image Wizard") |
nothing calls this directly
no test coverage detected