# Released under the MIT License. See LICENSE for details.#"""Provides the AppSubsystem base class."""from__future__importannotationsfromtypingimportTYPE_CHECKINGimport_babaseifTYPE_CHECKING:frombabaseimportUIScale
[docs]classAppSubsystem:"""Base class for an app subsystem. An app 'subsystem' is a bit of a vague term, as pieces of the app can technically be any class and are not required to use this, but building one out of this base class provides conveniences such as predefined callbacks during app state changes. Subsystems must be registered with the app before it completes its transition to the 'running' state. """def__init__(self)->None:_babase.app.register_subsystem(self)
[docs]defon_app_loading(self)->None:"""Called when the app reaches the loading state. Note that subsystems created after the app switches to the loading state will not receive this callback. Subsystems created by plugins are an example of this. """
[docs]defon_app_running(self)->None:"""Called when app enters :attr:`~AppState.RUNNING` state."""
[docs]defon_app_suspend(self)->None:"""Called when app enters :attr:`~AppState.SUSPENDED` state."""
[docs]defon_app_unsuspend(self)->None:"""Called when app exits :attr:`~AppState.SUSPENDED` state."""
[docs]defon_app_shutdown(self)->None:"""Called when app enters :attr:`~AppState.SHUTTING_DOWN` state."""
[docs]defon_app_shutdown_complete(self)->None:"""Called when app enters :attr:`~AppState.SHUTDOWN_COMPLETE` state."""
[docs]defdo_apply_app_config(self)->None:"""Called when the app config should be applied."""
[docs]defon_ui_scale_change(self)->None:"""Called when screen ui-scale changes. Will not be called for the initial ui scale. """
[docs]defon_screen_size_change(self)->None:"""Called when the screen size changes. Will not be called for the initial screen size. """
[docs]defreset(self)->None:"""Reset the subsystem to a default state. This is called when switching app modes, but may be called at other times too. """
# Docs-generation hack; import some stuff that we likely only forward-declared# in our actual source code so that docs tools can find it.fromtypingimport(Coroutine,Any,Literal,Callable,Generator,Awaitable,Sequence,Self)importasynciofromconcurrent.futuresimportFuture