]> ncurses.scripts.mit.edu Git - ncurses.git/blob - ncurses/base/lib_newterm.c
ncurses 5.6
[ncurses.git] / ncurses / base / lib_newterm.c
1 /****************************************************************************
2  * Copyright (c) 1998-2005,2006 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  ****************************************************************************/
28
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  ****************************************************************************/
34
35 /*
36 **      lib_newterm.c
37 **
38 **      The newterm() function.
39 **
40 */
41
42 #include <curses.priv.h>
43
44 #if SVR4_TERMIO && !defined(_POSIX_SOURCE)
45 #define _POSIX_SOURCE
46 #endif
47
48 #include <term.h>               /* clear_screen, cup & friends, cur_term */
49 #include <tic.h>
50
51 MODULE_ID("$Id: lib_newterm.c,v 1.64 2006/01/14 15:36:24 tom Exp $")
52
53 #ifndef ONLCR                   /* Allows compilation under the QNX 4.2 OS */
54 #define ONLCR 0
55 #endif
56
57 /*
58  * SVr4/XSI Curses specify that hardware echo is turned off in initscr, and not
59  * restored during the curses session.  The library simulates echo in software.
60  * (The behavior is unspecified if the application enables hardware echo).
61  *
62  * The newterm function also initializes terminal settings, and since initscr
63  * is supposed to behave as if it calls newterm, we do it here.
64  */
65 static NCURSES_INLINE int
66 _nc_initscr(void)
67 {
68     int result = ERR;
69
70     /* for extended XPG4 conformance requires cbreak() at this point */
71     /* (SVr4 curses does this anyway) */
72     if (cbreak() == OK) {
73         TTY buf;
74
75         buf = cur_term->Nttyb;
76 #ifdef TERMIOS
77         buf.c_lflag &= ~(ECHO | ECHONL);
78         buf.c_iflag &= ~(ICRNL | INLCR | IGNCR);
79         buf.c_oflag &= ~(ONLCR);
80 #elif HAVE_SGTTY_H
81         buf.sg_flags &= ~(ECHO | CRMOD);
82 #else
83         memset(&buf, 0, sizeof(buf));
84 #endif
85         if ((result = _nc_set_tty_mode(&buf)) == OK)
86             cur_term->Nttyb = buf;
87     }
88     return result;
89 }
90
91 /*
92  * filter() has to be called before either initscr() or newterm(), so there is
93  * apparently no way to make this flag apply to some terminals and not others,
94  * aside from possibly delaying a filter() call until some terminals have been
95  * initialized.
96  */
97 static bool filter_mode = FALSE;
98
99 NCURSES_EXPORT(void)
100 filter(void)
101 {
102     START_TRACE();
103     T((T_CALLED("filter")));
104     filter_mode = TRUE;
105     returnVoid;
106 }
107
108 #if NCURSES_EXT_FUNCS
109 /*
110  * An extension, allowing the application to open a new screen without
111  * requiring it to also be filtered.
112  */
113 NCURSES_EXPORT(void)
114 nofilter(void)
115 {
116     START_TRACE();
117     T((T_CALLED("nofilter")));
118     filter_mode = FALSE;
119     returnVoid;
120 }
121 #endif
122
123 NCURSES_EXPORT(SCREEN *)
124 newterm(NCURSES_CONST char *name, FILE *ofp, FILE *ifp)
125 {
126     int value;
127     int errret;
128     int slk_format = _nc_slk_format;
129     SCREEN *current;
130     SCREEN *result = 0;
131
132     START_TRACE();
133     T((T_CALLED("newterm(\"%s\",%p,%p)"), name, ofp, ifp));
134
135     _nc_handle_sigwinch(0);
136
137     /* allow user to set maximum escape delay from the environment */
138     if ((value = _nc_getenv_num("ESCDELAY")) >= 0) {
139         ESCDELAY = value;
140     }
141
142     /* this loads the capability entry, then sets LINES and COLS */
143     if (setupterm(name, fileno(ofp), &errret) == ERR) {
144         result = 0;
145     } else {
146         /*
147          * This actually allocates the screen structure, and saves the original
148          * terminal settings.
149          */
150         current = SP;
151         _nc_set_screen(0);
152         if (_nc_setupscreen(LINES, COLS, ofp, filter_mode, slk_format) == ERR) {
153             _nc_set_screen(current);
154             result = 0;
155         } else {
156             /* if the terminal type has real soft labels, set those up */
157             if (slk_format && num_labels > 0 && SLK_STDFMT(slk_format))
158                 _nc_slk_initialize(stdscr, COLS);
159
160             SP->_ifd = fileno(ifp);
161             typeahead(fileno(ifp));
162 #ifdef TERMIOS
163             SP->_use_meta = ((cur_term->Ottyb.c_cflag & CSIZE) == CS8 &&
164                              !(cur_term->Ottyb.c_iflag & ISTRIP));
165 #else
166             SP->_use_meta = FALSE;
167 #endif
168             SP->_endwin = FALSE;
169
170             /*
171              * Check whether we can optimize scrolling under dumb terminals in
172              * case we do not have any of these capabilities, scrolling
173              * optimization will be useless.
174              */
175             SP->_scrolling = ((scroll_forward && scroll_reverse) ||
176                               ((parm_rindex ||
177                                 parm_insert_line ||
178                                 insert_line) &&
179                                (parm_index ||
180                                 parm_delete_line ||
181                                 delete_line)));
182
183             baudrate();         /* sets a field in the SP structure */
184
185             SP->_keytry = 0;
186
187             /*
188              * Check for mismatched graphic-rendition capabilities.  Most SVr4
189              * terminfo trees contain entries that have rmul or rmso equated to
190              * sgr0 (Solaris curses copes with those entries).  We do this only
191              * for curses, since many termcap applications assume that
192              * smso/rmso and smul/rmul are paired, and will not function
193              * properly if we remove rmso or rmul.  Curses applications
194              * shouldn't be looking at this detail.
195              */
196 #define SGR0_TEST(mode) (mode != 0) && (exit_attribute_mode == 0 || strcmp(mode, exit_attribute_mode))
197             SP->_use_rmso = SGR0_TEST(exit_standout_mode);
198             SP->_use_rmul = SGR0_TEST(exit_underline_mode);
199
200             /* compute movement costs so we can do better move optimization */
201             _nc_mvcur_init();
202
203             /* initialize terminal to a sane state */
204             _nc_screen_init();
205
206             /* Initialize the terminal line settings. */
207             _nc_initscr();
208
209             _nc_signal_handler(TRUE);
210
211             result = SP;
212         }
213     }
214     _nc_handle_sigwinch(1);
215     returnSP(result);
216 }