2019-03-26 20:52:43 +11:00
|
|
|
# Copyright 2019 miruka
|
|
|
|
# This file is part of harmonyqml, licensed under GPLv3.
|
|
|
|
|
|
|
|
import logging
|
|
|
|
import sys
|
|
|
|
from pathlib import Path
|
2019-04-23 04:24:45 +10:00
|
|
|
from typing import Generator
|
2019-03-26 20:52:43 +11:00
|
|
|
|
|
|
|
from PyQt5.QtCore import QFileSystemWatcher, QObject, QTimer
|
|
|
|
from PyQt5.QtQml import QQmlApplicationEngine
|
|
|
|
|
2019-04-12 03:22:43 +10:00
|
|
|
from .app import Application
|
2019-04-12 18:33:09 +10:00
|
|
|
from .backend.backend import Backend
|
2019-03-26 20:52:43 +11:00
|
|
|
|
|
|
|
# logging.basicConfig(level=logging.INFO)
|
|
|
|
|
|
|
|
|
|
|
|
class Engine(QQmlApplicationEngine):
|
2019-03-28 07:21:31 +11:00
|
|
|
def __init__(self,
|
2019-04-12 03:22:43 +10:00
|
|
|
app: Application,
|
2019-04-23 04:24:45 +10:00
|
|
|
debug: bool = False) -> None:
|
|
|
|
super().__init__(app)
|
2019-03-26 20:52:43 +11:00
|
|
|
self.app = app
|
2019-04-23 04:24:45 +10:00
|
|
|
self.backend = Backend(self)
|
2019-03-26 20:52:43 +11:00
|
|
|
self.app_dir = Path(sys.argv[0]).resolve().parent
|
|
|
|
|
|
|
|
# Set QML properties
|
|
|
|
self.rootContext().setContextProperty("Engine", self)
|
|
|
|
self.rootContext().setContextProperty("Backend", self.backend)
|
|
|
|
|
|
|
|
# Connect Qt signals
|
|
|
|
self.quit.connect(self.app.quit)
|
|
|
|
|
|
|
|
# Make SIGINT (ctrl-c) work
|
|
|
|
self._sigint_timer = QTimer()
|
|
|
|
self._sigint_timer.timeout.connect(lambda: None)
|
|
|
|
self._sigint_timer.start(100)
|
|
|
|
|
|
|
|
# Setup UI live-reloading when a file is edited
|
2019-03-28 07:21:31 +11:00
|
|
|
if debug:
|
|
|
|
self._watcher = QFileSystemWatcher()
|
|
|
|
self._watcher.directoryChanged.connect(lambda _: self.reload_qml())
|
|
|
|
self._watcher.addPath(str(self.app_dir))
|
|
|
|
|
|
|
|
for _dir in list(self._recursive_dirs_in(self.app_dir)):
|
|
|
|
self._watcher.addPath(str(_dir))
|
2019-03-26 20:52:43 +11:00
|
|
|
|
|
|
|
# Load QML page and show window
|
|
|
|
self.load(str(self.app_dir / "components" / "Window.qml"))
|
|
|
|
|
|
|
|
|
|
|
|
def show_window(self) -> None:
|
|
|
|
self.rootObjects()[0].show()
|
|
|
|
sys.exit(self.app.exec())
|
|
|
|
|
|
|
|
|
2019-03-28 07:21:31 +11:00
|
|
|
def _recursive_dirs_in(self, path: Path) -> Generator[Path, None, None]:
|
|
|
|
for item in path.iterdir():
|
|
|
|
if item.is_dir() and item.name != "__pycache__":
|
|
|
|
yield item
|
|
|
|
yield from self._recursive_dirs_in(item)
|
|
|
|
|
|
|
|
|
2019-03-26 20:52:43 +11:00
|
|
|
def reload_qml(self) -> None:
|
|
|
|
self.clearComponentCache()
|
|
|
|
loader = self.rootObjects()[0].findChild(QObject, "UILoader")
|
|
|
|
source = loader.property("source")
|
|
|
|
loader.setProperty("source", None)
|
|
|
|
loader.setProperty("source", source)
|
|
|
|
logging.info("Reloaded: %s", source)
|