]> ncurses.scripts.mit.edu Git - ncurses.git/blob - doc/html/man/curs_pad.3x.html
ncurses 5.7 - patch 20100918
[ncurses.git] / doc / html / man / curs_pad.3x.html
1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
2 <!-- 
3   ****************************************************************************
4   * Copyright (c) 1998-2005,2010 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_pad.3x,v 1.16 2010/07/31 14:43:29 tom Exp @
31 -->
32 <HTML>
33 <HEAD>
34 <TITLE>curs_pad 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_pad 3x</H1>
40 <HR>
41 <PRE>
42 <!-- Manpage converted by man2html 3.0.1 -->
43 <STRONG><A HREF="curs_pad.3x.html">curs_pad(3x)</A></STRONG>                                               <STRONG><A HREF="curs_pad.3x.html">curs_pad(3x)</A></STRONG>
44
45
46
47
48 </PRE>
49 <H2>NAME</H2><PRE>
50        <STRONG>newpad</STRONG>, <STRONG>subpad</STRONG>, <STRONG>prefresh</STRONG>, <STRONG>pnoutrefresh</STRONG>, <STRONG>pechochar</STRONG>,
51        <STRONG>pecho_wchar</STRONG> - create and display <STRONG>curses</STRONG> pads
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>*newpad(int</STRONG> <STRONG>nlines,</STRONG> <STRONG>int</STRONG> <STRONG>ncols);</STRONG>
59        <STRONG>WINDOW</STRONG> <STRONG>*subpad(WINDOW</STRONG> <STRONG>*orig,</STRONG> <STRONG>int</STRONG> <STRONG>nlines,</STRONG> <STRONG>int</STRONG> <STRONG>ncols,</STRONG>
60              <STRONG>int</STRONG> <STRONG>begin_y,</STRONG> <STRONG>int</STRONG> <STRONG>begin_x);</STRONG>
61        <STRONG>int</STRONG> <STRONG>prefresh(WINDOW</STRONG> <STRONG>*pad,</STRONG> <STRONG>int</STRONG> <STRONG>pminrow,</STRONG> <STRONG>int</STRONG> <STRONG>pmincol,</STRONG>
62              <STRONG>int</STRONG> <STRONG>sminrow,</STRONG> <STRONG>int</STRONG> <STRONG>smincol,</STRONG> <STRONG>int</STRONG> <STRONG>smaxrow,</STRONG> <STRONG>int</STRONG> <STRONG>smaxcol);</STRONG>
63        <STRONG>int</STRONG> <STRONG>pnoutrefresh(WINDOW</STRONG> <STRONG>*pad,</STRONG> <STRONG>int</STRONG> <STRONG>pminrow,</STRONG> <STRONG>int</STRONG> <STRONG>pmincol,</STRONG>
64              <STRONG>int</STRONG> <STRONG>sminrow,</STRONG> <STRONG>int</STRONG> <STRONG>smincol,</STRONG> <STRONG>int</STRONG> <STRONG>smaxrow,</STRONG> <STRONG>int</STRONG> <STRONG>smaxcol);</STRONG>
65        <STRONG>int</STRONG> <STRONG>pechochar(WINDOW</STRONG> <STRONG>*pad,</STRONG> <STRONG>chtype</STRONG> <STRONG>ch);</STRONG>
66        <STRONG>int</STRONG> <STRONG>pecho_wchar(WINDOW</STRONG> <STRONG>*pad,</STRONG> <STRONG>const</STRONG> <STRONG>cchar_t</STRONG> <STRONG>*wch);</STRONG>
67
68
69 </PRE>
70 <H2>DESCRIPTION</H2><PRE>
71        The <STRONG>newpad</STRONG> routine creates and returns a pointer to a  new
72        pad data structure with the given number of lines, <EM>nlines</EM>,
73        and columns, <EM>ncols</EM>.  A pad is like a window,  except  that
74        it is not restricted by the screen size, and is not neces-
75        sarily associated with a particular part  of  the  screen.
76        Pads can be used when a large window is needed, and only a
77        part of the window will be on the screen at one time.  Au-
78        tomatic refreshes of pads (e.g., from scrolling or echoing
79        of input) do not occur.  It is not legal to call  <STRONG>wrefresh</STRONG>
80        with  a  <EM>pad</EM>  as  an  argument;  the  routines <STRONG>prefresh</STRONG> or
81        <STRONG>pnoutrefresh</STRONG> should be called instead.   Note  that  these
82        routines require additional parameters to specify the part
83        of the pad to be displayed and the location on the  screen
84        to be used for the display.
85
86        The <STRONG>subpad</STRONG> routine creates and returns a pointer to a sub-
87        window within a  pad  with  the  given  number  of  lines,
88        <EM>nlines</EM>,  and  columns,  <EM>ncols</EM>.   Unlike <STRONG>subwin</STRONG>, which uses
89        screen coordinates, the window is  at  position  (<EM>begin</EM>_<EM>x</EM><STRONG>,</STRONG>
90        <EM>begin</EM>_<EM>y</EM>)  on the pad.  The window is made in the middle of
91        the window <EM>orig</EM>, so that changes made to one window affect
92        both windows.  During the use of this routine, it will of-
93        ten be necessary to call <STRONG>touchwin</STRONG> or <STRONG>touchline</STRONG> on <EM>orig</EM> be-
94        fore calling <STRONG>prefresh</STRONG>.
95
96        The  <STRONG>prefresh</STRONG>  and  <STRONG>pnoutrefresh</STRONG> routines are analogous to
97        <STRONG>wrefresh</STRONG> and <STRONG>wnoutrefresh</STRONG> except that they relate to  pads
98        instead  of windows.  The additional parameters are needed
99        to indicate what part of the pad and screen are  involved.
100        The <EM>pminrow</EM> and <EM>pmincol</EM> parameters specify the upper left-
101        hand corner of the rectangle to be displayed in  the  pad.
102        The  <EM>sminrow</EM>,  <EM>smincol</EM>,  <EM>smaxrow</EM>,  and  <EM>smaxcol</EM> parameters
103        specify the edges of the rectangle to be displayed on  the
104        screen.   The  lower right-hand corner of the rectangle to
105        be displayed in the pad is calculated from the screen  co-
106        ordinates,  since  the  rectangles  must be the same size.
107        Both rectangles must be entirely  contained  within  their
108        respective  structures.  Negative values of <EM>pminrow</EM>, <EM>pmin-</EM>
109        <EM>col</EM>, <EM>sminrow</EM>, or <EM>smincol</EM> are treated as if they were zero.
110
111        The <STRONG>pechochar</STRONG> routine is functionally equivalent to a call
112        to  <STRONG>addch</STRONG>  followed by a call to <STRONG>refresh</STRONG>, a call to <STRONG>waddch</STRONG>
113        followed by a call to <STRONG>wrefresh</STRONG>, or a call to  <STRONG>waddch</STRONG>  fol-
114        lowed  by  a  call to <STRONG>prefresh</STRONG>.  The knowledge that only a
115        single character is being output is taken into  considera-
116        tion  and, for non-control characters, a considerable per-
117        formance gain might be seen by using  these  routines  in-
118        stead of their equivalents.  In the case of <STRONG>pechochar</STRONG>, the
119        last location of the pad on the screen is reused  for  the
120        arguments to <STRONG>prefresh</STRONG>.
121
122        The  <STRONG>pecho_wchar</STRONG>  function is the analogous wide-character
123        form of <STRONG>pechochar</STRONG>.  It outputs one character to a pad  and
124        immediately  refreshes the pad.  It does this by a call to
125        <STRONG>wadd_wch</STRONG> followed by a call to <STRONG>prefresh</STRONG>.
126
127
128 </PRE>
129 <H2>RETURN VALUE</H2><PRE>
130        Routines that return an integer return  <STRONG>ERR</STRONG>  upon  failure
131        and  <STRONG>OK</STRONG>  (SVr4 only specifies "an integer value other than
132        <STRONG>ERR</STRONG>") upon successful completion.
133
134        Routines that return pointers return <STRONG>NULL</STRONG>  on  error,  and
135        set <STRONG>errno</STRONG> to <STRONG>ENOMEM</STRONG>.
136
137        X/Open  does not define any error conditions.  In this im-
138        plementation
139
140               <STRONG>prefresh</STRONG> and <STRONG>pnoutrefresh</STRONG>
141                    return an error if the window pointer is null,
142                    or if the window is not really a pad or if the
143                    area to refresh extends off-screen or  if  the
144                    minimum coordinates are greater than the maxi-
145                    mum.
146
147               <STRONG>pechochar</STRONG>
148                    returns an error if the window is not really a
149                    pad,  and the associated call to <STRONG>wechochar</STRONG> re-
150                    turns an error.
151
152               <STRONG>pecho_wchar</STRONG>
153                    returns an error if the window is not really a
154                    pad,  and  the  associated call to <STRONG>wecho_wchar</STRONG>
155                    returns an error.
156
157
158 </PRE>
159 <H2>NOTES</H2><PRE>
160        Note that <STRONG>pechochar</STRONG> may be a macro.
161
162
163 </PRE>
164 <H2>PORTABILITY</H2><PRE>
165        The XSI Curses standard, Issue  4  describes  these  func-
166        tions.
167
168
169 </PRE>
170 <H2>SEE ALSO</H2><PRE>
171        <STRONG><A HREF="ncurses.3x.html">curses(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>,  <STRONG>curs_add-</STRONG>
172        <STRONG><A HREF="curs_addch.3x.html">ch(3x)</A></STRONG>.
173
174
175
176                                                            <STRONG><A HREF="curs_pad.3x.html">curs_pad(3x)</A></STRONG>
177 </PRE>
178 <HR>
179 <ADDRESS>
180 Man(1) output converted with
181 <a href="http://www.oac.uci.edu/indiv/ehood/man2html.html">man2html</a>
182 </ADDRESS>
183 </BODY>
184 </HTML>