form_field_buffer.3x.html 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
  2. <!--
  3. * t
  4. ****************************************************************************
  5. * Copyright (c) 1998-2005,2006 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.14 2006/11/04 17:12:00 tom Exp @
  32. -->
  33. <HTML>
  34. <HEAD>
  35. <TITLE>form_field_buffer 3x</TITLE>
  36. <link rev=made href="mailto:bug-ncurses@gnu.org">
  37. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
  38. </HEAD>
  39. <BODY>
  40. <H1>form_field_buffer 3x</H1>
  41. <HR>
  42. <PRE>
  43. <!-- Manpage converted by man2html 3.0.1 -->
  44. <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>
  45. </PRE>
  46. <H2>NAME</H2><PRE>
  47. <STRONG>form_field_buffer</STRONG> - field buffer control
  48. </PRE>
  49. <H2>SYNOPSIS</H2><PRE>
  50. <STRONG>#include</STRONG> <STRONG>&lt;form.h&gt;</STRONG>
  51. int set_field_buffer(FIELD *field, int buf, const char
  52. *value);
  53. char *field_buffer(const FIELD *field, int buffer);
  54. int set_field_status(FIELD *field, bool status);
  55. bool field_status(const FIELD *field);
  56. int set_max_field(FIELD *field, int max);
  57. </PRE>
  58. <H2>DESCRIPTION</H2><PRE>
  59. The function <STRONG>set_field_buffer</STRONG> sets the numbered buffer of
  60. the given field to contain a given string. Buffer 0 is
  61. the displayed value of the field; other numbered buffers
  62. may be allocated by applications through the <STRONG>nbuf</STRONG> argument
  63. of (see <STRONG><A HREF="form_field_new.3x.html">form_field_new(3x)</A></STRONG>) but are not manipulated by the
  64. forms library. The function <STRONG>field_buffer</STRONG> returns the
  65. address of the buffer. Please note that this buffer has
  66. always the length of the buffer, that means that it may
  67. typically contain trailing spaces. If you entered leading
  68. spaces the buffer may also contain them. If you want the
  69. raw data, you must write your own routine that copies the
  70. value out of the buffer and removes the leading and trail-
  71. ing spaces. Please note also, that subsequent operations
  72. on the form will probably change the content of the
  73. buffer. So do not use it for long term storage of the
  74. entered form data.
  75. The function <STRONG>set_field_status</STRONG> sets the associated status
  76. flag of <EM>field</EM>; <STRONG>field_status</STRONG> gets the current value. The
  77. status flag is set to a nonzero value whenever the field
  78. changes.
  79. The function <STRONG>set_max_field</STRONG> sets the maximum size for a
  80. dynamic field. An argument of 0 turns off any maximum
  81. size threshold for that field.
  82. </PRE>
  83. <H2>RETURN VALUE</H2><PRE>
  84. The <STRONG>field_buffer</STRONG> function returns NULL on error. It sets
  85. errno according to their success:
  86. <STRONG>E_OK</STRONG> The routine succeeded.
  87. <STRONG>E_BAD_ARGUMENT</STRONG>
  88. Routine detected an incorrect or out-of-range argu-
  89. ment.
  90. The <STRONG>field_status</STRONG> function returns <STRONG>TRUE</STRONG> or <STRONG>FALSE</STRONG>.
  91. The remaining routines return one of the following:
  92. <STRONG>E_OK</STRONG> The routine succeeded.
  93. <STRONG>E_SYSTEM_ERROR</STRONG>
  94. System error occurred (see <STRONG>errno</STRONG>).
  95. <STRONG>E_BAD_ARGUMENT</STRONG>
  96. Routine detected an incorrect or out-of-range argu-
  97. ment.
  98. </PRE>
  99. <H2>SEE ALSO</H2><PRE>
  100. <STRONG><A HREF="ncurses.3x.html">curses(3x)</A></STRONG> and related pages whose names begin "form_" for
  101. detailed descriptions of the entry points.
  102. </PRE>
  103. <H2>NOTES</H2><PRE>
  104. The header file <STRONG>&lt;form.h&gt;</STRONG> automatically includes the header
  105. file
  106. When configured for wide-characters, <STRONG>field_buffer</STRONG> returns
  107. a pointer to temporary storage (allocated and freed by the
  108. library). The application should not attempt to modify
  109. the data. It will be freed on the next call to
  110. <STRONG>field_buffer</STRONG> to return the same buffer. <STRONG>&lt;curses.h&gt;</STRONG>.
  111. </PRE>
  112. <H2>PORTABILITY</H2><PRE>
  113. These routines emulate the System V forms library. They
  114. were not supported on Version 7 or BSD versions.
  115. </PRE>
  116. <H2>AUTHORS</H2><PRE>
  117. Juergen Pfeifer. Manual pages and adaptation for new
  118. curses by Eric S. Raymond.
  119. <STRONG><A HREF="form_field_buffer.3x.html">form_field_buffer(3x)</A></STRONG>
  120. </PRE>
  121. <HR>
  122. <ADDRESS>
  123. Man(1) output converted with
  124. <a href="http://www.oac.uci.edu/indiv/ehood/man2html.html">man2html</a>
  125. </ADDRESS>
  126. </BODY>
  127. </HTML>