# Released under the MIT License. See LICENSE for details.#"""Contains AppModeSelector base class."""from__future__importannotationsfromtypingimportTYPE_CHECKINGifTYPE_CHECKING:frombabaseimportAppMode,AppIntent
[docs]classAppModeSelector:"""Defines which app-modes should handle which app-intents. The app calls an instance of this class when passed an :class:`~babase.AppIntent` to determine which :class:`~babase.AppMode` to use to handle it. Plugins or spinoff projects can modify high level app behavior by replacing or modifying the app's :attr:`~babase.App.mode_selector` attr or by modifying settings used to construct the default one. """
[docs]defapp_mode_for_intent(self,intent:AppIntent)->type[AppMode]|None:"""Given an app-intent, return the app-mode that should handle it. If None is returned, the intent will be ignored. This may be called in a background thread, so avoid any calls limited to logic thread use/etc. """raiseNotImplementedError()
# 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