Files
typeshed/stdlib/curses/textpad.pyi
2024-04-06 17:12:48 +03:00

12 lines
443 B
Python

from _curses import _CursesWindow
from collections.abc import Callable
def rectangle(win: _CursesWindow, uly: int, ulx: int, lry: int, lrx: int) -> None: ...
class Textbox:
stripspaces: bool
def __init__(self, win: _CursesWindow, insert_mode: bool = False) -> None: ...
def edit(self, validate: Callable[[int], int] | None = None) -> str: ...
def do_command(self, ch: str | int) -> None: ...
def gather(self) -> str: ...