Refactoring verbiage, preliminary zip scan

This commit is contained in:
2023-04-23 10:57:12 -05:00
parent c4eaa57f57
commit 23c2a99c7d
5 changed files with 22 additions and 16 deletions

View File

@@ -9,20 +9,19 @@ from plugins.plugins_controller import PluginsController
class ControllerData:
''' ControllerData contains most of the state of the app at ay given time. It also has some support methods. '''
def setup_controller_data(self) -> None:
self.window = settings.get_main_window()
self.builder = None
self.core_widget = None
self.base_container = None
self.was_midified_key = False
self.ctrl_down = False
self.shift_down = False
self.alt_down = False
self.load_glade_file()
self.setup_builder_and_container()
self.plugins = PluginsController()