nocrmode

nocrmode() Class Public methods Put the terminal into normal mode (out of cbreak mode). See ::cbreak for more detail.

noecho

noecho() Class Public methods Disables characters typed by the user to be echoed by ::getch as they are typed.

nonl

nonl() Class Public methods Disable the underlying display device to translate the return key into newline on input See ::nl for more detail

noraw

noraw() Class Public methods Put the terminal out of raw mode. see ::raw for more detail

pair_content

pair_content(pair) Class Public methods Returns a 2 item Array, with the foreground and background color, in pair

pair_number

pair_number(attrs) Class Public methods Returns the Fixnum color pair number of attributes attrs.

raw

raw() Class Public methods Put the terminal into raw mode. Raw mode is similar to ::cbreak mode, in that characters typed are immediately passed through to the user program. The differences are that in raw mode, the interrupt, quit, suspend, and flow control characters are all passed through uninterpreted, instead of generating a signal. The behavior of the BREAK key depends on other bits in the tty driver that are not set by curses.

refresh

refresh() Class Public methods Refreshes the windows and lines.

reset_prog_mode

reset_prog_mode() Class Public methods Reset the current terminal modes to the saved state by the ::def_prog_mode This is done automatically by ::close_screen

resize

resizeterm(lines, cols) Class Public methods Resize the current term to Fixnum lines and Fixnum cols