Parameter editor added

This commit is contained in:
2026-07-27 12:07:47 +02:00
parent 36051e1577
commit 713d094b08
8 changed files with 474 additions and 12 deletions

View File

@@ -25,14 +25,18 @@ def main() -> int:
settings = ApplicationSettings()
document = Document(app)
window = MainWindow()
LogController(window, settings.log_level)
DocumentController(document, window)
SettingsController(window, settings)
UndoController(document, window)
ViewMenuController(window)
DocumentTreeController(document, window)
window_state_controller = WindowStateController(app, window)
window_state_controller.restore()
document.new()
window.showMaximized()
return app.exec()