2024-12-20 18:02:59 +01:00
|
|
|
#!/usr/bin/python3
|
|
|
|
|
|
|
|
from ui.main_window import MainWindow
|
|
|
|
|
|
|
|
|
|
|
|
class GUI:
|
2024-12-21 16:07:27 +01:00
|
|
|
def __init__(self, app):
|
|
|
|
self.app = app
|
|
|
|
|
2024-12-20 18:02:59 +01:00
|
|
|
self.window = MainWindow()
|
|
|
|
|
2024-12-21 16:07:27 +01:00
|
|
|
self.connect()
|
|
|
|
|
2024-12-21 19:00:06 +01:00
|
|
|
self.window.show()
|
|
|
|
|
2024-12-21 16:07:27 +01:00
|
|
|
def connect(self):
|
2024-12-22 19:42:48 +01:00
|
|
|
pass
|
2024-12-21 19:00:06 +01:00
|
|
|
|