missing ncurses sources
[tomato.git] / release / src / router / libncurses / ncurses / tinfo / lib_options.c
blob654bf940aa1f9fc8940dc13798a02456d2419772
1 /****************************************************************************
2 * Copyright (c) 1998-2008,2009 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.71 2009/10/24 21:56:15 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 && IsTermInfo(sp)) {
60 sp->_nc_sp_idlok =
61 win->_idlok = (flag && (NCURSES_SP_NAME(has_il) (NCURSES_SP_ARG)
62 || change_scroll_region));
63 res = OK;
66 returnCode(res);
69 NCURSES_EXPORT(void)
70 idcok(WINDOW *win, bool flag)
72 T((T_CALLED("idcok(%p,%d)"), (void *) win, flag));
74 if (win) {
75 SCREEN *sp = _nc_screen_of(win);
76 sp->_nc_sp_idcok = win->_idcok = (flag && NCURSES_SP_NAME(has_ic) (NCURSES_SP_ARG));
78 returnVoid;
81 NCURSES_EXPORT(int)
82 NCURSES_SP_NAME(halfdelay) (NCURSES_SP_DCLx int t)
84 T((T_CALLED("halfdelay(%p,%d)"), (void *) SP_PARM, t));
86 if (t < 1 || t > 255 || !IsValidTIScreen(SP_PARM))
87 returnCode(ERR);
89 NCURSES_SP_NAME(cbreak) (NCURSES_SP_ARG);
90 SP_PARM->_cbreak = t + 1;
91 returnCode(OK);
94 #if NCURSES_SP_FUNCS
95 NCURSES_EXPORT(int)
96 halfdelay(int t)
98 return NCURSES_SP_NAME(halfdelay) (CURRENT_SCREEN, t);
100 #endif
102 NCURSES_EXPORT(int)
103 nodelay(WINDOW *win, bool flag)
105 T((T_CALLED("nodelay(%p,%d)"), (void *) win, flag));
107 if (win) {
108 if (flag == TRUE)
109 win->_delay = 0;
110 else
111 win->_delay = -1;
112 returnCode(OK);
113 } else
114 returnCode(ERR);
117 NCURSES_EXPORT(int)
118 notimeout(WINDOW *win, bool f)
120 T((T_CALLED("notimeout(%p,%d)"), (void *) win, f));
122 if (win) {
123 win->_notimeout = f;
124 returnCode(OK);
125 } else
126 returnCode(ERR);
129 NCURSES_EXPORT(void)
130 wtimeout(WINDOW *win, int delay)
132 T((T_CALLED("wtimeout(%p,%d)"), (void *) win, delay));
134 if (win) {
135 win->_delay = delay;
137 returnVoid;
140 NCURSES_EXPORT(int)
141 keypad(WINDOW *win, bool flag)
143 T((T_CALLED("keypad(%p,%d)"), (void *) win, flag));
145 if (win) {
146 win->_use_keypad = flag;
147 returnCode(_nc_keypad(_nc_screen_of(win), flag));
148 } else
149 returnCode(ERR);
152 NCURSES_EXPORT(int)
153 meta(WINDOW *win GCC_UNUSED, bool flag)
155 int result = ERR;
156 SCREEN *sp = (win == 0) ? CURRENT_SCREEN : _nc_screen_of(win);
158 /* Ok, we stay relaxed and don't signal an error if win is NULL */
159 T((T_CALLED("meta(%p,%d)"), (void *) win, flag));
161 /* Ok, we stay relaxed and don't signal an error if win is NULL */
163 if (sp != 0) {
164 sp->_use_meta = flag;
165 #ifdef USE_TERM_DRIVER
166 if (IsTermInfo(sp)) {
167 if (flag) {
168 NCURSES_SP_NAME(_nc_putp) (NCURSES_SP_ARGx "meta_on", meta_on);
169 } else {
170 NCURSES_SP_NAME(_nc_putp) (NCURSES_SP_ARGx "meta_off", meta_off);
173 #else
174 if (flag) {
175 NCURSES_SP_NAME(_nc_putp) (NCURSES_SP_ARGx "meta_on", meta_on);
176 } else {
177 NCURSES_SP_NAME(_nc_putp) (NCURSES_SP_ARGx "meta_off", meta_off);
179 #endif
180 result = OK;
182 returnCode(result);
185 /* curs_set() moved here to narrow the kernel interface */
187 NCURSES_EXPORT(int)
188 NCURSES_SP_NAME(curs_set) (NCURSES_SP_DCLx int vis)
190 int code = ERR;
191 T((T_CALLED("curs_set(%p,%d)"), (void *) SP_PARM, vis));
193 if (SP_PARM != 0 && vis >= 0 && vis <= 2) {
194 int cursor = SP_PARM->_cursor;
195 bool bBuiltIn = !IsTermInfo(SP_PARM);
196 if (vis == cursor) {
197 code = cursor;
198 } else {
199 if (!bBuiltIn) {
200 switch (vis) {
201 case 2:
202 code = NCURSES_SP_NAME(_nc_putp_flush) (NCURSES_SP_ARGx
203 "cursor_visible",
204 cursor_visible);
205 break;
206 case 1:
207 code = NCURSES_SP_NAME(_nc_putp_flush) (NCURSES_SP_ARGx
208 "cursor_normal",
209 cursor_normal);
210 break;
211 case 0:
212 code = NCURSES_SP_NAME(_nc_putp_flush) (NCURSES_SP_ARGx
213 "cursor_invisible",
214 cursor_invisible);
215 break;
217 } else
218 code = ERR;
219 if (code != ERR)
220 code = (cursor == -1 ? 1 : cursor);
221 SP_PARM->_cursor = vis;
224 returnCode(code);
227 #if NCURSES_SP_FUNCS
228 NCURSES_EXPORT(int)
229 curs_set(int vis)
231 return (NCURSES_SP_NAME(curs_set) (CURRENT_SCREEN, vis));
233 #endif
235 NCURSES_EXPORT(int)
236 NCURSES_SP_NAME(typeahead) (NCURSES_SP_DCLx int fd)
238 T((T_CALLED("typeahead(%p, %d)"), (void *) SP_PARM, fd));
239 if (IsValidTIScreen(SP_PARM)) {
240 SP_PARM->_checkfd = fd;
241 returnCode(OK);
242 } else {
243 returnCode(ERR);
247 #if NCURSES_SP_FUNCS
248 NCURSES_EXPORT(int)
249 typeahead(int fd)
251 return NCURSES_SP_NAME(typeahead) (CURRENT_SCREEN, fd);
253 #endif
256 ** has_key()
258 ** Return TRUE if the current terminal has the given key
262 #if NCURSES_EXT_FUNCS
263 static int
264 has_key_internal(int keycode, TRIES * tp)
266 if (tp == 0)
267 return (FALSE);
268 else if (tp->value == keycode)
269 return (TRUE);
270 else
271 return (has_key_internal(keycode, tp->child)
272 || has_key_internal(keycode, tp->sibling));
275 #ifdef USE_TERM_DRIVER
276 NCURSES_EXPORT(int)
277 TINFO_HAS_KEY(SCREEN *sp, int keycode)
279 return IsValidTIScreen(sp) ?
280 has_key_internal(keycode, sp->_keytry) : 0;
282 #else
283 NCURSES_EXPORT(int)
284 NCURSES_SP_NAME(has_key) (NCURSES_SP_DCLx int keycode)
286 T((T_CALLED("has_key(%p,%d)"), (void *) SP_PARM, keycode));
287 returnCode(SP != 0 ? has_key_internal(keycode, SP_PARM->_keytry) : FALSE);
290 #if NCURSES_SP_FUNCS
291 NCURSES_EXPORT(int)
292 has_key(int keycode)
294 return NCURSES_SP_NAME(has_key) (CURRENT_SCREEN, keycode);
296 #endif
297 #endif
298 #endif /* NCURSES_EXT_FUNCS */
300 NCURSES_EXPORT(int)
301 NCURSES_SP_NAME(_nc_putp_flush) (NCURSES_SP_DCLx
302 const char *name, const char *value)
304 int rc = NCURSES_SP_NAME(_nc_putp) (NCURSES_SP_ARGx name, value);
305 if (rc != ERR) {
306 _nc_flush();
308 return rc;
311 #if 0 && NCURSES_SP_FUNCS
312 NCURSES_EXPORT(int)
313 _nc_putp_flush(const char *name, const char *value)
315 return NCURSES_SP_NAME(_nc_putp_flush) (CURRENT_SCREEN, name, value);
317 #endif
319 /* Turn the keypad on/off
321 * Note: we flush the output because changing this mode causes some terminals
322 * to emit different escape sequences for cursor and keypad keys. If we don't
323 * flush, then the next wgetch may get the escape sequence that corresponds to
324 * the terminal state _before_ switching modes.
326 NCURSES_EXPORT(int)
327 _nc_keypad(SCREEN *sp, bool flag)
329 int rc = ERR;
331 if (sp != 0) {
332 #ifdef USE_PTHREADS
334 * We might have this situation in a multithreaded application that
335 * has wgetch() reading in more than one thread. putp() and below
336 * may use SP explicitly.
338 if (_nc_use_pthreads && sp != CURRENT_SCREEN) {
339 SCREEN *save_sp;
341 /* cannot use use_screen(), since that is not in tinfo library */
342 _nc_lock_global(curses);
343 save_sp = CURRENT_SCREEN;
344 _nc_set_screen(sp);
345 rc = _nc_keypad(sp, flag);
346 _nc_set_screen(save_sp);
347 _nc_unlock_global(curses);
348 } else
349 #endif
351 #ifdef USE_TERM_DRIVER
352 rc = CallDriver_1(sp, kpad, flag);
353 if (rc == OK)
354 sp->_keypad_on = flag;
355 #else
356 if (flag) {
357 (void) NCURSES_SP_NAME(_nc_putp_flush) (NCURSES_SP_ARGx
358 "keypad_xmit",
359 keypad_xmit);
360 } else if (!flag && keypad_local) {
361 (void) NCURSES_SP_NAME(_nc_putp_flush) (NCURSES_SP_ARGx
362 "keypad_local",
363 keypad_local);
366 if (flag && !sp->_tried) {
367 _nc_init_keytry(sp);
368 sp->_tried = TRUE;
370 sp->_keypad_on = flag;
371 rc = OK;
372 #endif
375 return (rc);