addstr

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

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)

<<

Instance Public methods << Add String str to the current string. See also #addstr

new

new(height, width, top, left) Class Public methods Contruct a new Curses::Window with constraints of height lines, width columns, begin at top line, and begin left most column. A new window using full screen is called as Curses::Window.new(0,0,0,0)

subpad

subpad(height, width, begin_x, begin_y) Instance Public methods Contruct a new subpad with constraints of height lines, width columns, begin at begin_x line, and begin_y columns on the pad.

refresh

pad.refresh(pad_minrow, pad_mincol, screen_minrow, screen_mincol, screen_maxrow, screen_maxcol) Instance Public methods Refreshes the pad. pad_minrow and pad_mincol+ define the upper-left corner of the rectangle to be displayed. screen_minrow, screen_mincol, screen_maxrow, screen_maxcol define the edges of the rectangle to be displayed on the screen.

noutrefresh

pad.noutrefresh(pad_minrow, pad_mincol, screen_minrow, screen_mincol, screen_maxrow, screen_maxcol) Instance Public methods Refreshes the pad. pad_minrow and pad_mincol+ define the upper-left corner of the rectangle to be displayed. screen_minrow, screen_mincol, screen_maxrow, screen_maxcol define the edges of the rectangle to be displayed on the screen.

new

new(height, width) Class Public methods Contruct a new Curses::Pad with constraints of height lines, width columns

write_headers?

write_headers?() Instance Public methods Returns true if headers are written in output. See ::new for details.

unconverted_fields?

unconverted_fields?() Instance Public methods Returns true if unconverted_fields() to parsed results. See ::new for details.