clrtoeol

clrtoeol() Class Public methods Clears to the end of line, that the cursor is currently on.

color_content

color_content(color) Class Public methods Returns an 3 item Array of the RGB values in color

color_pair

color_pair(attrs) Class Public methods Sets the color pair attributes to attrs. This should be equivalent to ::attrset(COLOR_PAIR(attrs)) TODO: validate that equivalency

color_pairs

color_pairs() Class Public methods Returns the COLOR_PAIRS available, if the curses library supports it.

colors

colors() Class Public methods returns COLORS

cols

cols() Class Public methods Returns the number of columns on the screen

crmode

crmode() Class Public methods Put the terminal into cbreak mode. Normally, the tty driver buffers typed characters until a newline or carriage return is typed. The ::cbreak routine disables line buffering and erase/kill character-processing (interrupt and flow control characters are unaffected), making characters typed by the user immediately available to the program. The ::nocbreak routine returns the terminal to normal (cooked) mode. Initially the terminal may or may not be in cb

curs_set

curs_set(visibility) Class Public methods Sets Cursor Visibility. 0: invisible 1: visible 2: very visible

def_prog_mode

def_prog_mode() Class Public methods Save the current terminal modes as the âprogramâ state for use by the ::reset_prog_mode This is done automatically by ::init_screen

delch

delch() Class Public methods Delete the character under the cursor