1curs_opaque(3X) curs_opaque(3X)
2
3
4
6 is_cleared, is_idlok, is_idcok, is_immedok, is_keypad, is_leaveok,
7 is_nodelay, is_timeout, is_scrollok, is_syncok - curses output options
8
10 #include <curses.h>
11
12 bool is_cleared(WINDOW *win);
13 bool is_idcok(WINDOW *win);
14 bool is_idlok(WINDOW *win);
15 bool is_immedok(WINDOW *win);
16 bool is_keypad(WINDOW *win);
17 bool is_leaveok(WINDOW *win);
18 bool is_nodelay(WINDOW *win);
19 bool is_notimeout(WINDOW *win);
20 bool is_scrollok(WINDOW *win);
21 bool is_syncok(WINDOW *win);
22
24 This implementation provides functions which return properties set in
25 the WINDOW structure, allowing it to be ``opaque'' if the symbol NCURS‐
26 ES_OPAQUE is defined:
27
28 is_cleared
29 returns the value set in clearok
30
31 is_idcok
32 returns the value set in idcok
33
34 is_idlok
35 returns the value set in idlok
36
37 is_immedok
38 returns the value set in immedok
39
40 is_keypad
41 returns the value set in keypad
42
43 is_leaveok
44 returns the value set in leaveok
45
46 is_nodelay
47 returns the value set in nodelay
48
49 is_notimeout
50 returns the value set in notimeout
51
52 is_scrollok
53 returns the value set in scrollok
54
55 is_syncok
56 returns the value set in syncok
57
59 These functions all return TRUE or FALSE.
60
62 Both a macro and a function are provided for each name.
63
65 These routines are specific to ncurses. They were not supported on
66 Version 7, BSD or System V implementations. It is recommended that any
67 code depending on ncurses extensions be conditioned using NCURSES_VER‐
68 SION.
69
71 curses(3X), curs_inopts(3X), curs_outopts(3X), curs_window(3X)
72
73
74
75 curs_opaque(3X)