addch

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

addstr

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

attroff

attroff(attrs) Instance Public methods Turns on the named attributes attrs without affecting any others. See also #attrset

attron

attron(attrs) Instance Public methods Turns off the named attributes attrs without turning any other attributes on or off. See also #attrset

attrset

attrset(attrs) Instance Public methods Sets the current attributes of the given window to attrs. The following video attributes, defined in <curses.h>, can be passed to the routines #attron, #attroff, and #attrset, or OR'd with the characters passed to addch. A_NORMAL Normal display (no highlight) A_STANDOUT Best highlighting mode of the terminal. A_UNDERLINE Underlining A_REVERSE Reverse video A_BLINK Blinking A_DIM Half bright A_BOLD

begx

begx() Instance Public methods A getter for the beginning column (X coord) of the window

begy

begy() Instance Public methods A getter for the beginning line (Y coord) of the window

bkgd

bkgd(ch) Instance Public methods Set the background of the current window and apply character Integer ch to every character. see also Curses.bkgd

bkgdset

bkgdset(ch) Instance Public methods Manipulate the background of the current window with character Integer ch see also Curses.bkgdset

box

box(vert, hor) Instance Public methods set the characters to frame the window in. The vertical vert and horizontal hor character. win = Curses::Window.new(5,5,5,5) win.box(?|, ?-)