]> ncurses.scripts.mit.edu Git - ncurses.git/blob - doc/html/man/curs_initscr.3x.html
ncurses 5.9 - patch 20150214
[ncurses.git] / doc / html / man / curs_initscr.3x.html
1 <!-- 
2   ****************************************************************************
3   * Copyright (c) 1998-2013,2014 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   * @Id: curs_initscr.3x,v 1.20 2014/03/01 22:31:22 tom Exp @
30 -->
31 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
32 <HTML>
33 <HEAD>
34 <meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
35 <meta name="generator" content="Manpage converted by man2html - see http://invisible-island.net/scripts/readme.html#others_scripts">
36 <TITLE>curs_initscr 3x</TITLE>
37 <link rev=made href="mailto:bug-ncurses@gnu.org">
38 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
39 </HEAD>
40 <BODY>
41 <H1>curs_initscr 3x</H1>
42 <HR>
43 <PRE>
44 <STRONG><A HREF="curs_initscr.3x.html">curs_initscr(3x)</A></STRONG>                                       <STRONG><A HREF="curs_initscr.3x.html">curs_initscr(3x)</A></STRONG>
45
46
47
48
49 </PRE>
50 <H2><a name="h2-NAME">NAME</a></H2><PRE>
51        <STRONG>initscr</STRONG>, <STRONG>newterm</STRONG>, <STRONG>endwin</STRONG>, <STRONG>isendwin</STRONG>, <STRONG>set_term</STRONG>, <STRONG>delscreen</STRONG> -
52        <STRONG>curses</STRONG> screen initialization and manipulation routines
53
54
55 </PRE>
56 <H2><a name="h2-SYNOPSIS">SYNOPSIS</a></H2><PRE>
57        <STRONG>#include</STRONG> <STRONG>&lt;curses.h&gt;</STRONG>
58
59        <STRONG>WINDOW</STRONG> <STRONG>*initscr(void);</STRONG>
60        <STRONG>int</STRONG> <STRONG>endwin(void);</STRONG>
61        <STRONG>bool</STRONG> <STRONG>isendwin(void);</STRONG>
62        <STRONG>SCREEN</STRONG> <STRONG>*newterm(char</STRONG> <STRONG>*type,</STRONG> <STRONG>FILE</STRONG> <STRONG>*outfd,</STRONG> <STRONG>FILE</STRONG> <STRONG>*infd);</STRONG>
63        <STRONG>SCREEN</STRONG> <STRONG>*set_term(SCREEN</STRONG> <STRONG>*new);</STRONG>
64        <STRONG>void</STRONG> <STRONG>delscreen(SCREEN*</STRONG> <STRONG>sp);</STRONG>
65
66
67 </PRE>
68 <H2><a name="h2-DESCRIPTION">DESCRIPTION</a></H2><PRE>
69        <STRONG>initscr</STRONG> is normally the first <STRONG>curses</STRONG> routine to call  when
70        initializing  a program.  A few special routines sometimes
71        need to be called before it; these are  <STRONG>slk_init</STRONG>,  <STRONG>filter</STRONG>,
72        <STRONG>ripoffline</STRONG>,  <STRONG>use_env</STRONG>.  For multiple-terminal applications,
73        <STRONG>newterm</STRONG> may be called before <STRONG>initscr</STRONG>.
74
75        The initscr code determines the terminal type and initial-
76        izes  all <STRONG>curses</STRONG> data structures.  <STRONG>initscr</STRONG> also causes the
77        first call to <STRONG>refresh</STRONG> to clear the screen.  If errors  oc-
78        cur,  <STRONG>initscr</STRONG> writes an appropriate error message to stan-
79        dard error and exits; otherwise, a pointer is returned  to
80        <STRONG>stdscr</STRONG>.
81
82        A  program  that  outputs to more than one terminal should
83        use the <STRONG>newterm</STRONG>  routine  for  each  terminal  instead  of
84        <STRONG>initscr</STRONG>.  A program that needs to inspect capabilities, so
85        it can continue to run in a line-oriented mode if the ter-
86        minal cannot support a screen-oriented program, would also
87        use <STRONG>newterm</STRONG>.  The routine <STRONG>newterm</STRONG> should  be  called  once
88        for each terminal.  It returns a variable of type <STRONG>SCREEN</STRONG> <STRONG>*</STRONG>
89        which should be saved as a  reference  to  that  terminal.
90        <STRONG>newterm</STRONG>'s arguments are
91
92        <STRONG>o</STRONG>   the <EM>type</EM> of the terminal to be used in place of <STRONG>$TERM</STRONG>,
93
94        <STRONG>o</STRONG>   a file pointer for output to the terminal, and
95
96        <STRONG>o</STRONG>   another file pointer for input from the terminal
97
98        If the <EM>type</EM> parameter is <STRONG>NULL</STRONG>, <STRONG>$TERM</STRONG> will be used.
99
100        The  program must also call <STRONG>endwin</STRONG> for each terminal being
101        used before exiting from <STRONG>curses</STRONG>.   If  <STRONG>newterm</STRONG>  is  called
102        more  than  once for the same terminal, the first terminal
103        referred to must be the  last  one  for  which  <STRONG>endwin</STRONG>  is
104        called.
105
106        A  program should always call <STRONG>endwin</STRONG> before exiting or es-
107        caping from <STRONG>curses</STRONG> mode temporarily.  This routine
108
109        <STRONG>o</STRONG>   restores tty modes,
110
111        <STRONG>o</STRONG>   moves the cursor to the lower left-hand corner of  the
112            screen and
113
114        <STRONG>o</STRONG>   resets the terminal into the proper non-visual mode.
115
116        Calling <STRONG>refresh</STRONG> or <STRONG>doupdate</STRONG> after a temporary escape caus-
117        es the program to resume visual mode.
118
119        The <STRONG>isendwin</STRONG> routine  returns  <STRONG>TRUE</STRONG>  if  <STRONG>endwin</STRONG>  has  been
120        called without any subsequent calls to <STRONG>wrefresh</STRONG>, and <STRONG>FALSE</STRONG>
121        otherwise.
122
123        The <STRONG>set_term</STRONG> routine is used to switch  between  different
124        terminals.   The screen reference <STRONG>new</STRONG> becomes the new cur-
125        rent terminal.  The previous terminal is returned  by  the
126        routine.   This  is  the  only  routine  which manipulates
127        <STRONG>SCREEN</STRONG> pointers; all other routines affect only  the  cur-
128        rent terminal.
129
130        The  <STRONG>delscreen</STRONG>  routine  frees storage associated with the
131        <STRONG>SCREEN</STRONG> data structure.  The <STRONG>endwin</STRONG>  routine  does  not  do
132        this, so <STRONG>delscreen</STRONG> should be called after <STRONG>endwin</STRONG> if a par-
133        ticular <STRONG>SCREEN</STRONG> is no longer needed.
134
135
136 </PRE>
137 <H2><a name="h2-RETURN-VALUE">RETURN VALUE</a></H2><PRE>
138        <STRONG>endwin</STRONG> returns the integer <STRONG>ERR</STRONG> upon failure  and  <STRONG>OK</STRONG>  upon
139        successful completion.
140
141        Routines that return pointers always return <STRONG>NULL</STRONG> on error.
142
143        X/Open  defines  no error conditions.  In this implementa-
144        tion
145
146        <STRONG>o</STRONG>   <STRONG>endwin</STRONG> returns an error if the terminal was  not  ini-
147            tialized.
148
149        <STRONG>o</STRONG>   <STRONG>newterm</STRONG> returns an error if it cannot allocate the da-
150            ta structures for the screen,  or  for  the  top-level
151            windows  within  the  screen, i.e., <STRONG>curscr</STRONG>, <STRONG>newscr</STRONG>, or
152            <STRONG>stdscr</STRONG>.
153
154        <STRONG>o</STRONG>   <STRONG>set_term</STRONG> returns no error.
155
156
157 </PRE>
158 <H2><a name="h2-NOTES">NOTES</a></H2><PRE>
159        Note that <STRONG>initscr</STRONG> and <STRONG>newterm</STRONG> may be macros.
160
161
162 </PRE>
163 <H2><a name="h2-PORTABILITY">PORTABILITY</a></H2><PRE>
164        These functions are described in the XSI Curses  standard,
165        Issue 4.  It specifies that portable applications must not
166        call <STRONG>initscr</STRONG> more than once.
167
168        Old versions of curses, e.g., BSD 4.4, may have returned a
169        null  pointer  from  <STRONG>initscr</STRONG>  when  an  error is detected,
170        rather than exiting.  It is safe but  redundant  to  check
171        the return value of <STRONG>initscr</STRONG> in XSI Curses.
172
173        If the TERM variable is missing or empty, <STRONG>initscr</STRONG> uses the
174        value "unknown", which normally corresponds to a  terminal
175        entry  with  the <EM>generic</EM> (<EM>gn</EM>) capability.  Generic entries
176        are detected by <STRONG><A HREF="curs_terminfo.3x.html">curs_terminfo(3x)</A></STRONG> and cannot be used for full-
177        screen  operation.   Other  implementations  may  handle a
178        missing/empty TERM variable differently.
179
180
181 </PRE>
182 <H2><a name="h2-SEE-ALSO">SEE ALSO</a></H2><PRE>
183        <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>,
184        <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>
185        <STRONG><A HREF="curs_variables.3x.html">ables(3x)</A></STRONG>.
186
187
188
189                                                        <STRONG><A HREF="curs_initscr.3x.html">curs_initscr(3x)</A></STRONG>
190 </PRE>
191 <div class="nav">
192 <ul>
193 <li><a href="#h2-NAME">NAME</a></li>
194 <li><a href="#h2-SYNOPSIS">SYNOPSIS</a></li>
195 <li><a href="#h2-DESCRIPTION">DESCRIPTION</a></li>
196 <li><a href="#h2-RETURN-VALUE">RETURN VALUE</a></li>
197 <li><a href="#h2-NOTES">NOTES</a></li>
198 <li><a href="#h2-PORTABILITY">PORTABILITY</a></li>
199 <li><a href="#h2-SEE-ALSO">SEE ALSO</a></li>
200 </ul>
201 </div>
202 </BODY>
203 </HTML>