curs_opaque(3x) curs_opaque(3x)
is_cleared, is_idlok, is_idcok, is_immedok, is_keypad,
is_leaveok, is_nodelay, is_notimeout, is_pad, is_scrollok,
is_subwin, is_syncok, wgetdelay, wgetparent, wgetscrreg -
curses window properties
- curses ウインドウの特性値
#include <curses.h>
bool is_cleared(const WINDOW *win);
bool is_idcok(const WINDOW *win);
bool is_idlok(const WINDOW *win);
bool is_immedok(const WINDOW *win);
bool is_keypad(const WINDOW *win);
bool is_leaveok(const WINDOW *win);
bool is_nodelay(const WINDOW *win);
bool is_notimeout(const WINDOW *win);
bool is_pad(const WINDOW *win);
bool is_scrollok(const WINDOW *win);
bool is_subwin(const WINDOW *win);
bool is_syncok(const WINDOW *win);
WINDOW * wgetparent(const WINDOW *win);
int wgetdelay(const WINDOW *win);
int wgetscrreg(const WINDOW *win, int *top, int *bottom);
This implementation provides functions which return prop-
erties set in the WINDOW structure, allowing it to be
"opaque" if the symbol NCURSES_OPAQUE is defined:
この実装は WINDOW 構造体の中の特性値を返す関数を
用意しており、識別子 NCURSES_OPAQUE を定義すると「不透明に」
なります。
is_cleared
returns the value set in clearok
clearok で設定された値を返します。
is_idcok
returns the value set in idcok
idcok で設定された値を返します。
is_idlok
returns the value set in idlok
idlok で設定された値を返します。
is_immedok
returns the value set in immedok
immedok で設定された値を返します。
is_keypad
returns the value set in keypad
keypad で設定された値を返します。
is_leaveok
returns the value set in leaveok
leaveok で設定された値を返します。
is_nodelay
returns the value set in nodelay
nodelay で設定された値を返します。
is_notimeout
returns the value set in notimeout
notimeout で設定された値を返します。
is_pad
returns TRUE if the window is a pad i.e., created by
newpad
ウインドウが newpad で作成されたパッドである場合に
TRUE を返します。
is_scrollok
returns the value set in scrollok
scrollok で設定された値を返します。
is_subwin
returns TRUE if the window is a subwindow, i.e., cre-
ated by subwin or derwin
ウインドウが subwin か derwin で作成された
サブウインドウである場合に TRUE を返します。
is_syncok
returns the value set in syncok
syncok で設定された値を返します。
wgetdelay
returns the delay timeout as set in wtimeout.
wtimeout で設定された遅延タイムアウトを返します。
wgetparent
returns the parent WINDOW pointer for subwindows, or
NULL for windows having no parent.
サブウインドウに対して、親の WINDOW ポインタを返します。
親がない場合は NULL を返します。
wgetscrreg
returns the top and bottom rows for the scrolling
margin as set in wsetscrreg.
wsetscrreg で設定されたスクロールの上マージン行と
下マージン行を返します。
These functions all return TRUE or FALSE, except as noted.
特記がないかぎり、これらすべての関数は TRUE か FALSE を
返します。
Both a macro and a function are provided for each name.
各ルーチンにはマクロと関数の両方が用意されています。
These routines are specific to ncurses. They were not
supported on Version 7, BSD or System V implementations.
It is recommended that any code depending on ncurses ex-
tensions be conditioned using NCURSES_VERSION.
これらのルーチンは ncurses に特有です。
Version 7, BSD, System V の各実装ではサポートしていません。
ncurses の拡張機能に依存するプログラムはすべて
NCURSES_VERSION を使って条件付きとするように勧めます。
curses(3x), curs_inopts(3x), curs_outopts(3x), curs_window(3x)
curs_opaque(3x)