2024-11-17 18:54:51 +01:00
|
|
|
#!/usr/bin/python3
|
|
|
|
|
|
|
|
import sys
|
2024-11-21 18:54:32 +01:00
|
|
|
from wobbl_tools.data_file import save_dataclass_json, load_dataclass_json
|
2024-11-17 18:54:51 +01:00
|
|
|
from utils import Utils
|
2024-11-21 19:47:15 +01:00
|
|
|
import file
|
2024-11-21 16:56:08 +01:00
|
|
|
from ui import GUI
|
2024-11-21 18:54:32 +01:00
|
|
|
from settings import Settings
|
2024-11-17 18:54:51 +01:00
|
|
|
|
|
|
|
|
|
|
|
class BreadEditor:
|
|
|
|
def __init__(self):
|
2024-11-21 18:54:32 +01:00
|
|
|
self.settings = load_dataclass_json(Settings, "settings.json")
|
|
|
|
setattr(self.settings, "save", lambda: save_dataclass_json(self.settings, "settings.json"))
|
2024-11-21 19:47:15 +01:00
|
|
|
|
|
|
|
# save the file module to a variable because we need to use it in other classes but we change some file class --
|
|
|
|
# variables that also need to be accesible from the other classes.
|
|
|
|
self.file = file
|
|
|
|
File = file.File
|
2024-11-17 18:54:51 +01:00
|
|
|
self.utils = Utils(self)
|
2024-11-21 19:47:15 +01:00
|
|
|
self.file_actions = file.FileActions(self)
|
2024-11-21 16:56:08 +01:00
|
|
|
self.gui = GUI(self)
|
2024-11-17 18:54:51 +01:00
|
|
|
|
2024-11-21 16:56:08 +01:00
|
|
|
self.gui.connect_gui(self)
|
2024-11-17 18:54:51 +01:00
|
|
|
|
2024-11-21 17:34:58 +01:00
|
|
|
self.open_files: dict[str, File] = {}
|
2024-11-21 16:40:37 +01:00
|
|
|
|
2024-11-17 18:54:51 +01:00
|
|
|
def run(self):
|
2024-11-21 18:54:32 +01:00
|
|
|
self.gui.post_setup()
|
2024-11-21 19:47:15 +01:00
|
|
|
|
|
|
|
self.utils.open_last_file()
|
|
|
|
|
2024-11-20 13:05:24 +01:00
|
|
|
self.utils.popup_init()
|
|
|
|
|
2024-11-21 16:56:08 +01:00
|
|
|
self.gui.QTMainWindow.show()
|
|
|
|
sys.exit(self.gui.qt_app.exec())
|
2024-11-17 18:54:51 +01:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
editor = BreadEditor()
|
|
|
|
editor.run()
|