Wobuzz/wobuzz/main.py

32 lines
822 B
Python
Raw Normal View History

2024-12-20 18:02:59 +01:00
#!/usr/bin/python3
import sys
from PyQt6.QtWidgets import QApplication
from wobbl_tools.data_file import load_dataclass_json
from settings import Settings
from utils import Utils
from player.player import Player
2024-12-21 19:00:06 +01:00
from gui import GUI
from gui_communication.gui_communication import GUICommunication
2024-12-20 18:02:59 +01:00
class Wobuzz:
def __init__(self):
self.qt_app = QApplication([])
2024-12-20 18:02:59 +01:00
self.utils = Utils(self)
self.settings = load_dataclass_json(Settings, self.utils.settings_location)
2024-12-22 16:11:43 +01:00
self.player = Player(self)
self.gui = GUI(self)
2024-12-21 19:00:06 +01:00
self.gui_communication = GUICommunication(self)
2024-12-20 18:02:59 +01:00
2024-12-22 16:11:43 +01:00
track_paths = sys.argv[1:]
if track_paths:
self.player.load_tracks_from_paths(track_paths)
2024-12-20 18:02:59 +01:00
if __name__ == "__main__":
wobuzz = Wobuzz()
sys.exit(wobuzz.qt_app.exec())