platform: modularize api/gui, add docs-tests-web foundation, and refresh root config
This commit is contained in:
16
selective-vpn-gui/main_window/ui_shell_mixin.py
Normal file
16
selective-vpn-gui/main_window/ui_shell_mixin.py
Normal file
@@ -0,0 +1,16 @@
|
||||
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"]
|
||||
Reference in New Issue
Block a user