| |
- builtins.object
-
- runtimepy.tui.mixin.TuiMixin
-
- ChannelTui
- typing.Any
class ChannelTui(runtimepy.tui.mixin.TuiMixin) |
|
ChannelTui(env: runtimepy.channel.environment.ChannelEnvironment) -> None
A class for implementing a text user-interface for channel environments. |
|
- Method resolution order:
- ChannelTui
- runtimepy.tui.mixin.TuiMixin
- builtins.object
Methods defined here:
- __init__(self, env: runtimepy.channel.environment.ChannelEnvironment) -> None
- Initialize this text user-interface for a channel environment.
- async dispatch(self) -> bool
- Dispatch this user interface.
- async handle_char(self, char: int) -> bool
- Handle character input.
- init(self, window: Any) -> bool
- Initialize this interface's window.
- async update_body(self) -> None
- Update the body portion of the interface.
- update_dimensions(self) -> Any
- Handle an update to the window's dimensions.
- async update_header(self) -> None
- Update the header portion of the interface.
Readonly properties defined here:
- body
- Get this interface's body window.
- header
- Get this interface's header window.
Data and other attributes defined here:
- __annotations__ = {}
Methods inherited from runtimepy.tui.mixin.TuiMixin:
- tui_update(self) -> None
- Re-draw the screen.
Readonly properties inherited from runtimepy.tui.mixin.TuiMixin:
- window
- Get the window for this instance.
Data descriptors inherited from runtimepy.tui.mixin.TuiMixin:
- __dict__
- dictionary for instance variables
- __weakref__
- list of weak references to the object
|
CursesWindow = class Any(builtins.object) |
|
CursesWindow(*args, **kwargs)
Special type indicating an unconstrained type.
- Any is compatible with every type.
- Any assumed to have all methods.
- All values assumed to be instances of Any.
Note that all the above statements are true from the point of view of
static type checkers. At runtime, Any should not be used with instance
checks. |
|
Static methods defined here:
- __new__(cls, *args, **kwargs)
- Create and return a new object. See help(type) for accurate signature.
Data descriptors defined here:
- __dict__
- dictionary for instance variables
- __weakref__
- list of weak references to the object
|
class TuiMixin(builtins.object) |
|
TuiMixin(window: Optional[Any] = None) -> None
A class mixin for building TUI applications. |
|
Methods defined here:
- __init__(self, window: Optional[Any] = None) -> None
- Initialize this instance.
- async handle_char(self, char: int) -> bool
- Handle character input.
- init(self, window: Optional[Any]) -> bool
- Initialize this interface's window.
- tui_update(self) -> None
- Re-draw the screen.
- update_dimensions(self) -> Any
- Handle an update to the window's dimensions.
Readonly properties defined here:
- window
- Get the window for this instance.
Data descriptors defined here:
- __dict__
- dictionary for instance variables
- __weakref__
- list of weak references to the object
Data and other attributes defined here:
- __annotations__ = {'cursor': <class 'runtimepy.tui.cursor.Cursor'>}
| |