close

close() Instance Public methods Deletes the window, and frees the memory

clear

clear() Instance Public methods Clear the window.

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(?|, ?-)

bkgdset

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

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

begy

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

begx

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

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

attron

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

attroff

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