curses Reference Manual

Synopsis

public class Window {
    public                              Window                    ( int                 nlines,
                                                                    int                 ncols,
                                                                    int                 begin_y,
                                                                    int                 begin_x ) ;


    public    int                       box                       ( ulong               verch,
                                                                    ulong               horch ) ;
    public    int                       clearok                   ( bool                bf ) ;
    public    int                       copywin                   ( Window              dstwin,
                                                                    int                 sminrow,
                                                                    int                 smincol,
                                                                    int                 dminrow,
                                                                    int                 dmincol,
                                                                    int                 dmaxrow,
                                                                    int                 dmaxcol,
                                                                    int                 overlay ) ;
    public    Window                    derwin                    ( int                 nlines,
                                                                    int                 ncols,
                                                                    int                 begin_y,
                                                                    int                 begin_x ) ;
    public    Window                    copy                      (  ) ;
    public    ulong                     getbkgd                   (  ) ;
    public    static Window             getwin                    ( GLib.FileStream     filep ) ;
    public    void                      idcok                     ( bool                bf ) ;
    public    int                       idlok                     ( bool                bf ) ;
    public    void                      immedok                   ( bool                bf ) ;
    public    int                       intrflush                 ( bool                bf ) ;
    public    bool                      is_linetouched            ( int                 line ) ;
    public    bool                      is_wintouched             (  ) ;
    public    int                       keypad                    ( bool                bf ) ;
    public    int                       leaveok                   ( bool                bf ) ;
    public    int                       meta                      ( bool                bf ) ;
    public    int                       mvderwin                  ( int                 par_y,
                                                                    int                 par_x ) ;
    public    int                       mvaddch                   ( int                 y,
                                                                    int                 x,
                                                                    ulong               ch ) ;
    public    int                       mvaddchnstr               ( int                 y,
                                                                    int                 x,
                                                                    ulong[]             chstr,
                                                                    int                 n ) ;
    public    int                       mvaddchstr                ( int                 y,
                                                                    int                 x,
                                                                    ulong[]             chstr ) ;
    public    int                       mvaddnstr                 ( int                 y,
                                                                    int                 x,
                                                                    string              str,
                                                                    int                 n ) ;
    public    int                       mvaddstr                  ( int                 y,
                                                                    int                 x,
                                                                    string              str ) ;
    public    int                       mvchgat                   ( int                 y,
                                                                    int                 x,
                                                                    int                 n,
                                                                    ulong               attr,
                                                                    short               color ) ;
    public    int                       mvdelch                   ( int                 y,
                                                                    int                 x ) ;
    public    int                       mvgetch                   ( int                 y,
                                                                    int                 x ) ;
    public    int                       mvgetnstr                 ( int                 y,
                                                                    int                 x,
                                                                    string              str,
                                                                    int                 n ) ;
    public    int                       mvgetstr                  ( int                 y,
                                                                    int                 x,
                                                                    string              str ) ;
    public    int                       mvhline                   ( int                 y,
                                                                    int                 x,
                                                                    ulong               ch,
                                                                    int                 n ) ;
    public    int                       mvwin                     ( int                 y,
                                                                    int                 x ) ;
    public    ulong                     mvinch                    ( int                 y,
                                                                    int                 x ) ;
    public    int                       mvinchnstr                ( int                 y,
                                                                    int                 x,
                                                                    ulong[]             chstr,
                                                                    int                 n ) ;
    public    int                       mvinchstr                 ( int                 y,
                                                                    int                 x,
                                                                    ulong[]             chstr ) ;
    public    int                       mvinnstr                  ( int                 y,
                                                                    int                 x,
                                                                    string              str,
                                                                    int                 n ) ;
    public    int                       mvinsch                   ( int                 y,
                                                                    int                 x,
                                                                    ulong               ch ) ;
    public    int                       mvinsnstr                 ( int                 y,
                                                                    int                 x,
                                                                    string              str,
                                                                    int                 n ) ;
    public    int                       mvinsstr                  ( int                 y,
                                                                    int                 x,
                                                                    string              str ) ;
    public    int                       mvinstr                   ( int                 y,
                                                                    int                 x,
                                                                    string              str ) ;
    public    int                       mvprintw                  ( int                 y,
                                                                    int                 x,
                                                                    string              str,
                                                                    ... ) ;
    public    int                       mvscanw                   ( int                 y,
                                                                    int                 x,
                                                                    string              str,
                                                                    ... ) ;
    public    int                       mvvline                   ( int                 y,
                                                                    int                 x,
                                                                    ulong               ch,
                                                                    int                 n ) ;
    public    int                       nodelay                   ( bool                bf ) ;
    public    int                       notimeout                 ( bool                bf ) ;
    public    int                       overlay                   ( Window              win ) ;
    public    int                       overwrite                 ( Window              win ) ;
    public    int                       putwin                    ( GLib.FileStream     filep ) ;
    public    int                       redrawwin                 (  ) ;
    public    int                       scroll                    (  ) ;
    public    int                       scrollok                  ( bool                bf ) ;
    public    Window                    subpad                    ( int                 nlines,
                                                                    int                 ncols,
                                                                    int                 begin_y,
                                                                    int                 begin_x ) ;
    public    Window                    subwin                    ( int                 nlines,
                                                                    int                 ncols,
                                                                    int                 begin_y,
                                                                    int                 begin_x ) ;
    public    int                       syncok                    ( bool                bf ) ;
    public    int                       touchline                 ( int                 start,
                                                                    int                 count ) ;
    public    int                       touchwin                  (  ) ;
    public    int                       untouchwin                (  ) ;
    public    int                       addch                     ( ulong               ch ) ;
    public    int                       waddchnstr                ( ulong[]             chstr,
                                                                    int                 n ) ;
    public    int                       waddchstr                 ( ulong[]             chstr ) ;
    public    int                       waddnstr                  ( string              str,
                                                                    int                 n ) ;
    public    int                       addstr                    ( string              str ) ;
    public    int                       attron                    ( ulong               attrs ) ;
    public    int                       attroff                   ( ulong               attrs ) ;
    public    int                       attrset                   ( ulong               attrs ) ;
    public    int                       attr_get                  ( ulong               attrs,
                                                                    ulong               pair ) ;
    public    int                       attr_on                   ( ulong               attrs ) ;
    public    int                       attr_off                  ( ulong               attrs ) ;
    public    int                       attr_set                  ( ulong               attrs,
                                                                    short               pair ) ;
    public    int                       bkgd                      ( ulong               ch ) ;
    public    void                      bkgdset                   ( ulong               ch ) ;
    public    int                       border                    ( ulong               ls,
                                                                    ulong               rs,
                                                                    ulong               ts,
                                                                    ulong               bs,
                                                                    ulong               tl,
                                                                    ulong               tr,
                                                                    ulong               bl,
                                                                    ulong               br ) ;
    public    int                       chgat                     ( int                 n,
                                                                    ulong               attr,
                                                                    short               color ) ;
    public    int                       clear                     (  ) ;
    public    int                       clrtobot                  (  ) ;
    public    int                       clrtoeol                  (  ) ;
    public    int                       color_set                 ( short               color_pair_number ) ;
    public    void                      cursyncup                 (  ) ;
    public    int                       delch                     (  ) ;
    public    int                       deleteln                  (  ) ;
    public    int                       echochar                  ( ulong               ch ) ;
    public    int                       erase                     (  ) ;
    public    int                       getch                     (  ) ;
    public    int                       getnstr                   ( string              str,
                                                                    int                 n ) ;
    public    int                       getstr                    ( string              str ) ;
    public    int                       hline                     ( ulong               ch,
                                                                    int                 n ) ;
    public    ulong                     inch                      (  ) ;
    public    int                       inchnstr                  ( ulong[]             chstr,
                                                                    int                 n ) ;
    public    int                       inchstr                   ( ulong[]             chstr ) ;
    public    int                       innstr                    ( string              str,
                                                                    int                 n ) ;
    public    int                       insch                     ( ulong               ch ) ;
    public    int                       insdelln                  ( int                 n ) ;
    public    int                       insertln                  (  ) ;
    public    int                       insnstr                   ( string              str,
                                                                    int                 n ) ;
    public    int                       insstr                    ( string              str ) ;
    public    int                       instr                     ( string              str ) ;
    public    int                       move                      ( int                 y,
                                                                    int                 x ) ;
    public    int                       noutrefresh               (  ) ;
    public    int                       printw                    ( string              str,
                                                                    ... ) ;
    public    int                       redrawln                  ( int                 beg_line,
                                                                    int                 num_lines ) ;
    public    int                       refresh                   (  ) ;
    public    int                       scanw                     ( string              str,
                                                                    ... ) ;
    public    int                       scrl                      ( int                 n ) ;
    public    int                       setscrreg                 ( int                 top,
                                                                    int                 bot ) ;
    public    int                       standout                  (  ) ;
    public    int                       standend                  (  ) ;
    public    void                      syncdown                  (  ) ;
    public    void                      syncup                    (  ) ;
    public    void                      timeout                   ( int                 delay ) ;
    public    int                       touchln                   ( int                 y,
                                                                    int                 n,
                                                                    int                 changed ) ;
    public    int                       vline                     ( ulong               ch,
                                                                    int                 n ) ;
}

Window Description

Details

Constructor Details

Window ()
    public                              Window                    ( int                 nlines,
                                                                    int                 ncols,
                                                                    int                 begin_y,
                                                                    int                 begin_x ) ;		

Field Details

Signal Details

Property Details

Method Details

box ()
    public    int                       box                       ( ulong               verch,
                                                                    ulong               horch ) ;		

clearok ()
    public    int                       clearok                   ( bool                bf ) ;		

copywin ()
    public    int                       copywin                   ( Window              dstwin,
                                                                    int                 sminrow,
                                                                    int                 smincol,
                                                                    int                 dminrow,
                                                                    int                 dmincol,
                                                                    int                 dmaxrow,
                                                                    int                 dmaxcol,
                                                                    int                 overlay ) ;		

derwin ()
    public    Window                    derwin                    ( int                 nlines,
                                                                    int                 ncols,
                                                                    int                 begin_y,
                                                                    int                 begin_x ) ;		

copy ()
    public    Window                    copy                      (  ) ;		

getbkgd ()
    public    ulong                     getbkgd                   (  ) ;		

getwin ()
    public    static Window             getwin                    ( GLib.FileStream     filep ) ;		

idcok ()
    public    void                      idcok                     ( bool                bf ) ;		

idlok ()
    public    int                       idlok                     ( bool                bf ) ;		

immedok ()
    public    void                      immedok                   ( bool                bf ) ;		

intrflush ()
    public    int                       intrflush                 ( bool                bf ) ;		

is_linetouched ()
    public    bool                      is_linetouched            ( int                 line ) ;		

is_wintouched ()
    public    bool                      is_wintouched             (  ) ;		

keypad ()
    public    int                       keypad                    ( bool                bf ) ;		

leaveok ()
    public    int                       leaveok                   ( bool                bf ) ;		

meta ()
    public    int                       meta                      ( bool                bf ) ;		

mvderwin ()
    public    int                       mvderwin                  ( int                 par_y,
                                                                    int                 par_x ) ;		

mvaddch ()
    public    int                       mvaddch                   ( int                 y,
                                                                    int                 x,
                                                                    ulong               ch ) ;		

mvaddchnstr ()
    public    int                       mvaddchnstr               ( int                 y,
                                                                    int                 x,
                                                                    ulong[]             chstr,
                                                                    int                 n ) ;		

mvaddchstr ()
    public    int                       mvaddchstr                ( int                 y,
                                                                    int                 x,
                                                                    ulong[]             chstr ) ;		

mvaddnstr ()
    public    int                       mvaddnstr                 ( int                 y,
                                                                    int                 x,
                                                                    string              str,
                                                                    int                 n ) ;		

mvaddstr ()
    public    int                       mvaddstr                  ( int                 y,
                                                                    int                 x,
                                                                    string              str ) ;		

mvchgat ()
    public    int                       mvchgat                   ( int                 y,
                                                                    int                 x,
                                                                    int                 n,
                                                                    ulong               attr,
                                                                    short               color ) ;		

mvdelch ()
    public    int                       mvdelch                   ( int                 y,
                                                                    int                 x ) ;		

mvgetch ()
    public    int                       mvgetch                   ( int                 y,
                                                                    int                 x ) ;		

mvgetnstr ()
    public    int                       mvgetnstr                 ( int                 y,
                                                                    int                 x,
                                                                    string              str,
                                                                    int                 n ) ;		

mvgetstr ()
    public    int                       mvgetstr                  ( int                 y,
                                                                    int                 x,
                                                                    string              str ) ;		

mvhline ()
    public    int                       mvhline                   ( int                 y,
                                                                    int                 x,
                                                                    ulong               ch,
                                                                    int                 n ) ;		

mvwin ()
    public    int                       mvwin                     ( int                 y,
                                                                    int                 x ) ;		

mvinch ()
    public    ulong                     mvinch                    ( int                 y,
                                                                    int                 x ) ;		

mvinchnstr ()
    public    int                       mvinchnstr                ( int                 y,
                                                                    int                 x,
                                                                    ulong[]             chstr,
                                                                    int                 n ) ;		

mvinchstr ()
    public    int                       mvinchstr                 ( int                 y,
                                                                    int                 x,
                                                                    ulong[]             chstr ) ;		

mvinnstr ()
    public    int                       mvinnstr                  ( int                 y,
                                                                    int                 x,
                                                                    string              str,
                                                                    int                 n ) ;		

mvinsch ()
    public    int                       mvinsch                   ( int                 y,
                                                                    int                 x,
                                                                    ulong               ch ) ;		

mvinsnstr ()
    public    int                       mvinsnstr                 ( int                 y,
                                                                    int                 x,
                                                                    string              str,
                                                                    int                 n ) ;		

mvinsstr ()
    public    int                       mvinsstr                  ( int                 y,
                                                                    int                 x,
                                                                    string              str ) ;		

mvinstr ()
    public    int                       mvinstr                   ( int                 y,
                                                                    int                 x,
                                                                    string              str ) ;		

mvprintw ()
    public    int                       mvprintw                  ( int                 y,
                                                                    int                 x,
                                                                    string              str,
                                                                    ... ) ;		

mvscanw ()
    public    int                       mvscanw                   ( int                 y,
                                                                    int                 x,
                                                                    string              str,
                                                                    ... ) ;		

mvvline ()
    public    int                       mvvline                   ( int                 y,
                                                                    int                 x,
                                                                    ulong               ch,
                                                                    int                 n ) ;		

nodelay ()
    public    int                       nodelay                   ( bool                bf ) ;		

notimeout ()
    public    int                       notimeout                 ( bool                bf ) ;		

overlay ()
    public    int                       overlay                   ( Window              win ) ;		

overwrite ()
    public    int                       overwrite                 ( Window              win ) ;		

putwin ()
    public    int                       putwin                    ( GLib.FileStream     filep ) ;		

redrawwin ()
    public    int                       redrawwin                 (  ) ;		

scroll ()
    public    int                       scroll                    (  ) ;		

scrollok ()
    public    int                       scrollok                  ( bool                bf ) ;		

subpad ()
    public    Window                    subpad                    ( int                 nlines,
                                                                    int                 ncols,
                                                                    int                 begin_y,
                                                                    int                 begin_x ) ;		

subwin ()
    public    Window                    subwin                    ( int                 nlines,
                                                                    int                 ncols,
                                                                    int                 begin_y,
                                                                    int                 begin_x ) ;		

syncok ()
    public    int                       syncok                    ( bool                bf ) ;		

touchline ()
    public    int                       touchline                 ( int                 start,
                                                                    int                 count ) ;		

touchwin ()
    public    int                       touchwin                  (  ) ;		

untouchwin ()
    public    int                       untouchwin                (  ) ;		

addch ()
    public    int                       addch                     ( ulong               ch ) ;		

waddchnstr ()
    public    int                       waddchnstr                ( ulong[]             chstr,
                                                                    int                 n ) ;		

waddchstr ()
    public    int                       waddchstr                 ( ulong[]             chstr ) ;		

waddnstr ()
    public    int                       waddnstr                  ( string              str,
                                                                    int                 n ) ;		

addstr ()
    public    int                       addstr                    ( string              str ) ;		

attron ()
    public    int                       attron                    ( ulong               attrs ) ;		

attroff ()
    public    int                       attroff                   ( ulong               attrs ) ;		

attrset ()
    public    int                       attrset                   ( ulong               attrs ) ;		

attr_get ()
    public    int                       attr_get                  ( ulong               attrs,
                                                                    ulong               pair ) ;		

attr_on ()
    public    int                       attr_on                   ( ulong               attrs ) ;		

attr_off ()
    public    int                       attr_off                  ( ulong               attrs ) ;		

attr_set ()
    public    int                       attr_set                  ( ulong               attrs,
                                                                    short               pair ) ;		

bkgd ()
    public    int                       bkgd                      ( ulong               ch ) ;		

bkgdset ()
    public    void                      bkgdset                   ( ulong               ch ) ;		

border ()
    public    int                       border                    ( ulong               ls,
                                                                    ulong               rs,
                                                                    ulong               ts,
                                                                    ulong               bs,
                                                                    ulong               tl,
                                                                    ulong               tr,
                                                                    ulong               bl,
                                                                    ulong               br ) ;		

chgat ()
    public    int                       chgat                     ( int                 n,
                                                                    ulong               attr,
                                                                    short               color ) ;		

clear ()
    public    int                       clear                     (  ) ;		

clrtobot ()
    public    int                       clrtobot                  (  ) ;		

clrtoeol ()
    public    int                       clrtoeol                  (  ) ;		

color_set ()
    public    int                       color_set                 ( short               color_pair_number ) ;		

cursyncup ()
    public    void                      cursyncup                 (  ) ;		

delch ()
    public    int                       delch                     (  ) ;		

deleteln ()
    public    int                       deleteln                  (  ) ;		

echochar ()
    public    int                       echochar                  ( ulong               ch ) ;		

erase ()
    public    int                       erase                     (  ) ;		

getch ()
    public    int                       getch                     (  ) ;		

getnstr ()
    public    int                       getnstr                   ( string              str,
                                                                    int                 n ) ;		

getstr ()
    public    int                       getstr                    ( string              str ) ;		

hline ()
    public    int                       hline                     ( ulong               ch,
                                                                    int                 n ) ;		

inch ()
    public    ulong                     inch                      (  ) ;		

inchnstr ()
    public    int                       inchnstr                  ( ulong[]             chstr,
                                                                    int                 n ) ;		

inchstr ()
    public    int                       inchstr                   ( ulong[]             chstr ) ;		

innstr ()
    public    int                       innstr                    ( string              str,
                                                                    int                 n ) ;		

insch ()
    public    int                       insch                     ( ulong               ch ) ;		

insdelln ()
    public    int                       insdelln                  ( int                 n ) ;		

insertln ()
    public    int                       insertln                  (  ) ;		

insnstr ()
    public    int                       insnstr                   ( string              str,
                                                                    int                 n ) ;		

insstr ()
    public    int                       insstr                    ( string              str ) ;		

instr ()
    public    int                       instr                     ( string              str ) ;		

move ()
    public    int                       move                      ( int                 y,
                                                                    int                 x ) ;		

noutrefresh ()
    public    int                       noutrefresh               (  ) ;		

printw ()
    public    int                       printw                    ( string              str,
                                                                    ... ) ;		

redrawln ()
    public    int                       redrawln                  ( int                 beg_line,
                                                                    int                 num_lines ) ;		

refresh ()
    public    int                       refresh                   (  ) ;		

scanw ()
    public    int                       scanw                     ( string              str,
                                                                    ... ) ;		

scrl ()
    public    int                       scrl                      ( int                 n ) ;		

setscrreg ()
    public    int                       setscrreg                 ( int                 top,
                                                                    int                 bot ) ;		

standout ()
    public    int                       standout                  (  ) ;		

standend ()
    public    int                       standend                  (  ) ;		

syncdown ()
    public    void                      syncdown                  (  ) ;		

syncup ()
    public    void                      syncup                    (  ) ;		

timeout ()
    public    void                      timeout                   ( int                 delay ) ;		

touchln ()
    public    int                       touchln                   ( int                 y,
                                                                    int                 n,
                                                                    int                 changed ) ;		

vline ()
    public    int                       vline                     ( ulong               ch,
                                                                    int                 n ) ;		


Created by Valadoc