getstr

getstr() Instance Public methods This is equivalent to a series f #getch calls

idlok

idlok(bool) Instance Public methods If bool is true curses considers using the hardware insert/delete line feature of terminals so equipped. If bool is false, disables use of line insertion and deletion. This option should be enabled only if the application needs insert/delete line, for example, for a screen editor. It is disabled by default because insert/delete line tends to be visually annoying when used in applications where it is not really needed. If insert/delete line canno

inch

inch() Instance Public methods Returns the character at the current position of the window.

insch

insch(ch) Instance Public methods Insert a character ch, before the cursor, in the current window

insertln

insertln() Instance Public methods Inserts a line above the cursor, and the bottom line is lost

keypad

keypad(bool) Instance Public methods Enables the keypad of the user's terminal. If enabled (bool is true), the user can press a function key (such as an arrow key) and wgetch returns a single value representing the function key, as in KEY_LEFT. If disabled (bool is false), curses does not treat function keys specially and the program has to interpret the escape sequences itself. If the keypad in the terminal can be turned on (made to transmit) and off (made to work locally), turn

keypad=

keypad(bool) Instance Public methods Enables the keypad of the user's terminal. If enabled (bool is true), the user can press a function key (such as an arrow key) and wgetch returns a single value representing the function key, as in KEY_LEFT. If disabled (bool is false), curses does not treat function keys specially and the program has to interpret the escape sequences itself. If the keypad in the terminal can be turned on (made to transmit) and off (made to work locally), tur

maxx

maxx() Instance Public methods A getter for the maximum columns for the window

maxy

maxy() Instance Public methods A getter for the maximum lines for the window

move

move(y,x) Instance Public methods Moves the window so that the upper left-hand corner is at position (y, x)