]> ncurses.scripts.mit.edu Git - ncurses.git/blob - ncurses/base/lib_restart.c
ncurses 5.7 - patch 20090829
[ncurses.git] / ncurses / base / lib_restart.c
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  ****************************************************************************/
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  *     and: Juergen Pfeifer                         2008                    *
34  ****************************************************************************/
35
36 /*
37  * Terminfo-only terminal setup routines:
38  *
39  *              int restartterm(const char *, int, int *)
40  */
41
42 #include <curses.priv.h>
43
44 #if SVR4_TERMIO && !defined(_POSIX_SOURCE)
45 #define _POSIX_SOURCE
46 #endif
47
48 MODULE_ID("$Id: lib_restart.c,v 1.11 2009/05/02 20:47:42 tom Exp $")
49
50 NCURSES_EXPORT(int)
51 NCURSES_SP_NAME(restartterm) (NCURSES_SP_DCLx
52                               NCURSES_CONST char *termp,
53                               int filenum,
54                               int *errret)
55 {
56     int result;
57
58     T((T_CALLED("restartterm(%p,%s,%d,%p)"), SP_PARM, termp, filenum, errret));
59
60     if (setupterm(termp, filenum, errret) != OK) {
61         result = ERR;
62     } else if (SP_PARM != 0) {
63         int saveecho = SP_PARM->_echo;
64         int savecbreak = SP_PARM->_cbreak;
65         int saveraw = SP_PARM->_raw;
66         int savenl = SP_PARM->_nl;
67
68         if (saveecho) {
69             NCURSES_SP_NAME(echo) (NCURSES_SP_ARG);
70         } else {
71             NCURSES_SP_NAME(noecho) (NCURSES_SP_ARG);
72         }
73
74         if (savecbreak) {
75             NCURSES_SP_NAME(cbreak) (NCURSES_SP_ARG);
76             NCURSES_SP_NAME(noraw) (NCURSES_SP_ARG);
77         } else if (saveraw) {
78             NCURSES_SP_NAME(nocbreak) (NCURSES_SP_ARG);
79             NCURSES_SP_NAME(raw) (NCURSES_SP_ARG);
80         } else {
81             NCURSES_SP_NAME(nocbreak) (NCURSES_SP_ARG);
82             NCURSES_SP_NAME(noraw) (NCURSES_SP_ARG);
83         }
84         if (savenl) {
85             NCURSES_SP_NAME(nl) (NCURSES_SP_ARG);
86         } else {
87             NCURSES_SP_NAME(nonl) (NCURSES_SP_ARG);
88         }
89
90         NCURSES_SP_NAME(reset_prog_mode) (NCURSES_SP_ARG);
91
92 #if USE_SIZECHANGE
93         _nc_update_screensize(SP_PARM);
94 #endif
95
96         result = OK;
97     } else {
98         result = ERR;
99     }
100     returnCode(result);
101 }
102
103 #if NCURSES_SP_FUNCS
104 NCURSES_EXPORT(int)
105 restartterm(NCURSES_CONST char *termp, int filenum, int *errret)
106 {
107     return NCURSES_SP_NAME(restartterm) (CURRENT_SCREEN, termp, filenum, errret);
108 }
109 #endif