noutrefresh

noutrefresh() Instance Public methods Refreshes the windows and lines. #noutrefresh allows multiple updates with more efficiency than #refresh alone.

nodelay=

window.nodelay = bool Instance Public methods When in no-delay mode #getch is a non-blocking call. If no input is ready getch returns ERR. When in delay mode (bool is false which is the default), #getch blocks until a key is pressed.

move

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

maxy

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

maxx

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

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

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

insertln

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

insch

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

inch

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