runtimepy.tui.mixin
index
/home/vkottler/src/vkottler/workspace/runtimepy/runtimepy/tui/mixin.py

A module for terminal user-interface application mixins.

 
Modules
       
curses

 
Classes
       
builtins.object
runtimepy.tui.cursor.Cursor
TuiMixin
typing.Any

 
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 Cursor(builtins.object)
    Cursor(window: Any) -> None
 
A simple cursor implementation.
 
  Methods defined here:
__init__(self, window: Any) -> None
Initialize this cursor.
inc_x(self, amount: int = 1) -> bool
Increment the cursor's X coordinate.
inc_y(self, amount: int = 1) -> bool
Increment the cursor's Y coordinate.
move(self, new_y: int = None, new_x: int = None) -> bool
Perform the underlying cursor move.
poll_max(self) -> bool
Update the min and max cursor positions.
reset(self) -> None
Reset this cursor.

Readonly properties defined here:
height
Get the height of this cursor's window.
width
Get the width of this cursor's window.

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'>}

 
Data
        __all__ = ['CursesWindow', 'Cursor', 'TuiMixin']