libncurses: updated to 6.0
[tomato.git] / release / src / router / libncurses / ncurses / tinfo / lib_options.c
blobb736d5fcab40c065840705d1705bec03863e9da3
1 /****************************************************************************
2 * Copyright (c) 1998-2013,2014 Free Software Foundation, Inc. *
3 * *
4 * Permission is hereby granted, free of charge, to any person obtaining a *
5 * copy of this software and associated documentation files (the *
6 * "Software"), to deal in the Software without restriction, including *
7 * without limitation the rights to use, copy, modify, merge, publish, *
8 * distribute, distribute with modifications, sublicense, and/or sell *
9 * copies of the Software, and to permit persons to whom the Software is *
10 * furnished to do so, subject to the following conditions: *
11 * *
12 * The above copyright notice and this permission notice shall be included *
13 * in all copies or substantial portions of the Software. *
14 * *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS *
16 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF *
17 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. *
18 * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, *
19 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR *
20 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR *
21 * THE USE OR OTHER DEALINGS IN THE SOFTWARE. *
22 * *
23 * Except as contained in this notice, the name(s) of the above copyright *
24 * holders shall not be used in advertising or otherwise to promote the *
25 * sale, use or other dealings in this Software without prior written *
26 * authorization. *
27 ****************************************************************************/
29 /****************************************************************************
30 * Author: Zeyd M. Ben-Halim <zmbenhal@netcom.com> 1992,1995 *
31 * and: Eric S. Raymond <esr@snark.thyrsus.com> *
32 * and: Thomas E. Dickey 1996-on *
33 * and: Juergen Pfeifer 2009 *
34 ****************************************************************************/
37 ** lib_options.c
39 ** The routines to handle option setting.
43 #include <curses.priv.h>
45 #ifndef CUR
46 #define CUR SP_TERMTYPE
47 #endif
49 MODULE_ID("$Id: lib_options.c,v 1.78 2014/09/27 21:55:24 tom Exp $")
51 NCURSES_EXPORT(int)
52 idlok(WINDOW *win, bool flag)
54 int res = ERR;
55 T((T_CALLED("idlok(%p,%d)"), (void *) win, flag));
57 if (win) {
58 SCREEN *sp = _nc_screen_of(win);
59 if (sp != 0
60 #ifdef USE_TERM_DRIVER
61 && IsTermInfo(sp)
62 #endif
63 ) {
64 sp->_nc_sp_idlok =
65 win->_idlok = (flag && (NCURSES_SP_NAME(has_il) (NCURSES_SP_ARG)
66 || change_scroll_region));
67 res = OK;
70 returnCode(res);
73 NCURSES_EXPORT(void)
74 idcok(WINDOW *win, bool flag)
76 T((T_CALLED("idcok(%p,%d)"), (void *) win, flag));
78 if (win) {
79 SCREEN *sp = _nc_screen_of(win);
80 sp->_nc_sp_idcok = win->_idcok = (flag && NCURSES_SP_NAME(has_ic) (NCURSES_SP_ARG));
82 returnVoid;
85 NCURSES_EXPORT(int)
86 NCURSES_SP_NAME(halfdelay) (NCURSES_SP_DCLx int t)
88 T((T_CALLED("halfdelay(%p,%d)"), (void *) SP_PARM, t));
90 if (t < 1 || t > 255 || !IsValidTIScreen(SP_PARM))
91 returnCode(ERR);
93 NCURSES_SP_NAME(cbreak) (NCURSES_SP_ARG);
94 SP_PARM->_cbreak = t + 1;
95 returnCode(OK);
98 #if NCURSES_SP_FUNCS
99 NCURSES_EXPORT(int)
100 halfdelay(int t)
102 return NCURSES_SP_NAME(halfdelay) (CURRENT_SCREEN, t);
104 #endif
106 NCURSES_EXPORT(int)
107 nodelay(WINDOW *win, bool flag)
109 T((T_CALLED("nodelay(%p,%d)"), (void *) win, flag));
111 if (win) {
112 if (flag == TRUE)
113 win->_delay = 0;
114 else
115 win->_delay = -1;
116 returnCode(OK);
117 } else
118 returnCode(ERR);
121 NCURSES_EXPORT(int)
122 notimeout(WINDOW *win, bool f)
124 T((T_CALLED("notimeout(%p,%d)"), (void *) win, f));
126 if (win) {
127 win->_notimeout = f;
128 returnCode(OK);
129 } else
130 returnCode(ERR);
133 NCURSES_EXPORT(void)
134 wtimeout(WINDOW *win, int delay)
136 T((T_CALLED("wtimeout(%p,%d)"), (void *) win, delay));
138 if (win) {
139 win->_delay = delay;
141 returnVoid;
144 NCURSES_EXPORT(int)
145 keypad(WINDOW *win, bool flag)
147 T((T_CALLED("keypad(%p,%d)"), (void *) win, flag));
149 if (win) {
150 win->_use_keypad = flag;
151 returnCode(_nc_keypad(_nc_screen_of(win), flag));
152 } else
153 returnCode(ERR);
156 NCURSES_EXPORT(int)
157 meta(WINDOW *win GCC_UNUSED, bool flag)
159 int result = ERR;
160 SCREEN *sp = (win == 0) ? CURRENT_SCREEN : _nc_screen_of(win);
162 /* Ok, we stay relaxed and don't signal an error if win is NULL */
163 T((T_CALLED("meta(%p,%d)"), (void *) win, flag));
165 /* Ok, we stay relaxed and don't signal an error if win is NULL */
167 if (sp != 0) {
168 sp->_use_meta = flag;
169 #ifdef USE_TERM_DRIVER
170 if (IsTermInfo(sp)) {
171 if (flag) {
172 NCURSES_PUTP2("meta_on", meta_on);
173 } else {
174 NCURSES_PUTP2("meta_off", meta_off);
177 #else
178 if (flag) {
179 NCURSES_PUTP2("meta_on", meta_on);
180 } else {
181 NCURSES_PUTP2("meta_off", meta_off);
183 #endif
184 result = OK;
186 returnCode(result);
189 /* curs_set() moved here to narrow the kernel interface */
191 NCURSES_EXPORT(int)
192 NCURSES_SP_NAME(curs_set) (NCURSES_SP_DCLx int vis)
194 int code = ERR;
195 T((T_CALLED("curs_set(%p,%d)"), (void *) SP_PARM, vis));
197 if (SP_PARM != 0 && vis >= 0 && vis <= 2) {
198 int cursor = SP_PARM->_cursor;
199 if (vis == cursor) {
200 code = cursor;
201 } else {
202 #ifdef USE_TERM_DRIVER
203 code = CallDriver_1(SP_PARM, td_cursorSet, vis);
204 #else
205 if (IsTermInfo(SP_PARM)) {
206 switch (vis) {
207 case 2:
208 code = NCURSES_PUTP2_FLUSH("cursor_visible",
209 cursor_visible);
210 break;
211 case 1:
212 code = NCURSES_PUTP2_FLUSH("cursor_normal",
213 cursor_normal);
214 break;
215 case 0:
216 code = NCURSES_PUTP2_FLUSH("cursor_invisible",
217 cursor_invisible);
218 break;
220 } else {
221 code = ERR;
223 #endif
224 if (code != ERR)
225 code = (cursor == -1 ? 1 : cursor);
226 SP_PARM->_cursor = vis;
229 returnCode(code);
232 #if NCURSES_SP_FUNCS
233 NCURSES_EXPORT(int)
234 curs_set(int vis)
236 return (NCURSES_SP_NAME(curs_set) (CURRENT_SCREEN, vis));
238 #endif
240 NCURSES_EXPORT(int)
241 NCURSES_SP_NAME(typeahead) (NCURSES_SP_DCLx int fd)
243 T((T_CALLED("typeahead(%p, %d)"), (void *) SP_PARM, fd));
244 if (IsValidTIScreen(SP_PARM)) {
245 SP_PARM->_checkfd = fd;
246 returnCode(OK);
247 } else {
248 returnCode(ERR);
252 #if NCURSES_SP_FUNCS
253 NCURSES_EXPORT(int)
254 typeahead(int fd)
256 return NCURSES_SP_NAME(typeahead) (CURRENT_SCREEN, fd);
258 #endif
261 ** has_key()
263 ** Return TRUE if the current terminal has the given key
267 #if NCURSES_EXT_FUNCS
268 static int
269 has_key_internal(int keycode, TRIES * tp)
271 if (tp == 0)
272 return (FALSE);
273 else if (tp->value == keycode)
274 return (TRUE);
275 else
276 return (has_key_internal(keycode, tp->child)
277 || has_key_internal(keycode, tp->sibling));
280 #ifdef USE_TERM_DRIVER
281 NCURSES_EXPORT(int)
282 TINFO_HAS_KEY(SCREEN *sp, int keycode)
284 return IsValidTIScreen(sp) ?
285 has_key_internal(keycode, sp->_keytry) : 0;
287 #else
288 NCURSES_EXPORT(int)
289 NCURSES_SP_NAME(has_key) (NCURSES_SP_DCLx int keycode)
291 T((T_CALLED("has_key(%p,%d)"), (void *) SP_PARM, keycode));
292 returnCode(SP != 0 ? has_key_internal(keycode, SP_PARM->_keytry) : FALSE);
295 #if NCURSES_SP_FUNCS
296 NCURSES_EXPORT(int)
297 has_key(int keycode)
299 return NCURSES_SP_NAME(has_key) (CURRENT_SCREEN, keycode);
301 #endif
302 #endif
303 #endif /* NCURSES_EXT_FUNCS */
305 NCURSES_EXPORT(int)
306 NCURSES_SP_NAME(_nc_putp_flush) (NCURSES_SP_DCLx
307 const char *name, const char *value)
309 int rc = NCURSES_PUTP2(name, value);
310 if (rc != ERR) {
311 _nc_flush();
313 return rc;
316 #if 0 && NCURSES_SP_FUNCS
317 NCURSES_EXPORT(int)
318 _nc_putp_flush(const char *name, const char *value)
320 return NCURSES_SP_NAME(_nc_putp_flush) (CURRENT_SCREEN, name, value);
322 #endif
324 /* Turn the keypad on/off
326 * Note: we flush the output because changing this mode causes some terminals
327 * to emit different escape sequences for cursor and keypad keys. If we don't
328 * flush, then the next wgetch may get the escape sequence that corresponds to
329 * the terminal state _before_ switching modes.
331 NCURSES_EXPORT(int)
332 _nc_keypad(SCREEN *sp, int flag)
334 int rc = ERR;
336 if (sp != 0) {
337 #ifdef USE_PTHREADS
339 * We might have this situation in a multithreaded application that
340 * has wgetch() reading in more than one thread. putp() and below
341 * may use SP explicitly.
343 if (_nc_use_pthreads && sp != CURRENT_SCREEN) {
344 SCREEN *save_sp;
346 /* cannot use use_screen(), since that is not in tinfo library */
347 _nc_lock_global(curses);
348 save_sp = CURRENT_SCREEN;
349 _nc_set_screen(sp);
350 rc = _nc_keypad(sp, flag);
351 _nc_set_screen(save_sp);
352 _nc_unlock_global(curses);
353 } else
354 #endif
356 #ifdef USE_TERM_DRIVER
357 rc = CallDriver_1(sp, td_kpad, flag);
358 if (rc == OK)
359 sp->_keypad_on = flag;
360 #else
361 if (flag) {
362 (void) NCURSES_PUTP2_FLUSH("keypad_xmit", keypad_xmit);
363 } else if (!flag && keypad_local) {
364 (void) NCURSES_PUTP2_FLUSH("keypad_local", keypad_local);
367 if (flag && !sp->_tried) {
368 _nc_init_keytry(sp);
369 sp->_tried = TRUE;
371 sp->_keypad_on = flag;
372 rc = OK;
373 #endif
376 return (rc);