]> ncurses.scripts.mit.edu Git - ncurses.git/blob - ncurses/base/lib_set_term.c
18e43531ce813dd8e2878231caed6e28137217f0
[ncurses.git] / ncurses / base / lib_set_term.c
1 /****************************************************************************
2  * Copyright 2018,2020 Thomas E. Dickey                                     *
3  * Copyright 1998-2016,2017 Free Software Foundation, Inc.                  *
4  *                                                                          *
5  * Permission is hereby granted, free of charge, to any person obtaining a  *
6  * copy of this software and associated documentation files (the            *
7  * "Software"), to deal in the Software without restriction, including      *
8  * without limitation the rights to use, copy, modify, merge, publish,      *
9  * distribute, distribute with modifications, sublicense, and/or sell       *
10  * copies of the Software, and to permit persons to whom the Software is    *
11  * furnished to do so, subject to the following conditions:                 *
12  *                                                                          *
13  * The above copyright notice and this permission notice shall be included  *
14  * in all copies or substantial portions of the Software.                   *
15  *                                                                          *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
17  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
18  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
19  * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
20  * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
21  * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
22  * THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
23  *                                                                          *
24  * Except as contained in this notice, the name(s) of the above copyright   *
25  * holders shall not be used in advertising or otherwise to promote the     *
26  * sale, use or other dealings in this Software without prior written       *
27  * authorization.                                                           *
28  ****************************************************************************/
29
30 /****************************************************************************
31  *  Author: Zeyd M. Ben-Halim <zmbenhal@netcom.com> 1992,1995               *
32  *     and: Eric S. Raymond <esr@snark.thyrsus.com>                         *
33  *     and: Thomas E. Dickey                        1996-on                 *
34  *     and: Juergen Pfeifer                         2009                    *
35  ****************************************************************************/
36
37 /*
38 **      lib_set_term.c
39 **
40 **      The routine set_term().
41 **
42 */
43
44 #include <curses.priv.h>
45 #include <tic.h>
46
47 #if USE_GPM_SUPPORT
48 #ifdef HAVE_LIBDL
49 /* use dynamic loader to avoid linkage dependency */
50 #include <dlfcn.h>
51 #endif
52 #endif
53
54 #undef CUR
55 #define CUR SP_TERMTYPE
56
57 MODULE_ID("$Id: lib_set_term.c,v 1.173 2020/06/13 21:38:43 tom Exp $")
58
59 #ifdef USE_TERM_DRIVER
60 #define MaxColors      InfoOf(sp).maxcolors
61 #define NumLabels      InfoOf(sp).numlabels
62 #else
63 #define MaxColors      max_colors
64 #define NumLabels      num_labels
65 #endif
66
67 NCURSES_EXPORT(SCREEN *)
68 set_term(SCREEN *screenp)
69 {
70     SCREEN *oldSP;
71     SCREEN *newSP;
72
73     T((T_CALLED("set_term(%p)"), (void *) screenp));
74
75     _nc_lock_global(curses);
76
77     oldSP = CURRENT_SCREEN;
78     _nc_set_screen(screenp);
79     newSP = screenp;
80
81     if (newSP != 0) {
82         TINFO_SET_CURTERM(newSP, newSP->_term);
83 #if !USE_REENTRANT
84         curscr = CurScreen(newSP);
85         newscr = NewScreen(newSP);
86         stdscr = StdScreen(newSP);
87         COLORS = newSP->_color_count;
88         COLOR_PAIRS = newSP->_pair_count;
89 #endif
90     } else {
91         TINFO_SET_CURTERM(oldSP, 0);
92 #if !USE_REENTRANT
93         curscr = 0;
94         newscr = 0;
95         stdscr = 0;
96         COLORS = 0;
97         COLOR_PAIRS = 0;
98 #endif
99     }
100
101     _nc_unlock_global(curses);
102
103     T((T_RETURN("%p"), (void *) oldSP));
104     return (oldSP);
105 }
106
107 static void
108 _nc_free_keytry(TRIES * kt)
109 {
110     if (kt != 0) {
111         _nc_free_keytry(kt->child);
112         _nc_free_keytry(kt->sibling);
113         free(kt);
114     }
115 }
116
117 static bool
118 delink_screen(SCREEN *sp)
119 {
120     SCREEN *last = 0;
121     SCREEN *temp;
122     bool result = FALSE;
123
124     for (each_screen(temp)) {
125         if (temp == sp) {
126             if (last)
127                 last->_next_screen = sp->_next_screen;
128             else
129                 _nc_screen_chain = sp->_next_screen;
130             result = TRUE;
131             break;
132         }
133         last = temp;
134     }
135     return result;
136 }
137
138 /*
139  * Free the storage associated with the given SCREEN sp.
140  */
141 NCURSES_EXPORT(void)
142 delscreen(SCREEN *sp)
143 {
144
145     T((T_CALLED("delscreen(%p)"), (void *) sp));
146
147     _nc_lock_global(curses);
148     if (delink_screen(sp)) {
149 #ifdef USE_SP_RIPOFF
150         ripoff_t *rop;
151         if (safe_ripoff_sp && safe_ripoff_sp != safe_ripoff_stack) {
152             for (rop = safe_ripoff_stack;
153                  rop != safe_ripoff_sp && (rop - safe_ripoff_stack) < N_RIPS;
154                  rop++) {
155                 if (rop->win) {
156                     (void) delwin(rop->win);
157                     rop->win = 0;
158                 }
159             }
160         }
161 #endif
162
163         (void) _nc_freewin(CurScreen(sp));
164         (void) _nc_freewin(NewScreen(sp));
165         (void) _nc_freewin(StdScreen(sp));
166
167         if (sp->_slk != 0) {
168
169             if (sp->_slk->ent != 0) {
170                 int i;
171
172                 for (i = 0; i < sp->_slk->labcnt; ++i) {
173                     FreeIfNeeded(sp->_slk->ent[i].ent_text);
174                     FreeIfNeeded(sp->_slk->ent[i].form_text);
175                 }
176                 free(sp->_slk->ent);
177             }
178             free(sp->_slk);
179             sp->_slk = 0;
180         }
181
182         _nc_free_keytry(sp->_keytry);
183         sp->_keytry = 0;
184
185         _nc_free_keytry(sp->_key_ok);
186         sp->_key_ok = 0;
187
188         FreeIfNeeded(sp->_current_attr);
189
190         FreeIfNeeded(sp->_color_table);
191         FreeIfNeeded(sp->_color_pairs);
192
193         FreeIfNeeded(sp->_oldnum_list);
194         FreeIfNeeded(sp->oldhash);
195         FreeIfNeeded(sp->newhash);
196         FreeIfNeeded(sp->hashtab);
197
198         FreeIfNeeded(sp->_acs_map);
199         FreeIfNeeded(sp->_screen_acs_map);
200
201         NCURSES_SP_NAME(_nc_flush) (NCURSES_SP_ARG);
202         NCURSES_SP_NAME(del_curterm) (NCURSES_SP_ARGx sp->_term);
203         FreeIfNeeded(sp->out_buffer);
204         if (_nc_find_prescr() == sp) {
205             _nc_forget_prescr();
206         }
207 #if USE_GPM_SUPPORT
208 #ifdef HAVE_LIBDL
209         if (sp->_dlopen_gpm != 0) {
210             dlclose(sp->_dlopen_gpm);
211             sp->_dlopen_gpm = 0;
212         }
213 #endif
214 #endif /* USE_GPM_SUPPORT */
215         free(sp);
216
217         /*
218          * If this was the current screen, reset everything that the
219          * application might try to use (except cur_term, which may have
220          * multiple references in different screens).
221          */
222         if (sp == CURRENT_SCREEN) {
223 #if !USE_REENTRANT
224             curscr = 0;
225             newscr = 0;
226             stdscr = 0;
227             COLORS = 0;
228             COLOR_PAIRS = 0;
229 #endif
230             _nc_set_screen(0);
231 #if USE_WIDEC_SUPPORT
232             if (SP == 0) {
233                 FreeIfNeeded(_nc_wacs);
234                 _nc_wacs = 0;
235             }
236 #endif
237         }
238     }
239     _nc_unlock_global(curses);
240
241     returnVoid;
242 }
243
244 static bool
245 no_mouse_event(SCREEN *sp GCC_UNUSED)
246 {
247     return FALSE;
248 }
249
250 static bool
251 no_mouse_inline(SCREEN *sp GCC_UNUSED)
252 {
253     return FALSE;
254 }
255
256 static bool
257 no_mouse_parse(SCREEN *sp GCC_UNUSED, int code GCC_UNUSED)
258 {
259     return TRUE;
260 }
261
262 static void
263 no_mouse_resume(SCREEN *sp GCC_UNUSED)
264 {
265 }
266
267 static void
268 no_mouse_wrap(SCREEN *sp GCC_UNUSED)
269 {
270 }
271
272 #if NCURSES_EXT_FUNCS && USE_COLORFGBG
273 static const char *
274 extract_fgbg(const char *src, int *result)
275 {
276     const char *dst = 0;
277     char *tmp = 0;
278     long value = strtol(src, &tmp, 0);
279
280     if ((dst = tmp) == 0) {
281         dst = src;
282     } else if (value >= 0) {
283         *result = (int) value;
284     }
285     while (*dst != 0 && *dst != ';')
286         dst++;
287     if (*dst == ';')
288         dst++;
289     return dst;
290 }
291 #endif
292
293 #define ReturnScreenError() do { _nc_set_screen(0); \
294                             returnCode(ERR); } while (0)
295
296 /* OS-independent screen initializations */
297 NCURSES_EXPORT(int)
298 NCURSES_SP_NAME(_nc_setupscreen) (
299 #if NCURSES_SP_FUNCS
300                                      SCREEN **spp,
301 #endif
302                                      int slines,
303                                      int scolumns,
304                                      FILE *output,
305                                      int filtered,
306                                      int slk_format)
307 {
308 #ifndef USE_TERM_DRIVER
309     static const TTY null_TTY;  /* all zeros iff uninitialized */
310 #endif
311     char *env;
312     int bottom_stolen = 0;
313     SCREEN *sp;
314 #ifndef USE_TERM_DRIVER
315     bool support_cookies = USE_XMC_SUPPORT;
316 #endif
317
318     T((T_CALLED("_nc_setupscreen(%d, %d, %p, %d, %d)"),
319        slines, scolumns, (void *) output, filtered, slk_format));
320
321     assert(CURRENT_SCREEN == 0);        /* has been reset in newterm() ! */
322
323 #if NCURSES_SP_FUNCS
324     assert(spp != 0);
325     sp = *spp;
326
327     if (!sp) {
328         sp = _nc_alloc_screen_sp();
329         T(("_nc_alloc_screen_sp %p", (void *) sp));
330         *spp = sp;
331     }
332     if (!sp
333         || ((sp->_acs_map = typeCalloc(chtype, ACS_LEN)) == 0)
334         || ((sp->_screen_acs_map = typeCalloc(bool, ACS_LEN)) == 0)) {
335         ReturnScreenError();
336     }
337
338     T(("created SP %p", (void *) sp));
339     sp->_next_screen = _nc_screen_chain;
340     _nc_screen_chain = sp;
341
342     if ((sp->_current_attr = typeCalloc(NCURSES_CH_T, 1)) == 0) {
343         ReturnScreenError();
344     }
345 #else
346     if (!_nc_alloc_screen()
347         || ((SP->_acs_map = typeCalloc(chtype, ACS_LEN)) == 0)
348         || ((SP->_screen_acs_map = typeCalloc(bool, ACS_LEN)) == 0)) {
349         returnCode(ERR);
350     }
351
352     T(("created SP %p", (void *) SP));
353
354     sp = SP;                    /* fixup so SET_LINES and SET_COLS works */
355     sp->_next_screen = _nc_screen_chain;
356     _nc_screen_chain = sp;
357
358     if ((sp->_current_attr = typeCalloc(NCURSES_CH_T, 1)) == 0) {
359         returnCode(ERR);
360     }
361 #endif
362
363     /*
364      * We should always check the screensize, just in case.
365      */
366     _nc_set_screen(sp);
367     sp->_term = cur_term;
368 #ifdef USE_TERM_DRIVER
369     TCBOf(sp)->csp = sp;
370     _nc_get_screensize(sp, sp->_term, &slines, &scolumns);
371 #else
372     _nc_get_screensize(sp, &slines, &scolumns);
373 #endif
374     SET_LINES(slines);
375     SET_COLS(scolumns);
376
377     T((T_CREATE("screen %s %dx%d"),
378        NCURSES_SP_NAME(termname) (NCURSES_SP_ARG), slines, scolumns));
379
380     sp->_filtered = filtered;
381
382     /* implement filter mode */
383     if (filtered) {
384         slines = 1;
385         SET_LINES(slines);
386 #ifdef USE_TERM_DRIVER
387         CallDriver(sp, td_setfilter);
388 #else
389         /* *INDENT-EQLS* */
390         clear_screen     = ABSENT_STRING;
391         cursor_address   = ABSENT_STRING;
392         cursor_down      = ABSENT_STRING;
393         cursor_up        = ABSENT_STRING;
394         parm_down_cursor = ABSENT_STRING;
395         parm_up_cursor   = ABSENT_STRING;
396         row_address      = ABSENT_STRING;
397         cursor_home      = carriage_return;
398
399         if (back_color_erase)
400             clr_eos = ABSENT_STRING;
401
402 #endif
403         T(("filter screensize %dx%d", slines, scolumns));
404     }
405 #ifdef __DJGPP__
406     T(("setting output mode to binary"));
407     fflush(output);
408     setmode(output, O_BINARY);
409 #endif
410     NCURSES_SP_NAME(_nc_set_buffer) (NCURSES_SP_ARGx output, TRUE);
411     sp->_lines = (NCURSES_SIZE_T) slines;
412     sp->_lines_avail = (NCURSES_SIZE_T) slines;
413     sp->_columns = (NCURSES_SIZE_T) scolumns;
414
415     fflush(output);
416     sp->_ofd = output ? fileno(output) : -1;
417     sp->_ofp = output;
418     sp->out_limit = (size_t) ((2 + slines) * (6 + scolumns));
419     if ((sp->out_buffer = malloc(sp->out_limit)) == 0)
420         sp->out_limit = 0;
421     sp->out_inuse = 0;
422
423     SP_PRE_INIT(sp);
424     SetNoPadding(sp);
425
426 #if NCURSES_EXT_FUNCS
427     sp->_default_color = FALSE;
428     sp->_has_sgr_39_49 = FALSE;
429
430     /*
431      * Set our assumption of the terminal's default foreground and background
432      * colors.  The curs_color man-page states that we can assume that the
433      * background is black.  The origin of this assumption appears to be
434      * terminals that displayed colored text, but no colored backgrounds, e.g.,
435      * the first colored terminals around 1980.  More recent ones with better
436      * technology can display not only colored backgrounds, but all
437      * combinations.  So a terminal might be something other than "white" on
438      * black (green/black looks monochrome too), but black on white or even
439      * on ivory.
440      *
441      * White-on-black is the simplest thing to use for monochrome.  Almost
442      * all applications that use color paint both text and background, so
443      * the distinction is moot.  But a few do not - which is why we leave this
444      * configurable (a better solution is to use assume_default_colors() for
445      * the rare applications that do require that sort of appearance, since
446      * is appears that more users expect to be able to make a white-on-black
447      * or black-on-white display under control of the application than not).
448      */
449 #ifdef USE_ASSUMED_COLOR
450     sp->_default_fg = COLOR_WHITE;
451     sp->_default_bg = COLOR_BLACK;
452 #else
453     sp->_default_fg = COLOR_DEFAULT;
454     sp->_default_bg = COLOR_DEFAULT;
455 #endif
456
457     /*
458      * Allow those assumed/default color assumptions to be overridden at
459      * runtime:
460      */
461     if ((env = getenv("NCURSES_ASSUMED_COLORS")) != 0) {
462         int fg, bg;
463         char sep1, sep2;
464         int count = sscanf(env, "%d%c%d%c", &fg, &sep1, &bg, &sep2);
465         if (count >= 1) {
466             sp->_default_fg = ((fg >= 0 && fg < MaxColors) ? fg : COLOR_DEFAULT);
467             if (count >= 3) {
468                 sp->_default_bg = ((bg >= 0 && bg < MaxColors) ? bg : COLOR_DEFAULT);
469             }
470             TR(TRACE_CHARPUT | TRACE_MOVE,
471                ("from environment assumed fg=%d, bg=%d",
472                 sp->_default_fg,
473                 sp->_default_bg));
474         }
475     }
476 #if USE_COLORFGBG
477     /*
478      * If rxvt's $COLORFGBG variable is set, use it to specify the assumed
479      * default colors.  Note that rxvt (mis)uses bold colors, equating a bold
480      * color to that value plus 8.  We'll only use the non-bold color for now -
481      * decide later if it is worth having default attributes as well.
482      */
483     if (getenv("COLORFGBG") != 0) {
484         const char *p = getenv("COLORFGBG");
485         TR(TRACE_CHARPUT | TRACE_MOVE, ("decoding COLORFGBG %s", p));
486         p = extract_fgbg(p, &(sp->_default_fg));
487         p = extract_fgbg(p, &(sp->_default_bg));
488         if (*p)                 /* assume rxvt was compiled with xpm support */
489             p = extract_fgbg(p, &(sp->_default_bg));
490         TR(TRACE_CHARPUT | TRACE_MOVE, ("decoded fg=%d, bg=%d",
491                                         sp->_default_fg, sp->_default_bg));
492         if (sp->_default_fg >= MaxColors) {
493             if (set_a_foreground != ABSENT_STRING
494                 && !strcmp(set_a_foreground, "\033[3%p1%dm")) {
495                 set_a_foreground = strdup("\033[3%?%p1%{8}%>%t9%e%p1%d%;m");
496             } else {
497                 sp->_default_fg %= MaxColors;
498             }
499         }
500         if (sp->_default_bg >= MaxColors) {
501             if (set_a_background != ABSENT_STRING
502                 && !strcmp(set_a_background, "\033[4%p1%dm")) {
503                 set_a_background = strdup("\033[4%?%p1%{8}%>%t9%e%p1%d%;m");
504             } else {
505                 sp->_default_bg %= MaxColors;
506             }
507         }
508     }
509 #endif
510 #endif /* NCURSES_EXT_FUNCS */
511
512     sp->_maxclick = DEFAULT_MAXCLICK;
513     sp->_mouse_event = no_mouse_event;
514     sp->_mouse_inline = no_mouse_inline;
515     sp->_mouse_parse = no_mouse_parse;
516     sp->_mouse_resume = no_mouse_resume;
517     sp->_mouse_wrap = no_mouse_wrap;
518     sp->_mouse_fd = -1;
519
520     /*
521      * If we've no magic cookie support, we suppress attributes that xmc would
522      * affect, i.e., the attributes that affect the rendition of a space.
523      */
524     sp->_ok_attributes = NCURSES_SP_NAME(termattrs) (NCURSES_SP_ARG);
525     if (NCURSES_SP_NAME(has_colors) (NCURSES_SP_ARG)) {
526         sp->_ok_attributes |= A_COLOR;
527     }
528 #ifdef USE_TERM_DRIVER
529     _nc_cookie_init(sp);
530 #else
531 #if USE_XMC_SUPPORT
532     /*
533      * If we have no magic-cookie support compiled-in, or if it is suppressed
534      * in the environment, reset the support-flag.
535      */
536     if (magic_cookie_glitch >= 0) {
537         if (getenv("NCURSES_NO_MAGIC_COOKIE") != 0) {
538             support_cookies = FALSE;
539         }
540     }
541 #endif
542
543     if (!support_cookies && magic_cookie_glitch >= 0) {
544         T(("will disable attributes to work w/o magic cookies"));
545     }
546
547     if (magic_cookie_glitch > 0) {      /* tvi, wyse */
548
549         sp->_xmc_triggers = sp->_ok_attributes & XMC_CONFLICT;
550 #if 0
551         /*
552          * We "should" treat colors as an attribute.  The wyse350 (and its
553          * clones) appear to be the only ones that have both colors and magic
554          * cookies.
555          */
556         if (has_colors()) {
557             sp->_xmc_triggers |= A_COLOR;
558         }
559 #endif
560         sp->_xmc_suppress = sp->_xmc_triggers & (chtype) ~(A_BOLD);
561
562         T(("magic cookie attributes %s", _traceattr(sp->_xmc_suppress)));
563         /*
564          * Supporting line-drawing may be possible.  But make the regular
565          * video attributes work first.
566          */
567         acs_chars = ABSENT_STRING;
568         ena_acs = ABSENT_STRING;
569         enter_alt_charset_mode = ABSENT_STRING;
570         exit_alt_charset_mode = ABSENT_STRING;
571 #if USE_XMC_SUPPORT
572         /*
573          * To keep the cookie support simple, suppress all of the optimization
574          * hooks except for clear_screen and the cursor addressing.
575          */
576         if (support_cookies) {
577             clr_eol = ABSENT_STRING;
578             clr_eos = ABSENT_STRING;
579             set_attributes = ABSENT_STRING;
580         }
581 #endif
582     } else if (magic_cookie_glitch == 0) {      /* hpterm */
583     }
584
585     /*
586      * If magic cookies are not supported, cancel the strings that set
587      * video attributes.
588      */
589     if (!support_cookies && magic_cookie_glitch >= 0) {
590         magic_cookie_glitch = ABSENT_NUMERIC;
591         set_attributes = ABSENT_STRING;
592         enter_blink_mode = ABSENT_STRING;
593         enter_bold_mode = ABSENT_STRING;
594         enter_dim_mode = ABSENT_STRING;
595         enter_reverse_mode = ABSENT_STRING;
596         enter_standout_mode = ABSENT_STRING;
597         enter_underline_mode = ABSENT_STRING;
598     }
599
600     /* initialize normal acs before wide, since we use mapping in the latter */
601 #if !USE_WIDEC_SUPPORT
602     if (_nc_unicode_locale() && _nc_locale_breaks_acs(sp->_term)) {
603         acs_chars = NULL;
604         ena_acs = NULL;
605         enter_alt_charset_mode = NULL;
606         exit_alt_charset_mode = NULL;
607         set_attributes = NULL;
608     }
609 #endif
610 #endif
611
612     NCURSES_SP_NAME(_nc_init_acs) (NCURSES_SP_ARG);
613 #if USE_WIDEC_SUPPORT
614     sp->_screen_unicode = _nc_unicode_locale();
615     if (_nc_wacs == 0) {
616         _nc_init_wacs();
617     }
618     if (_nc_wacs == 0) {
619         ReturnScreenError();
620     }
621
622     sp->_screen_acs_fix = (sp->_screen_unicode
623                            && _nc_locale_breaks_acs(sp->_term));
624 #endif
625     env = _nc_get_locale();
626     sp->_legacy_coding = ((env == 0)
627                           || !strcmp(env, "C")
628                           || !strcmp(env, "POSIX"));
629     T(("legacy-coding %d", sp->_legacy_coding));
630
631     sp->_nc_sp_idcok = TRUE;
632     sp->_nc_sp_idlok = FALSE;
633
634     sp->oldhash = 0;
635     sp->newhash = 0;
636
637     T(("creating newscr"));
638     NewScreen(sp) = NCURSES_SP_NAME(newwin) (NCURSES_SP_ARGx slines, scolumns,
639                                              0, 0);
640     if (NewScreen(sp) == 0) {
641         ReturnScreenError();
642     }
643     T(("creating curscr"));
644     CurScreen(sp) = NCURSES_SP_NAME(newwin) (NCURSES_SP_ARGx slines, scolumns,
645                                              0, 0);
646     if (CurScreen(sp) == 0) {
647         ReturnScreenError();
648     }
649 #if !USE_REENTRANT
650     newscr = NewScreen(sp);
651     curscr = CurScreen(sp);
652 #endif
653 #if USE_SIZECHANGE
654     sp->_resize = NCURSES_SP_NAME(resizeterm);
655     sp->_ungetch = safe_ungetch;
656 #endif
657
658     NewScreen(sp)->_clear = TRUE;
659     CurScreen(sp)->_clear = FALSE;
660
661     /*
662      * Get the current tty-modes. setupterm() may already have done this,
663      * unless we use the term-driver.
664      */
665 #ifndef USE_TERM_DRIVER
666     if (cur_term != 0 &&
667         !memcmp(&cur_term->Ottyb, &null_TTY, sizeof(TTY)))
668 #endif
669     {
670         NCURSES_SP_NAME(def_shell_mode) (NCURSES_SP_ARG);
671         NCURSES_SP_NAME(def_prog_mode) (NCURSES_SP_ARG);
672     }
673
674     if (safe_ripoff_sp && safe_ripoff_sp != safe_ripoff_stack) {
675         ripoff_t *rop;
676
677         for (rop = safe_ripoff_stack;
678              rop != safe_ripoff_sp && (rop - safe_ripoff_stack) < N_RIPS;
679              rop++) {
680
681             /* If we must simulate soft labels, grab off the line to be used.
682                We assume that we must simulate, if it is none of the standard
683                formats (4-4 or 3-2-3) for which there may be some hardware
684                support. */
685             if (rop->hook == _nc_slk_initialize) {
686                 if (!(NumLabels <= 0 || !SLK_STDFMT(slk_format))) {
687                     continue;
688                 }
689             }
690             if (rop->hook) {
691                 int count;
692                 WINDOW *w;
693
694                 count = (rop->line < 0) ? -rop->line : rop->line;
695                 T(("ripping off %i lines at %s", count,
696                    ((rop->line < 0)
697                     ? "bottom"
698                     : "top")));
699
700                 w = NCURSES_SP_NAME(newwin) (NCURSES_SP_ARGx
701                                              count, scolumns,
702                                              ((rop->line < 0)
703                                               ? sp->_lines_avail - count
704                                               : 0),
705                                              0);
706                 if (w) {
707                     rop->win = w;
708                     rop->hook(w, scolumns);
709                 } else {
710                     ReturnScreenError();
711                 }
712                 if (rop->line < 0) {
713                     bottom_stolen += count;
714                 } else {
715                     sp->_topstolen = (NCURSES_SIZE_T) (sp->_topstolen + count);
716                 }
717                 sp->_lines_avail = (NCURSES_SIZE_T) (sp->_lines_avail - count);
718             }
719         }
720         /* reset the stack */
721         safe_ripoff_sp = safe_ripoff_stack;
722     }
723
724     T(("creating stdscr"));
725     assert((sp->_lines_avail + sp->_topstolen + bottom_stolen) == slines);
726     if ((StdScreen(sp) = NCURSES_SP_NAME(newwin) (NCURSES_SP_ARGx
727                                                   sp->_lines_avail,
728                                                   scolumns, 0, 0)) == 0) {
729         ReturnScreenError();
730     }
731     SET_LINES(sp->_lines_avail);
732 #if !USE_REENTRANT
733     stdscr = StdScreen(sp);
734 #endif
735     sp->_prescreen = FALSE;
736     returnCode(OK);
737 }
738
739 #if NCURSES_SP_FUNCS
740 NCURSES_EXPORT(int)
741 _nc_setupscreen(int slines GCC_UNUSED,
742                 int scolumns GCC_UNUSED,
743                 FILE *output,
744                 int filtered,
745                 int slk_format)
746 {
747     SCREEN *sp = 0;
748     int rc = NCURSES_SP_NAME(_nc_setupscreen) (&sp,
749                                                slines,
750                                                scolumns,
751                                                output,
752                                                filtered,
753                                                slk_format);
754     if (rc != OK)
755         _nc_set_screen(0);
756     return rc;
757 }
758 #endif
759
760 /*
761  * The internal implementation interprets line as the number of lines to rip
762  * off from the top or bottom.
763  */
764 NCURSES_EXPORT(int)
765 NCURSES_SP_NAME(_nc_ripoffline) (NCURSES_SP_DCLx
766                                  int line,
767                                  int (*init) (WINDOW *, int))
768 {
769     int code = ERR;
770     TR_FUNC_BFR(1);
771
772     START_TRACE();
773     T((T_CALLED("ripoffline(%p,%d,%s)"),
774        (void *) SP_PARM, line,
775        TR_FUNC_ARG(0, init)));
776
777 #if NCURSES_SP_FUNCS
778     if (SP_PARM != 0 && SP_PARM->_prescreen)
779 #endif
780     {
781         if (line == 0) {
782             code = OK;
783         } else {
784             if (safe_ripoff_sp == 0) {
785                 safe_ripoff_sp = safe_ripoff_stack;
786             }
787             if (safe_ripoff_sp < safe_ripoff_stack + N_RIPS) {
788                 safe_ripoff_sp->line = line;
789                 safe_ripoff_sp->hook = init;
790                 (safe_ripoff_sp)++;
791                 T(("ripped-off %d:%d chunks",
792                    (int) (safe_ripoff_sp - safe_ripoff_stack), N_RIPS));
793                 code = OK;
794             }
795         }
796     }
797
798     returnCode(code);
799 }
800
801 #if NCURSES_SP_FUNCS
802 NCURSES_EXPORT(int)
803 _nc_ripoffline(int line, int (*init) (WINDOW *, int))
804 {
805     int rc;
806     _nc_lock_global(prescreen);
807     START_TRACE();
808     rc = NCURSES_SP_NAME(_nc_ripoffline) (CURRENT_SCREEN_PRE, line, init);
809     _nc_unlock_global(prescreen);
810     return rc;
811 }
812 #endif
813
814 NCURSES_EXPORT(int)
815 NCURSES_SP_NAME(ripoffline) (NCURSES_SP_DCLx
816                              int line,
817                              int (*init) (WINDOW *, int))
818 {
819     START_TRACE();
820     return NCURSES_SP_NAME(_nc_ripoffline) (NCURSES_SP_ARGx
821                                             (line < 0) ? -1 : 1,
822                                             init);
823 }
824
825 #if NCURSES_SP_FUNCS
826 NCURSES_EXPORT(int)
827 ripoffline(int line, int (*init) (WINDOW *, int))
828 {
829     int rc;
830     _nc_lock_global(prescreen);
831     START_TRACE();
832     rc = NCURSES_SP_NAME(ripoffline) (CURRENT_SCREEN_PRE, line, init);
833     _nc_unlock_global(prescreen);
834     return rc;
835 }
836 #endif