]> ncurses.scripts.mit.edu Git - ncurses.git/blob - doc/html/man/form_field_buffer.3x.html
ncurses 6.2 - patch 20200425
[ncurses.git] / doc / html / man / form_field_buffer.3x.html
1 <!-- 
2   * t
3   ****************************************************************************
4   * Copyright 2018-2019,2020 Thomas E. Dickey                                *
5   * Copyright 1998-2010,2017 Free Software Foundation, Inc.                  *
6   *                                                                          *
7   * Permission is hereby granted, free of charge, to any person obtaining a  *
8   * copy of this software and associated documentation files (the            *
9   * "Software"), to deal in the Software without restriction, including      *
10   * without limitation the rights to use, copy, modify, merge, publish,      *
11   * distribute, distribute with modifications, sublicense, and/or sell       *
12   * copies of the Software, and to permit persons to whom the Software is    *
13   * furnished to do so, subject to the following conditions:                 *
14   *                                                                          *
15   * The above copyright notice and this permission notice shall be included  *
16   * in all copies or substantial portions of the Software.                   *
17   *                                                                          *
18   * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
19   * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
20   * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
21   * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
22   * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
23   * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
24   * THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
25   *                                                                          *
26   * Except as contained in this notice, the name(s) of the above copyright   *
27   * holders shall not be used in advertising or otherwise to promote the     *
28   * sale, use or other dealings in this Software without prior written       *
29   * authorization.                                                           *
30   ****************************************************************************
31   * @Id: form_field_buffer.3x,v 1.26 2020/03/28 19:06:28 tom Exp @
32 -->
33 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
34 <HTML>
35 <HEAD>
36 <meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
37 <meta name="generator" content="Manpage converted by man2html - see https://invisible-island.net/scripts/readme.html#others_scripts">
38 <TITLE>form_field_buffer 3x</TITLE>
39 <link rel="author" href="mailto:bug-ncurses@gnu.org">
40 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
41 </HEAD>
42 <BODY>
43 <H1 class="no-header">form_field_buffer 3x</H1>
44 <PRE>
45 <STRONG><A HREF="form_field_buffer.3x.html">form_field_buffer(3x)</A></STRONG>                                    <STRONG><A HREF="form_field_buffer.3x.html">form_field_buffer(3x)</A></STRONG>
46
47
48
49
50 </PRE><H2><a name="h2-NAME">NAME</a></H2><PRE>
51        <STRONG>form_field_buffer</STRONG> - field buffer control
52
53
54 </PRE><H2><a name="h2-SYNOPSIS">SYNOPSIS</a></H2><PRE>
55        <STRONG>#include</STRONG> <STRONG>&lt;form.h&gt;</STRONG>
56
57        int set_field_buffer(FIELD *field, int buf, const char *value);
58        char *field_buffer(const FIELD *field, int buffer);
59        int set_field_status(FIELD *field, bool status);
60        bool field_status(const FIELD *field);
61        int set_max_field(FIELD *field, int max);
62
63
64 </PRE><H2><a name="h2-DESCRIPTION">DESCRIPTION</a></H2><PRE>
65        The  function  <STRONG>set_field_buffer</STRONG>  sets  the numbered buffer of the given
66        field to contain a given string:
67
68           <STRONG>o</STRONG>   Buffer 0 is the displayed value of the field.
69
70           <STRONG>o</STRONG>   Other numbered buffers may be allocated by applications  through
71               the <STRONG>nbuf</STRONG> argument of (see <STRONG><A HREF="form_field_new.3x.html">form_field_new(3x)</A></STRONG>) but are not manip-
72               ulated by the forms library.
73
74        The function <STRONG>field_buffer</STRONG> returns a pointer  to  the  contents  of  the
75        given numbered buffer:
76
77           <STRONG>o</STRONG>   The  buffer contents always have the same length, and are padded
78               with trailing spaces as needed to  ensure  this  length  is  the
79               same.
80
81           <STRONG>o</STRONG>   The  buffer  may contain leading spaces, depending on how it was
82               set.
83
84           <STRONG>o</STRONG>   The buffer contents are set with <STRONG>set_field_buffer</STRONG>, or as a  side
85               effect of any editing operations on the corresponding field.
86
87           <STRONG>o</STRONG>   Editing  operations  are  based on the <EM>window</EM> which displays the
88               field, rather than a <EM>string</EM>.  The window contains only printable
89               characters,  and  is  filled  with  blanks.  If you want the raw
90               data, you must write your own routine that copies the value  out
91               of the buffer and removes the leading and trailing spaces.
92
93           <STRONG>o</STRONG>   Because  editing  operations change the content of the buffer to
94               correspond to the window, you should not rely on  using  buffers
95               for long-term storage of form data.
96
97        The function <STRONG>set_field_status</STRONG> sets the associated status flag of <EM>field</EM>;
98        <STRONG>field_status</STRONG> gets the current value.  The  status  flag  is  set  to  a
99        nonzero value whenever the field changes.
100
101        The  function  <STRONG>set_max_field</STRONG> sets the maximum size for a dynamic field.
102        An argument of 0 turns off any maximum size threshold for that field.
103
104
105 </PRE><H2><a name="h2-RETURN-VALUE">RETURN VALUE</a></H2><PRE>
106        The <STRONG>field_buffer</STRONG> function returns NULL on error.  It sets <STRONG>errno</STRONG> accord-
107        ing to their success:
108
109        <STRONG>E_OK</STRONG> The routine succeeded.
110
111        <STRONG>E_BAD_ARGUMENT</STRONG>
112             Routine detected an incorrect or out-of-range argument.
113
114        The <STRONG>field_status</STRONG> function returns <STRONG>TRUE</STRONG> or <STRONG>FALSE</STRONG>.
115
116        The remaining routines return one of the following:
117
118        <STRONG>E_OK</STRONG> The routine succeeded.
119
120        <STRONG>E_SYSTEM_ERROR</STRONG>
121             System error occurred (see <STRONG>errno(3)</STRONG>).
122
123        <STRONG>E_BAD_ARGUMENT</STRONG>
124             Routine detected an incorrect or out-of-range argument.
125
126
127 </PRE><H2><a name="h2-SEE-ALSO">SEE ALSO</a></H2><PRE>
128        <STRONG><A HREF="ncurses.3x.html">curses(3x)</A></STRONG>  and  related  pages  whose names begin "form_" for detailed
129        descriptions of the entry points.
130
131
132 </PRE><H2><a name="h2-NOTES">NOTES</a></H2><PRE>
133        The header file <STRONG>&lt;form.h&gt;</STRONG> automatically includes the header file
134
135        When configured for wide characters, <STRONG>field_buffer</STRONG> returns a pointer  to
136        temporary  storage  (allocated and freed by the library).  The applica-
137        tion should not attempt to modify the data.  It will be  freed  on  the
138        next call to <STRONG>field_buffer</STRONG> to return the same buffer.  <STRONG>&lt;curses.h&gt;</STRONG>.
139
140
141 </PRE><H2><a name="h2-PORTABILITY">PORTABILITY</a></H2><PRE>
142        These  routines emulate the System V forms library.  They were not sup-
143        ported on Version 7 or BSD versions.
144
145        The  <STRONG>set_max_field</STRONG>   function   checks   for   an   ncurses   extension
146        <STRONG>O_INPUT_FIELD</STRONG>  which  allows a dynamic field to shrink if the new limit
147        is smaller than the current field size.
148
149
150 </PRE><H2><a name="h2-AUTHORS">AUTHORS</a></H2><PRE>
151        Juergen Pfeifer.  Manual pages and adaptation for new curses by Eric S.
152        Raymond.
153
154
155
156                                                          <STRONG><A HREF="form_field_buffer.3x.html">form_field_buffer(3x)</A></STRONG>
157 </PRE>
158 <div class="nav">
159 <ul>
160 <li><a href="#h2-NAME">NAME</a></li>
161 <li><a href="#h2-SYNOPSIS">SYNOPSIS</a></li>
162 <li><a href="#h2-DESCRIPTION">DESCRIPTION</a></li>
163 <li><a href="#h2-RETURN-VALUE">RETURN VALUE</a></li>
164 <li><a href="#h2-SEE-ALSO">SEE ALSO</a></li>
165 <li><a href="#h2-NOTES">NOTES</a></li>
166 <li><a href="#h2-PORTABILITY">PORTABILITY</a></li>
167 <li><a href="#h2-AUTHORS">AUTHORS</a></li>
168 </ul>
169 </div>
170 </BODY>
171 </HTML>