17 lines
425 B
Python
17 lines
425 B
Python
from __future__ import annotations
|
|
|
|
from main_window.ui_helpers_mixin import UIHelpersMixin
|
|
from main_window.ui_location_runtime_mixin import UILocationRuntimeMixin
|
|
from main_window.ui_tabs_mixin import UITabsMixin
|
|
|
|
|
|
class MainWindowUIShellMixin(
|
|
UILocationRuntimeMixin,
|
|
UIHelpersMixin,
|
|
UITabsMixin,
|
|
):
|
|
"""Facade mixin for backward-compatible MainWindow inheritance."""
|
|
|
|
|
|
__all__ = ["MainWindowUIShellMixin"]
|