]> ncurses.scripts.mit.edu Git - ncurses.git/blob - ncurses/base/lib_set_term.c
ncurses 6.2 - patch 20200912
[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.174 2020/09/09 19:43:00 juergen 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 #if defined(EXP_WIN32_DRIVER)
419     if (output)
420         _setmode(fileno(output), _O_BINARY);
421 #endif
422     sp->out_limit = (size_t) ((2 + slines) * (6 + scolumns));
423     if ((sp->out_buffer = malloc(sp->out_limit)) == 0)
424         sp->out_limit = 0;
425     sp->out_inuse = 0;
426
427     SP_PRE_INIT(sp);
428     SetNoPadding(sp);
429
430 #if NCURSES_EXT_FUNCS
431     sp->_default_color = FALSE;
432     sp->_has_sgr_39_49 = FALSE;
433
434     /*
435      * Set our assumption of the terminal's default foreground and background
436      * colors.  The curs_color man-page states that we can assume that the
437      * background is black.  The origin of this assumption appears to be
438      * terminals that displayed colored text, but no colored backgrounds, e.g.,
439      * the first colored terminals around 1980.  More recent ones with better
440      * technology can display not only colored backgrounds, but all
441      * combinations.  So a terminal might be something other than "white" on
442      * black (green/black looks monochrome too), but black on white or even
443      * on ivory.
444      *
445      * White-on-black is the simplest thing to use for monochrome.  Almost
446      * all applications that use color paint both text and background, so
447      * the distinction is moot.  But a few do not - which is why we leave this
448      * configurable (a better solution is to use assume_default_colors() for
449      * the rare applications that do require that sort of appearance, since
450      * is appears that more users expect to be able to make a white-on-black
451      * or black-on-white display under control of the application than not).
452      */
453 #ifdef USE_ASSUMED_COLOR
454     sp->_default_fg = COLOR_WHITE;
455     sp->_default_bg = COLOR_BLACK;
456 #else
457     sp->_default_fg = COLOR_DEFAULT;
458     sp->_default_bg = COLOR_DEFAULT;
459 #endif
460
461     /*
462      * Allow those assumed/default color assumptions to be overridden at
463      * runtime:
464      */
465     if ((env = getenv("NCURSES_ASSUMED_COLORS")) != 0) {
466         int fg, bg;
467         char sep1, sep2;
468         int count = sscanf(env, "%d%c%d%c", &fg, &sep1, &bg, &sep2);
469         if (count >= 1) {
470             sp->_default_fg = ((fg >= 0 && fg < MaxColors) ? fg : COLOR_DEFAULT);
471             if (count >= 3) {
472                 sp->_default_bg = ((bg >= 0 && bg < MaxColors) ? bg : COLOR_DEFAULT);
473             }
474             TR(TRACE_CHARPUT | TRACE_MOVE,
475                ("from environment assumed fg=%d, bg=%d",
476                 sp->_default_fg,
477                 sp->_default_bg));
478         }
479     }
480 #if USE_COLORFGBG
481     /*
482      * If rxvt's $COLORFGBG variable is set, use it to specify the assumed
483      * default colors.  Note that rxvt (mis)uses bold colors, equating a bold
484      * color to that value plus 8.  We'll only use the non-bold color for now -
485      * decide later if it is worth having default attributes as well.
486      */
487     if (getenv("COLORFGBG") != 0) {
488         const char *p = getenv("COLORFGBG");
489         TR(TRACE_CHARPUT | TRACE_MOVE, ("decoding COLORFGBG %s", p));
490         p = extract_fgbg(p, &(sp->_default_fg));
491         p = extract_fgbg(p, &(sp->_default_bg));
492         if (*p)                 /* assume rxvt was compiled with xpm support */
493             p = extract_fgbg(p, &(sp->_default_bg));
494         TR(TRACE_CHARPUT | TRACE_MOVE, ("decoded fg=%d, bg=%d",
495                                         sp->_default_fg, sp->_default_bg));
496         if (sp->_default_fg >= MaxColors) {
497             if (set_a_foreground != ABSENT_STRING
498                 && !strcmp(set_a_foreground, "\033[3%p1%dm")) {
499                 set_a_foreground = strdup("\033[3%?%p1%{8}%>%t9%e%p1%d%;m");
500             } else {
501                 sp->_default_fg %= MaxColors;
502             }
503         }
504         if (sp->_default_bg >= MaxColors) {
505             if (set_a_background != ABSENT_STRING
506                 && !strcmp(set_a_background, "\033[4%p1%dm")) {
507                 set_a_background = strdup("\033[4%?%p1%{8}%>%t9%e%p1%d%;m");
508             } else {
509                 sp->_default_bg %= MaxColors;
510             }
511         }
512     }
513 #endif
514 #endif /* NCURSES_EXT_FUNCS */
515
516     sp->_maxclick = DEFAULT_MAXCLICK;
517     sp->_mouse_event = no_mouse_event;
518     sp->_mouse_inline = no_mouse_inline;
519     sp->_mouse_parse = no_mouse_parse;
520     sp->_mouse_resume = no_mouse_resume;
521     sp->_mouse_wrap = no_mouse_wrap;
522     sp->_mouse_fd = -1;
523
524     /*
525      * If we've no magic cookie support, we suppress attributes that xmc would
526      * affect, i.e., the attributes that affect the rendition of a space.
527      */
528     sp->_ok_attributes = NCURSES_SP_NAME(termattrs) (NCURSES_SP_ARG);
529     if (NCURSES_SP_NAME(has_colors) (NCURSES_SP_ARG)) {
530         sp->_ok_attributes |= A_COLOR;
531     }
532 #ifdef USE_TERM_DRIVER
533     _nc_cookie_init(sp);
534 #else
535 #if USE_XMC_SUPPORT
536     /*
537      * If we have no magic-cookie support compiled-in, or if it is suppressed
538      * in the environment, reset the support-flag.
539      */
540     if (magic_cookie_glitch >= 0) {
541         if (getenv("NCURSES_NO_MAGIC_COOKIE") != 0) {
542             support_cookies = FALSE;
543         }
544     }
545 #endif
546
547     if (!support_cookies && magic_cookie_glitch >= 0) {
548         T(("will disable attributes to work w/o magic cookies"));
549     }
550
551     if (magic_cookie_glitch > 0) {      /* tvi, wyse */
552
553         sp->_xmc_triggers = sp->_ok_attributes & XMC_CONFLICT;
554 #if 0
555         /*
556          * We "should" treat colors as an attribute.  The wyse350 (and its
557          * clones) appear to be the only ones that have both colors and magic
558          * cookies.
559          */
560         if (has_colors()) {
561             sp->_xmc_triggers |= A_COLOR;
562         }
563 #endif
564         sp->_xmc_suppress = sp->_xmc_triggers & (chtype) ~(A_BOLD);
565
566         T(("magic cookie attributes %s", _traceattr(sp->_xmc_suppress)));
567         /*
568          * Supporting line-drawing may be possible.  But make the regular
569          * video attributes work first.
570          */
571         acs_chars = ABSENT_STRING;
572         ena_acs = ABSENT_STRING;
573         enter_alt_charset_mode = ABSENT_STRING;
574         exit_alt_charset_mode = ABSENT_STRING;
575 #if USE_XMC_SUPPORT
576         /*
577          * To keep the cookie support simple, suppress all of the optimization
578          * hooks except for clear_screen and the cursor addressing.
579          */
580         if (support_cookies) {
581             clr_eol = ABSENT_STRING;
582             clr_eos = ABSENT_STRING;
583             set_attributes = ABSENT_STRING;
584         }
585 #endif
586     } else if (magic_cookie_glitch == 0) {      /* hpterm */
587     }
588
589     /*
590      * If magic cookies are not supported, cancel the strings that set
591      * video attributes.
592      */
593     if (!support_cookies && magic_cookie_glitch >= 0) {
594         magic_cookie_glitch = ABSENT_NUMERIC;
595         set_attributes = ABSENT_STRING;
596         enter_blink_mode = ABSENT_STRING;
597         enter_bold_mode = ABSENT_STRING;
598         enter_dim_mode = ABSENT_STRING;
599         enter_reverse_mode = ABSENT_STRING;
600         enter_standout_mode = ABSENT_STRING;
601         enter_underline_mode = ABSENT_STRING;
602     }
603
604     /* initialize normal acs before wide, since we use mapping in the latter */
605 #if !USE_WIDEC_SUPPORT
606     if (_nc_unicode_locale() && _nc_locale_breaks_acs(sp->_term)) {
607         acs_chars = NULL;
608         ena_acs = NULL;
609         enter_alt_charset_mode = NULL;
610         exit_alt_charset_mode = NULL;
611         set_attributes = NULL;
612     }
613 #endif
614 #endif
615
616     NCURSES_SP_NAME(_nc_init_acs) (NCURSES_SP_ARG);
617 #if USE_WIDEC_SUPPORT
618     sp->_screen_unicode = _nc_unicode_locale();
619     if (_nc_wacs == 0) {
620         _nc_init_wacs();
621     }
622     if (_nc_wacs == 0) {
623         ReturnScreenError();
624     }
625
626     sp->_screen_acs_fix = (sp->_screen_unicode
627                            && _nc_locale_breaks_acs(sp->_term));
628 #endif
629     env = _nc_get_locale();
630     sp->_legacy_coding = ((env == 0)
631                           || !strcmp(env, "C")
632                           || !strcmp(env, "POSIX"));
633     T(("legacy-coding %d", sp->_legacy_coding));
634
635     sp->_nc_sp_idcok = TRUE;
636     sp->_nc_sp_idlok = FALSE;
637
638     sp->oldhash = 0;
639     sp->newhash = 0;
640
641     T(("creating newscr"));
642     NewScreen(sp) = NCURSES_SP_NAME(newwin) (NCURSES_SP_ARGx slines, scolumns,
643                                              0, 0);
644     if (NewScreen(sp) == 0) {
645         ReturnScreenError();
646     }
647     T(("creating curscr"));
648     CurScreen(sp) = NCURSES_SP_NAME(newwin) (NCURSES_SP_ARGx slines, scolumns,
649                                              0, 0);
650     if (CurScreen(sp) == 0) {
651         ReturnScreenError();
652     }
653 #if !USE_REENTRANT
654     newscr = NewScreen(sp);
655     curscr = CurScreen(sp);
656 #endif
657 #if USE_SIZECHANGE
658     sp->_resize = NCURSES_SP_NAME(resizeterm);
659     sp->_ungetch = safe_ungetch;
660 #endif
661
662     NewScreen(sp)->_clear = TRUE;
663     CurScreen(sp)->_clear = FALSE;
664
665     /*
666      * Get the current tty-modes. setupterm() may already have done this,
667      * unless we use the term-driver.
668      */
669 #ifndef USE_TERM_DRIVER
670     if (cur_term != 0 &&
671         !memcmp(&cur_term->Ottyb, &null_TTY, sizeof(TTY)))
672 #endif
673     {
674         NCURSES_SP_NAME(def_shell_mode) (NCURSES_SP_ARG);
675         NCURSES_SP_NAME(def_prog_mode) (NCURSES_SP_ARG);
676     }
677
678     if (safe_ripoff_sp && safe_ripoff_sp != safe_ripoff_stack) {
679         ripoff_t *rop;
680
681         for (rop = safe_ripoff_stack;
682              rop != safe_ripoff_sp && (rop - safe_ripoff_stack) < N_RIPS;
683              rop++) {
684
685             /* If we must simulate soft labels, grab off the line to be used.
686                We assume that we must simulate, if it is none of the standard
687                formats (4-4 or 3-2-3) for which there may be some hardware
688                support. */
689             if (rop->hook == _nc_slk_initialize) {
690                 if (!(NumLabels <= 0 || !SLK_STDFMT(slk_format))) {
691                     continue;
692                 }
693             }
694             if (rop->hook) {
695                 int count;
696                 WINDOW *w;
697
698                 count = (rop->line < 0) ? -rop->line : rop->line;
699                 T(("ripping off %i lines at %s", count,
700                    ((rop->line < 0)
701                     ? "bottom"
702                     : "top")));
703
704                 w = NCURSES_SP_NAME(newwin) (NCURSES_SP_ARGx
705                                              count, scolumns,
706                                              ((rop->line < 0)
707                                               ? sp->_lines_avail - count
708                                               : 0),
709                                              0);
710                 if (w) {
711                     rop->win = w;
712                     rop->hook(w, scolumns);
713                 } else {
714                     ReturnScreenError();
715                 }
716                 if (rop->line < 0) {
717                     bottom_stolen += count;
718                 } else {
719                     sp->_topstolen = (NCURSES_SIZE_T) (sp->_topstolen + count);
720                 }
721                 sp->_lines_avail = (NCURSES_SIZE_T) (sp->_lines_avail - count);
722             }
723         }
724         /* reset the stack */
725         safe_ripoff_sp = safe_ripoff_stack;
726     }
727
728     T(("creating stdscr"));
729     assert((sp->_lines_avail + sp->_topstolen + bottom_stolen) == slines);
730     if ((StdScreen(sp) = NCURSES_SP_NAME(newwin) (NCURSES_SP_ARGx
731                                                   sp->_lines_avail,
732                                                   scolumns, 0, 0)) == 0) {
733         ReturnScreenError();
734     }
735     SET_LINES(sp->_lines_avail);
736 #if !USE_REENTRANT
737     stdscr = StdScreen(sp);
738 #endif
739     sp->_prescreen = FALSE;
740     returnCode(OK);
741 }
742
743 #if NCURSES_SP_FUNCS
744 NCURSES_EXPORT(int)
745 _nc_setupscreen(int slines GCC_UNUSED,
746                 int scolumns GCC_UNUSED,
747                 FILE *output,
748                 int filtered,
749                 int slk_format)
750 {
751     SCREEN *sp = 0;
752     int rc = NCURSES_SP_NAME(_nc_setupscreen) (&sp,
753                                                slines,
754                                                scolumns,
755                                                output,
756                                                filtered,
757                                                slk_format);
758     if (rc != OK)
759         _nc_set_screen(0);
760     return rc;
761 }
762 #endif
763
764 /*
765  * The internal implementation interprets line as the number of lines to rip
766  * off from the top or bottom.
767  */
768 NCURSES_EXPORT(int)
769 NCURSES_SP_NAME(_nc_ripoffline) (NCURSES_SP_DCLx
770                                  int line,
771                                  int (*init) (WINDOW *, int))
772 {
773     int code = ERR;
774     TR_FUNC_BFR(1);
775
776     START_TRACE();
777     T((T_CALLED("ripoffline(%p,%d,%s)"),
778        (void *) SP_PARM, line,
779        TR_FUNC_ARG(0, init)));
780
781 #if NCURSES_SP_FUNCS
782     if (SP_PARM != 0 && SP_PARM->_prescreen)
783 #endif
784     {
785         if (line == 0) {
786             code = OK;
787         } else {
788             if (safe_ripoff_sp == 0) {
789                 safe_ripoff_sp = safe_ripoff_stack;
790             }
791             if (safe_ripoff_sp < safe_ripoff_stack + N_RIPS) {
792                 safe_ripoff_sp->line = line;
793                 safe_ripoff_sp->hook = init;
794                 (safe_ripoff_sp)++;
795                 T(("ripped-off %d:%d chunks",
796                    (int) (safe_ripoff_sp - safe_ripoff_stack), N_RIPS));
797                 code = OK;
798             }
799         }
800     }
801
802     returnCode(code);
803 }
804
805 #if NCURSES_SP_FUNCS
806 NCURSES_EXPORT(int)
807 _nc_ripoffline(int line, int (*init) (WINDOW *, int))
808 {
809     int rc;
810     _nc_lock_global(prescreen);
811     START_TRACE();
812     rc = NCURSES_SP_NAME(_nc_ripoffline) (CURRENT_SCREEN_PRE, line, init);
813     _nc_unlock_global(prescreen);
814     return rc;
815 }
816 #endif
817
818 NCURSES_EXPORT(int)
819 NCURSES_SP_NAME(ripoffline) (NCURSES_SP_DCLx
820                              int line,
821                              int (*init) (WINDOW *, int))
822 {
823     START_TRACE();
824     return NCURSES_SP_NAME(_nc_ripoffline) (NCURSES_SP_ARGx
825                                             (line < 0) ? -1 : 1,
826                                             init);
827 }
828
829 #if NCURSES_SP_FUNCS
830 NCURSES_EXPORT(int)
831 ripoffline(int line, int (*init) (WINDOW *, int))
832 {
833     int rc;
834     _nc_lock_global(prescreen);
835     START_TRACE();
836     rc = NCURSES_SP_NAME(ripoffline) (CURRENT_SCREEN_PRE, line, init);
837     _nc_unlock_global(prescreen);
838     return rc;
839 }
840 #endif