]> ncurses.scripts.mit.edu Git - ncurses.git/blob - doc/html/man/curs_initscr.3x.html
ncurses 5.9 - patch 20141220
[ncurses.git] / doc / html / man / curs_initscr.3x.html
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
2 <!-- 
3   ****************************************************************************
4   * Copyright (c) 1998-2013,2014 Free Software Foundation, Inc.              *
5   *                                                                          *
6   * Permission is hereby granted, free of charge, to any person obtaining a  *
7   * copy of this software and associated documentation files (the            *
8   * "Software"), to deal in the Software without restriction, including      *
9   * without limitation the rights to use, copy, modify, merge, publish,      *
10   * distribute, distribute with modifications, sublicense, and/or sell       *
11   * copies of the Software, and to permit persons to whom the Software is    *
12   * furnished to do so, subject to the following conditions:                 *
13   *                                                                          *
14   * The above copyright notice and this permission notice shall be included  *
15   * in all copies or substantial portions of the Software.                   *
16   *                                                                          *
17   * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
18   * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
19   * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
20   * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
21   * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
22   * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
23   * THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
24   *                                                                          *
25   * Except as contained in this notice, the name(s) of the above copyright   *
26   * holders shall not be used in advertising or otherwise to promote the     *
27   * sale, use or other dealings in this Software without prior written       *
28   * authorization.                                                           *
29   ****************************************************************************
30   * @Id: curs_initscr.3x,v 1.20 2014/03/01 22:31:22 tom Exp @
31 -->
32 <HTML>
33 <HEAD>
34 <TITLE>curs_initscr 3x</TITLE>
35 <link rev=made href="mailto:bug-ncurses@gnu.org">
36 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
37 </HEAD>
38 <BODY>
39 <H1>curs_initscr 3x</H1>
40 <HR>
41 <PRE>
42 <!-- Manpage converted by man2html 3.0.1 -->
43 <STRONG><A HREF="curs_initscr.3x.html">curs_initscr(3x)</A></STRONG>                                       <STRONG><A HREF="curs_initscr.3x.html">curs_initscr(3x)</A></STRONG>
44
45
46
47
48 </PRE>
49 <H2>NAME</H2><PRE>
50        <STRONG>initscr</STRONG>, <STRONG>newterm</STRONG>, <STRONG>endwin</STRONG>, <STRONG>isendwin</STRONG>, <STRONG>set_term</STRONG>, <STRONG>delscreen</STRONG> -
51        <STRONG>curses</STRONG> screen initialization and manipulation routines
52
53
54 </PRE>
55 <H2>SYNOPSIS</H2><PRE>
56        <STRONG>#include</STRONG> <STRONG>&lt;curses.h&gt;</STRONG>
57
58        <STRONG>WINDOW</STRONG> <STRONG>*initscr(void);</STRONG>
59        <STRONG>int</STRONG> <STRONG>endwin(void);</STRONG>
60        <STRONG>bool</STRONG> <STRONG>isendwin(void);</STRONG>
61        <STRONG>SCREEN</STRONG> <STRONG>*newterm(char</STRONG> <STRONG>*type,</STRONG> <STRONG>FILE</STRONG> <STRONG>*outfd,</STRONG> <STRONG>FILE</STRONG> <STRONG>*infd);</STRONG>
62        <STRONG>SCREEN</STRONG> <STRONG>*set_term(SCREEN</STRONG> <STRONG>*new);</STRONG>
63        <STRONG>void</STRONG> <STRONG>delscreen(SCREEN*</STRONG> <STRONG>sp);</STRONG>
64
65
66 </PRE>
67 <H2>DESCRIPTION</H2><PRE>
68        <STRONG>initscr</STRONG> is normally the first <STRONG>curses</STRONG> routine to call  when
69        initializing  a program.  A few special routines sometimes
70        need to be called before it; these are  <STRONG>slk_init</STRONG>,  <STRONG>filter</STRONG>,
71        <STRONG>ripoffline</STRONG>,  <STRONG>use_env</STRONG>.  For multiple-terminal applications,
72        <STRONG>newterm</STRONG> may be called before <STRONG>initscr</STRONG>.
73
74        The initscr code determines the terminal type and initial-
75        izes  all <STRONG>curses</STRONG> data structures.  <STRONG>initscr</STRONG> also causes the
76        first call to <STRONG>refresh</STRONG> to clear the screen.  If errors  oc-
77        cur,  <STRONG>initscr</STRONG> writes an appropriate error message to stan-
78        dard error and exits; otherwise, a pointer is returned  to
79        <STRONG>stdscr</STRONG>.
80
81        A  program  that  outputs to more than one terminal should
82        use the <STRONG>newterm</STRONG>  routine  for  each  terminal  instead  of
83        <STRONG>initscr</STRONG>.  A program that needs to inspect capabilities, so
84        it can continue to run in a line-oriented mode if the ter-
85        minal cannot support a screen-oriented program, would also
86        use <STRONG>newterm</STRONG>.  The routine <STRONG>newterm</STRONG> should  be  called  once
87        for each terminal.  It returns a variable of type <STRONG>SCREEN</STRONG> <STRONG>*</STRONG>
88        which should be saved as a  reference  to  that  terminal.
89        <STRONG>newterm</STRONG>'s arguments are
90
91        <STRONG>o</STRONG>   the <EM>type</EM> of the terminal to be used in place of <STRONG>$TERM</STRONG>,
92
93        <STRONG>o</STRONG>   a file pointer for output to the terminal, and
94
95        <STRONG>o</STRONG>   another file pointer for input from the terminal
96
97        If the <EM>type</EM> parameter is <STRONG>NULL</STRONG>, <STRONG>$TERM</STRONG> will be used.
98
99        The  program must also call <STRONG>endwin</STRONG> for each terminal being
100        used before exiting from <STRONG>curses</STRONG>.   If  <STRONG>newterm</STRONG>  is  called
101        more  than  once for the same terminal, the first terminal
102        referred to must be the  last  one  for  which  <STRONG>endwin</STRONG>  is
103        called.
104
105        A  program should always call <STRONG>endwin</STRONG> before exiting or es-
106        caping from <STRONG>curses</STRONG> mode temporarily.  This routine
107
108        <STRONG>o</STRONG>   restores tty modes,
109
110        <STRONG>o</STRONG>   moves the cursor to the lower left-hand corner of  the
111            screen and
112
113        <STRONG>o</STRONG>   resets the terminal into the proper non-visual mode.
114
115        Calling <STRONG>refresh</STRONG> or <STRONG>doupdate</STRONG> after a temporary escape caus-
116        es the program to resume visual mode.
117
118        The <STRONG>isendwin</STRONG> routine  returns  <STRONG>TRUE</STRONG>  if  <STRONG>endwin</STRONG>  has  been
119        called without any subsequent calls to <STRONG>wrefresh</STRONG>, and <STRONG>FALSE</STRONG>
120        otherwise.
121
122        The <STRONG>set_term</STRONG> routine is used to switch  between  different
123        terminals.   The screen reference <STRONG>new</STRONG> becomes the new cur-
124        rent terminal.  The previous terminal is returned  by  the
125        routine.   This  is  the  only  routine  which manipulates
126        <STRONG>SCREEN</STRONG> pointers; all other routines affect only  the  cur-
127        rent terminal.
128
129        The  <STRONG>delscreen</STRONG>  routine  frees storage associated with the
130        <STRONG>SCREEN</STRONG> data structure.  The <STRONG>endwin</STRONG>  routine  does  not  do
131        this, so <STRONG>delscreen</STRONG> should be called after <STRONG>endwin</STRONG> if a par-
132        ticular <STRONG>SCREEN</STRONG> is no longer needed.
133
134
135 </PRE>
136 <H2>RETURN VALUE</H2><PRE>
137        <STRONG>endwin</STRONG> returns the integer <STRONG>ERR</STRONG> upon failure  and  <STRONG>OK</STRONG>  upon
138        successful completion.
139
140        Routines that return pointers always return <STRONG>NULL</STRONG> on error.
141
142        X/Open  defines  no error conditions.  In this implementa-
143        tion
144
145        <STRONG>o</STRONG>   <STRONG>endwin</STRONG> returns an error if the terminal was  not  ini-
146            tialized.
147
148        <STRONG>o</STRONG>   <STRONG>newterm</STRONG> returns an error if it cannot allocate the da-
149            ta structures for the screen,  or  for  the  top-level
150            windows  within  the  screen, i.e., <STRONG>curscr</STRONG>, <STRONG>newscr</STRONG>, or
151            <STRONG>stdscr</STRONG>.
152
153        <STRONG>o</STRONG>   <STRONG>set_term</STRONG> returns no error.
154
155
156 </PRE>
157 <H2>NOTES</H2><PRE>
158        Note that <STRONG>initscr</STRONG> and <STRONG>newterm</STRONG> may be macros.
159
160
161 </PRE>
162 <H2>PORTABILITY</H2><PRE>
163        These functions are described in the XSI Curses  standard,
164        Issue 4.  It specifies that portable applications must not
165        call <STRONG>initscr</STRONG> more than once.
166
167        Old versions of curses, e.g., BSD 4.4, may have returned a
168        null  pointer  from  <STRONG>initscr</STRONG>  when  an  error is detected,
169        rather than exiting.  It is safe but  redundant  to  check
170        the return value of <STRONG>initscr</STRONG> in XSI Curses.
171
172        If the TERM variable is missing or empty, <STRONG>initscr</STRONG> uses the
173        value "unknown", which normally corresponds to a  terminal
174        entry  with  the <EM>generic</EM> (<EM>gn</EM>) capability.  Generic entries
175        are detected by <STRONG><A HREF="curs_terminfo.3x.html">curs_terminfo(3x)</A></STRONG> and cannot be used for full-
176        screen  operation.   Other  implementations  may  handle a
177        missing/empty TERM variable differently.
178
179
180 </PRE>
181 <H2>SEE ALSO</H2><PRE>
182        <STRONG><A HREF="ncurses.3x.html">curses(3x)</A></STRONG>,       <STRONG><A HREF="curs_kernel.3x.html">curs_kernel(3x)</A></STRONG>,       <STRONG><A HREF="curs_refresh.3x.html">curs_refresh(3x)</A></STRONG>,
183        <STRONG><A HREF="curs_slk.3x.html">curs_slk(3x)</A></STRONG>, <STRONG><A HREF="curs_terminfo.3x.html">curs_terminfo(3x)</A></STRONG>, <STRONG><A HREF="curs_util.3x.html">curs_util(3x)</A></STRONG>, <STRONG>curs_vari-</STRONG>
184        <STRONG><A HREF="curs_variables.3x.html">ables(3x)</A></STRONG>.
185
186
187
188                                                        <STRONG><A HREF="curs_initscr.3x.html">curs_initscr(3x)</A></STRONG>
189 </PRE>
190 <HR>
191 Man(1) output converted with <a href="http://invisible-island.net/scripts/readme.html#others_scripts">man2html</a>
192 </BODY>
193 </HTML>