INNER CODE UNIT · Python

Window

cunarist/solie · package/solie/window/main.py:69

class Window(QMainWindow, Ui_MainWindow):
    """Main application window."""

    def __init__(self, close_event: Event, config: SolieConfig) -> None:
        """Initialize main window."""
        super().__init__()

        self._close_event = close_event
        self.config = config

        self.datapath: Path
        self.data_settings: DataSettings

        self.last_interaction = datetime.now(UTC)
        self._splash_screen: SplashScreen
        self.price_labels: dict[str, QLabel] = {}

        self.should_confirm_closing = False

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…