attrset

attrset(attrs) Class Public methods Sets the current attributes of the given window to attrs. see also Curses::Window#attrset

attron

attron(attrs) Class Public methods Turns off the named attributes attrs without turning any other attributes on or off. See also Curses::Window#attrset for additional information.

attroff

attroff(attrs) Class Public methods Turns on the named attributes attrs without affecting any others. See also Curses::Window#attrset for additional information.

addstr

addstr(str) Class Public methods add a string of characters str, to the window and advance cursor

addch

addch(ch) Class Public methods Add a character ch, with attributes, then advance the cursor. see also the system manual for curs_addch(3)

TABSIZE=

TABSIZE=(value) Class Public methods Sets the ::TABSIZE to Integer value

TABSIZE

TABSIZE() Class Public methods Returns the number of positions in a tab.

ESCDELAY=

Curses.ESCDELAY=(value) Class Public methods Sets the ::ESCDELAY to Integer value

ESCDELAY

ESCDELAY() Class Public methods Returns the total time, in milliseconds, for which curses will await a character sequence, e.g., a function key

timeout=

timeout=(delay) Instance Public methods Sets block and non-blocking reads for the window. If delay is negative, blocking read is used (i.e., waits indefinitely for input). If delay is zero, then non-blocking read is used (i.e., read returns ERR if no input is waiting). If delay is positive, then read blocks for delay milliseconds, and returns ERR if there is still no input.