# Released under the MIT License. See LICENSE for details.#"""On-screen Keyboard related functionality."""from__future__importannotationsfromtypingimportTYPE_CHECKINGifTYPE_CHECKING:pass
[docs]classKeyboard:"""Chars definitions for on-screen keyboard. Keyboards are discoverable by the meta-tag system and the user can select which one they want to use. On-screen keyboard uses chars from active babase.Keyboard. """name:str"""Displays when user selecting this keyboard."""chars:list[tuple[str,...]]"""Used for row/column lengths."""pages:dict[str,tuple[str,...]]"""Extra chars like emojis."""nums:tuple[str,...]"""The 'num' page."""
# 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