19 lines
532 B
Python
19 lines
532 B
Python
from __future__ import annotations
|
|
|
|
from main_window.runtime_auth_mixin import RuntimeAuthMixin
|
|
from main_window.runtime_ops_mixin import RuntimeOpsMixin
|
|
from main_window.runtime_refresh_mixin import RuntimeRefreshMixin
|
|
from main_window.runtime_state_mixin import RuntimeStateMixin
|
|
|
|
|
|
class MainWindowRuntimeActionsMixin(
|
|
RuntimeOpsMixin,
|
|
RuntimeAuthMixin,
|
|
RuntimeRefreshMixin,
|
|
RuntimeStateMixin,
|
|
):
|
|
"""Facade mixin for backward-compatible MainWindow inheritance."""
|
|
|
|
|
|
__all__ = ["MainWindowRuntimeActionsMixin"]
|