]> ncurses.scripts.mit.edu Git - ncurses.git/blob - doc/html/man/curs_window.3x.html
ncurses 6.4 - patch 20231014
[ncurses.git] / doc / html / man / curs_window.3x.html
1 <!--
2   ****************************************************************************
3   * Copyright 2020-2022,2023 Thomas E. Dickey                                *
4   * Copyright 1998-2015,2016 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_window.3x,v 1.41 2023/10/14 19:27:01 tom Exp @
31 -->
32 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
33 <HTML>
34 <HEAD>
35 <meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
36 <meta name="generator" content="Manpage converted by man2html - see https://invisible-island.net/scripts/readme.html#others_scripts">
37 <TITLE>curs_window 3x 2023-10-14 ncurses 6.4 Library calls</TITLE>
38 <link rel="author" href="mailto:bug-ncurses@gnu.org">
39
40 </HEAD>
41 <BODY>
42 <H1 class="no-header">curs_window 3x 2023-10-14 ncurses 6.4 Library calls</H1>
43 <PRE>
44 <STRONG><A HREF="curs_window.3x.html">curs_window(3x)</A></STRONG>                  Library calls                 <STRONG><A HREF="curs_window.3x.html">curs_window(3x)</A></STRONG>
45
46
47
48
49 </PRE><H2><a name="h2-NAME">NAME</a></H2><PRE>
50        <STRONG>newwin</STRONG>,  <STRONG>delwin</STRONG>,  <STRONG>mvwin</STRONG>,  <STRONG>subwin</STRONG>,  <STRONG>derwin</STRONG>,  <STRONG>mvderwin</STRONG>,  <STRONG>dupwin</STRONG>, <STRONG>wsyncup</STRONG>,
51        <STRONG>syncok</STRONG>, <STRONG>wcursyncup</STRONG>, <STRONG>wsyncdown</STRONG> - create and manipulate <EM>curses</EM> windows
52
53
54 </PRE><H2><a name="h2-SYNOPSIS">SYNOPSIS</a></H2><PRE>
55        <STRONG>#include</STRONG> <STRONG>&lt;curses.h&gt;</STRONG>
56
57        <STRONG>WINDOW</STRONG> <STRONG>*newwin(</STRONG>
58              <STRONG>int</STRONG> <EM>nlines</EM><STRONG>,</STRONG> <STRONG>int</STRONG> <EM>ncols</EM><STRONG>,</STRONG>
59              <STRONG>int</STRONG> <EM>begin</EM><STRONG>_</STRONG><EM>y</EM><STRONG>,</STRONG> <STRONG>int</STRONG> <EM>begin</EM><STRONG>_</STRONG><EM>x</EM><STRONG>);</STRONG>
60        <STRONG>int</STRONG> <STRONG>delwin(WINDOW</STRONG> <STRONG>*</STRONG><EM>win</EM><STRONG>);</STRONG>
61        <STRONG>int</STRONG> <STRONG>mvwin(WINDOW</STRONG> <STRONG>*</STRONG><EM>win</EM><STRONG>,</STRONG> <STRONG>int</STRONG> <EM>y</EM><STRONG>,</STRONG> <STRONG>int</STRONG> <EM>x</EM><STRONG>);</STRONG>
62        <STRONG>WINDOW</STRONG> <STRONG>*subwin(WINDOW</STRONG> <STRONG>*</STRONG><EM>orig</EM><STRONG>,</STRONG>
63              <STRONG>int</STRONG> <EM>nlines</EM><STRONG>,</STRONG> <STRONG>int</STRONG> <EM>ncols</EM><STRONG>,</STRONG>
64              <STRONG>int</STRONG> <EM>begin</EM><STRONG>_</STRONG><EM>y</EM><STRONG>,</STRONG> <STRONG>int</STRONG> <EM>begin</EM><STRONG>_</STRONG><EM>x</EM><STRONG>);</STRONG>
65        <STRONG>WINDOW</STRONG> <STRONG>*derwin(WINDOW</STRONG> <STRONG>*</STRONG><EM>orig</EM><STRONG>,</STRONG>
66              <STRONG>int</STRONG> <EM>nlines</EM><STRONG>,</STRONG> <STRONG>int</STRONG> <EM>ncols</EM><STRONG>,</STRONG>
67              <STRONG>int</STRONG> <EM>begin</EM><STRONG>_</STRONG><EM>y</EM><STRONG>,</STRONG> <STRONG>int</STRONG> <EM>begin</EM><STRONG>_</STRONG><EM>x</EM><STRONG>);</STRONG>
68        <STRONG>int</STRONG> <STRONG>mvderwin(WINDOW</STRONG> <STRONG>*</STRONG><EM>win</EM><STRONG>,</STRONG> <STRONG>int</STRONG> <EM>par</EM><STRONG>_</STRONG><EM>y</EM><STRONG>,</STRONG> <STRONG>int</STRONG> <EM>par</EM><STRONG>_</STRONG><EM>x</EM><STRONG>);</STRONG>
69        <STRONG>WINDOW</STRONG> <STRONG>*dupwin(WINDOW</STRONG> <STRONG>*</STRONG><EM>win</EM><STRONG>);</STRONG>
70        <STRONG>void</STRONG> <STRONG>wsyncup(WINDOW</STRONG> <STRONG>*</STRONG><EM>win</EM><STRONG>);</STRONG>
71        <STRONG>int</STRONG> <STRONG>syncok(WINDOW</STRONG> <STRONG>*</STRONG><EM>win</EM><STRONG>,</STRONG> <STRONG>bool</STRONG> <EM>bf</EM><STRONG>);</STRONG>
72        <STRONG>void</STRONG> <STRONG>wcursyncup(WINDOW</STRONG> <STRONG>*</STRONG><EM>win</EM><STRONG>);</STRONG>
73        <STRONG>void</STRONG> <STRONG>wsyncdown(WINDOW</STRONG> <STRONG>*</STRONG><EM>win</EM><STRONG>);</STRONG>
74
75
76 </PRE><H2><a name="h2-DESCRIPTION">DESCRIPTION</a></H2><PRE>
77
78 </PRE><H3><a name="h3-newwin">newwin</a></H3><PRE>
79        Calling <STRONG>newwin</STRONG> creates and returns a pointer to a new window  with  the
80        given  number  of lines and columns.  The upper left-hand corner of the
81        window is at
82               line <EM>begin</EM>_<EM>y</EM>,
83               column <EM>begin</EM>_<EM>x</EM>
84
85        If either <EM>nlines</EM> or <EM>ncols</EM> is zero, they default to
86               <STRONG>LINES</STRONG> <STRONG>-</STRONG> <EM>begin</EM>_<EM>y</EM> and
87               <STRONG>COLS</STRONG> <STRONG>-</STRONG> <EM>begin</EM>_<EM>x</EM>.
88
89        A new full-screen window is created by calling <STRONG>newwin(0,0,0,0)</STRONG>.
90
91        Regardless of the function  used  for  creating  a  new  window  (e.g.,
92        <STRONG>newwin</STRONG>, <STRONG>subwin</STRONG>, <STRONG>derwin</STRONG>, <STRONG>newpad</STRONG>), rather than a duplicate (with <STRONG>dupwin</STRONG>),
93        all of the window modes are initialized to the default  values.   These
94        functions set window modes after a window is created:
95
96               <STRONG>idcok</STRONG>  <STRONG>idlok</STRONG>  <STRONG>immedok</STRONG>  <STRONG>keypad</STRONG> <STRONG>leaveok</STRONG> <STRONG>nodelay</STRONG> <STRONG>scrollok</STRONG> <STRONG>setscrreg</STRONG>
97               <STRONG>syncok</STRONG> <STRONG>wbkgdset</STRONG> <STRONG>wbkgrndset</STRONG> and <STRONG>wtimeout</STRONG>.
98
99
100 </PRE><H3><a name="h3-delwin">delwin</a></H3><PRE>
101        Calling <STRONG>delwin</STRONG> deletes the named window, freeing all memory  associated
102        with  it  (it  does  not  actually  erase  the  window's screen image).
103        Subwindows must be deleted before the main window can be deleted.
104
105
106 </PRE><H3><a name="h3-mvwin">mvwin</a></H3><PRE>
107        Calling <STRONG>mvwin</STRONG> moves the window so that the upper left-hand corner is at
108        position  (<EM>x</EM>,  <EM>y</EM>).   If  the  move would cause the window to be off the
109        screen, it is an error and the window is not moved.  Moving  subwindows
110        is allowed, but should be avoided.
111
112
113 </PRE><H3><a name="h3-subwin">subwin</a></H3><PRE>
114        Calling  <STRONG>subwin</STRONG>  creates and returns a pointer to a new window with the
115        given number of lines, <EM>nlines</EM>, and columns, <EM>ncols</EM>.  The  window  is  at
116        position (<EM>begin</EM>_<EM>y</EM>, <EM>begin</EM>_<EM>x</EM>) on the screen.  The subwindow shares memory
117        with the window <EM>orig</EM>, its <EM>ancestor</EM>, so that changes made to one  window
118        will  affect both windows.  When using this routine, it is necessary to
119        call <STRONG>touchwin</STRONG> or <STRONG>touchline</STRONG> on  <EM>orig</EM>  before  calling  <STRONG>wrefresh</STRONG>  on  the
120        subwindow.
121
122
123 </PRE><H3><a name="h3-derwin">derwin</a></H3><PRE>
124        Calling  <STRONG>derwin</STRONG>  is the same as calling <STRONG>subwin,</STRONG> except that <EM>begin</EM>_<EM>y</EM> and
125        <EM>begin</EM>_<EM>x</EM> are relative to the origin of the window <EM>orig</EM> rather  than  the
126        screen.   There is no difference between the subwindows and the derived
127        windows.
128
129        Calling <STRONG>mvderwin</STRONG> moves a  derived  window  (or  subwindow)  inside  its
130        parent  window.   The  screen-relative parameters of the window are not
131        changed.  This routine is used to display different parts of the parent
132        window at the same physical position on the screen.
133
134
135 </PRE><H3><a name="h3-dupwin">dupwin</a></H3><PRE>
136        Calling <STRONG>dupwin</STRONG> creates an exact duplicate of the window <EM>win</EM>.
137
138
139 </PRE><H3><a name="h3-wsyncup">wsyncup</a></H3><PRE>
140        Calling  <STRONG>wsyncup</STRONG>  touches  all  locations  in ancestors of <EM>win</EM> that are
141        changed in <EM>win</EM>.  If <STRONG>syncok</STRONG> is called with  second  argument  <STRONG>TRUE</STRONG>  then
142        <STRONG>wsyncup</STRONG>  is  called  automatically  whenever  there  is a change in the
143        window.
144
145
146 </PRE><H3><a name="h3-wsyncdown">wsyncdown</a></H3><PRE>
147        The <STRONG>wsyncdown</STRONG> routine touches  each  location  in  <EM>win</EM>  that  has  been
148        touched  in  any  of  its  ancestor windows.  This routine is called by
149        <STRONG>wrefresh</STRONG>, so it should almost never be necessary to call it manually.
150
151
152 </PRE><H3><a name="h3-wcursyncup">wcursyncup</a></H3><PRE>
153        The routine <STRONG>wcursyncup</STRONG> updates the current cursor position of  all  the
154        ancestors  of  the window to reflect the current cursor position of the
155        window.
156
157
158 </PRE><H2><a name="h2-RETURN-VALUE">RETURN VALUE</a></H2><PRE>
159        Routines that return an integer return the integer <STRONG>ERR</STRONG> upon failure and
160        <STRONG>OK</STRONG>  (SVr4  only  specifies  "an  integer  value  other  than <STRONG>ERR</STRONG>") upon
161        successful completion.
162
163        Routines that return pointers return <STRONG>NULL</STRONG> on error.
164
165        X/Open defines no error conditions.  In this implementation
166
167        <STRONG>delwin</STRONG>
168             returns an error if the window pointer is null, or if  the  window
169             is the parent of another window.
170
171        <STRONG>derwin</STRONG>
172             returns  an  error if the parent window pointer is null, or if any
173             of its ordinates or dimensions is negative, or  if  the  resulting
174             window does not fit inside the parent window.
175
176        <STRONG>dupwin</STRONG>
177             returns an error if the window pointer is null.
178
179             This  implementation  also maintains a list of windows, and checks
180             that the  pointer  passed  to  <STRONG>delwin</STRONG>  is  one  that  it  created,
181             returning an error if it was not..
182
183        <STRONG>mvderwin</STRONG>
184             returns an error if the window pointer is null, or if some part of
185             the window would be placed off-screen.
186
187        <STRONG>mvwin</STRONG>
188             returns an error if the window pointer is null, or if  the  window
189             is  really  a  pad,  or if some part of the window would be placed
190             off-screen.
191
192        <STRONG>newwin</STRONG>
193             will fail if either of its beginning ordinates is negative, or  if
194             either the number of lines or columns is negative.
195
196        <STRONG>syncok</STRONG>
197             returns an error if the window pointer is null.
198
199        <STRONG>subwin</STRONG>
200             returns  an  error if the parent window pointer is null, or if any
201             of its ordinates or dimensions is negative, or  if  the  resulting
202             window does not fit inside the parent window.
203
204        The  functions  which return a window pointer may also fail if there is
205        insufficient memory for its data structures.  Any  of  these  functions
206        will fail if the screen has not been initialized, i.e., with <STRONG>initscr</STRONG> or
207        <STRONG>newterm</STRONG>.
208
209
210 </PRE><H2><a name="h2-NOTES">NOTES</a></H2><PRE>
211        If many small changes are made to the window, the <STRONG>wsyncup</STRONG> option  could
212        degrade performance.
213
214        Note that <STRONG>syncok</STRONG> may be a macro.
215
216
217 </PRE><H2><a name="h2-PORTABILITY">PORTABILITY</a></H2><PRE>
218        The XSI Curses standard, Issue 4 describes these functions.
219
220        X/Open Curses states regarding <STRONG>delwin</STRONG>:
221
222        <STRONG>o</STRONG>   It must delete subwindows before deleting their parent.
223
224        <STRONG>o</STRONG>   If  <STRONG>delwin</STRONG>  is asked to delete a parent window, it can only succeed
225            if the curses library keeps a list of the subwindows.  SVr4  curses
226            kept  a  count  of the number of subwindows rather than a list.  It
227            simply returned <STRONG>ERR</STRONG> when asked  to  delete  a  subwindow.   Solaris
228            X/Open  curses  does  not  even  make that check, and will delete a
229            parent window which still has subwindows.
230
231        <STRONG>o</STRONG>   Since release 4.0 (1996), ncurses maintains a list of  windows  for
232            each  screen,  to  ensure  that  a  window has no subwindows before
233            allowing deletion.
234
235        <STRONG>o</STRONG>   NetBSD copied this feature of ncurses in 2003.
236            PDCurses follows the scheme used in Solaris X/Open curses.
237
238
239 </PRE><H2><a name="h2-BUGS">BUGS</a></H2><PRE>
240        The subwindow functions <STRONG>subwin</STRONG>, <STRONG>derwin</STRONG>, <STRONG>mvderwin</STRONG>,  <STRONG>wsyncup</STRONG>,  <STRONG>wsyncdown</STRONG>,
241        <STRONG>wcursyncup</STRONG>,  and  <STRONG>syncok</STRONG>  are  flaky, incompletely implemented, and not
242        well tested.
243
244        System V's <EM>curses</EM> documentation  is  unclear  about  what  <STRONG>wsyncup</STRONG>  and
245        <STRONG>wsyncdown</STRONG>  actually  do.   It  seems to imply that they are supposed to
246        touch only those lines that are  affected  by  changes  to  a  window's
247        ancestors.  The language here, and behavior of <EM>ncurses</EM>, is patterned on
248        the X/Open Curses standard; this approach may result in slower updates.
249
250
251 </PRE><H2><a name="h2-SEE-ALSO">SEE ALSO</a></H2><PRE>
252        <STRONG><A HREF="ncurses.3x.html">curses(3x)</A></STRONG>,   <STRONG><A HREF="curs_initscr.3x.html">curs_initscr(3x)</A></STRONG>,    <STRONG><A HREF="curs_refresh.3x.html">curs_refresh(3x)</A></STRONG>,    <STRONG><A HREF="curs_touch.3x.html">curs_touch(3x)</A></STRONG>,
253        <STRONG><A HREF="curs_variables.3x.html">curs_variables(3x)</A></STRONG>
254
255
256
257 ncurses 6.4                       2023-10-14                   <STRONG><A HREF="curs_window.3x.html">curs_window(3x)</A></STRONG>
258 </PRE>
259 <div class="nav">
260 <ul>
261 <li><a href="#h2-NAME">NAME</a></li>
262 <li><a href="#h2-SYNOPSIS">SYNOPSIS</a></li>
263 <li><a href="#h2-DESCRIPTION">DESCRIPTION</a>
264 <ul>
265 <li><a href="#h3-newwin">newwin</a></li>
266 <li><a href="#h3-delwin">delwin</a></li>
267 <li><a href="#h3-mvwin">mvwin</a></li>
268 <li><a href="#h3-subwin">subwin</a></li>
269 <li><a href="#h3-derwin">derwin</a></li>
270 <li><a href="#h3-dupwin">dupwin</a></li>
271 <li><a href="#h3-wsyncup">wsyncup</a></li>
272 <li><a href="#h3-wsyncdown">wsyncdown</a></li>
273 <li><a href="#h3-wcursyncup">wcursyncup</a></li>
274 </ul>
275 </li>
276 <li><a href="#h2-RETURN-VALUE">RETURN VALUE</a></li>
277 <li><a href="#h2-NOTES">NOTES</a></li>
278 <li><a href="#h2-PORTABILITY">PORTABILITY</a></li>
279 <li><a href="#h2-BUGS">BUGS</a></li>
280 <li><a href="#h2-SEE-ALSO">SEE ALSO</a></li>
281 </ul>
282 </div>
283 </BODY>
284 </HTML>