]> ncurses.scripts.mit.edu Git - ncurses.git/blob - man/curs_get_wstr.3x
ncurses 6.4 - patch 20231007
[ncurses.git] / man / curs_get_wstr.3x
1 .\"***************************************************************************
2 .\" Copyright 2018-2022,2023 Thomas E. Dickey                                *
3 .\" Copyright 2002-2012,2017 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 .\"
30 .\" $Id: curs_get_wstr.3x,v 1.37 2023/10/07 21:19:07 tom Exp $
31 .TH curs_get_wstr 3X 2023-10-07 "ncurses 6.4" "Library calls"
32 .ie \n(.g \{\
33 .ds `` \(lq
34 .ds '' \(rq
35 .\}
36 .el \{\
37 .ie t .ds `` ``
38 .el   .ds `` ""
39 .ie t .ds '' ''
40 .el   .ds '' ""
41 .\}
42 .
43 .de bP
44 .ie n  .IP \(bu 4
45 .el    .IP \(bu 2
46 ..
47 .SH NAME
48 \fB\%get_wstr\fP,
49 \fB\%getn_wstr\fP,
50 \fB\%wget_wstr\fP,
51 \fB\%wgetn_wstr\fP,
52 \fB\%mvget_wstr\fP,
53 \fB\%mvgetn_wstr\fP,
54 \fB\%mvwget_wstr\fP,
55 \fB\%mvwgetn_wstr\fP \-
56 get a wide-character string from a \fIcurses\fR terminal keyboard
57 .SH SYNOPSIS
58 .nf
59 \fB#include <curses.h>
60 .PP
61 \fBint get_wstr(wint_t *\fIwstr\fP);
62 \fBint getn_wstr(wint_t *\fIwstr\fP, int \fIn\fP);
63 \fBint wget_wstr(WINDOW *\fIwin\fP, wint_t *\fIwstr\fP);
64 \fBint wgetn_wstr(WINDOW *\fIwin\fP, wint_t *\fIwstr\fP, int \fIn\fP);
65 .PP
66 \fBint mvget_wstr(int \fIy\fP, int \fIx\fP, wint_t *\fIwstr\fP);
67 \fBint mvgetn_wstr(int \fIy\fP, int \fIx\fP, wint_t *\fIwstr\fP, int \fIn\fP);
68 \fBint mvwget_wstr(WINDOW *\fIwin\fP, int \fIy\fP, int \fIx\fP, wint_t *\fIwstr\fP);
69 \fBint mvwgetn_wstr(WINDOW *\fIwin\fP, int \fIy\fP, int \fIx\fP, wint_t *\fIwstr\fP, int \fIn\fP);
70 .fi
71 .SH DESCRIPTION
72 The function
73 \fBwgetn_wstr\fP
74 is equivalent to a series of calls to
75 \fBwget_wch\fP(3X)
76 until a newline or carriage return terminates the series:
77 .bP
78 The terminating character is not included in the returned string.
79 .bP
80 An end-of-file condition is represented by \fBWEOF\fP,
81 as defined in \fB<wchar.h>\fP.
82 .bP
83 In all instances, the end of the string is terminated
84 by a null \fBwchar_t\fP.
85 .bP
86 The function stores the result in the area pointed to
87 by the \fIwstr\fP parameter.
88 .bP
89 The function reads at most \fIn\fP characters,
90 thus preventing a possible overflow of the input buffer.
91 .IP
92 Any attempt to enter more characters
93 (other than the terminating newline or carriage return)
94 causes a beep.
95 .IP
96 Function keys also cause a beep and are ignored.
97 .PP
98 The user's \fIerase\fP and \fIkill\fP characters are interpreted:
99 .bP
100 The \fIerase\fP character (e.g., \fB^H\fP) erases the character
101 at the end of the buffer, moving the cursor to the left.
102 .IP
103 If \fIkeypad\fP mode is on for the window,
104 \fBKEY_LEFT\fP and \fBKEY_BACKSPACE\fP
105 are both considered equivalent to the user's \fIerase\fP character.
106 .bP
107 The \fIkill\fP character (e.g., \fB^U\fP) erases the entire buffer,
108 leaving the cursor at the beginning of the buffer.
109 .PP
110 Characters input are echoed only if \fBecho\fP is currently on.
111 In that case,
112 backspace is echoed as deletion of the previous character
113 (typically a left motion).
114 .PP
115 The
116 \fBgetn_wstr\fP,
117 \fBmvgetn_wstr\fP,
118 \fBmvwgetn_wstr\fP, and
119 \fBwgetn_wstr\fP
120 functions are identical
121 to the
122 \fBget_wstr\fP,
123 \fBmvget_wstr\fP,
124 \fBmvwget_wstr\fP, and
125 \fBwget_wstr\fP
126 functions, respectively,
127 except that the
128 \fB*n_*\fP
129 versions read at most
130 \fIn\fP
131 characters, letting the application prevent overflow of the
132 input buffer.
133 .SH NOTES
134 Any of these functions other than
135 \fBwgetn_wstr\fP
136 may be macros.
137 .PP
138 Using
139 \fBget_wstr\fP,
140 \fBmvget_wstr\fP,
141 \fBmvwget_wstr\fP, or
142 \fBwget_wstr\fP
143 to read a line that
144 overflows the array pointed to by
145 \fBwstr\fP
146 causes undefined
147 results.
148 The use of
149 \fBgetn_wstr\fP,
150 \fBmvgetn_wstr\fP,
151 \fBmvwgetn_wstr\fP, or
152 \fBwgetn_wstr\fP,
153 respectively, is recommended.
154 .PP
155 These functions cannot return \fBKEY_\fP values because there
156 is no way to distinguish a \fBKEY_\fP value from a valid \fBwchar_t\fP value.
157 may be macros.
158 .SH RETURN VALUE
159 All of these functions return the integer \fBOK\fP upon successful completion.
160 If unsuccessful, they return \fBERR\fP.
161 .PP
162 X/Open defines no error conditions.
163 .PP
164 In this implementation,
165 these functions return an error
166 .bP
167 if the window pointer is null,
168 .bP
169 if its timeout expires without having any data, or
170 .bP
171 if the associated call to
172 \fBwget_wch\fP
173 failed.
174 .PP
175 Functions with a \*(``mv\*('' prefix first perform a cursor movement using
176 \fBwmove\fP, and return an error if the position is outside the window,
177 or if the window pointer is null.
178 .SH PORTABILITY
179 These functions are described in The Single Unix Specification, Version 2.
180 No error conditions are defined.
181 .PP
182 This implementation returns \fBERR\fP if the window pointer is null,
183 or if the lower-level \fBwget_wch\fP call returns an \fBERR\fP.
184 In the latter case,
185 an \fBERR\fP return without other data is treated as an end-of-file condition,
186 and the returned array contains a \fBWEOF\fP followed by a null \fBwchar_t\fP.
187 .PP
188 X/Open curses documented these functions to pass an array of \fBwchar_t\fP
189 in 1997, but that was an error because of this part of the description:
190 .RS
191 .PP
192 The effect of \fBget_wstr\fP is as though a series of calls to
193 \fBget_wch\fP were made, until a newline character, end-of-line character, or
194 end-of-file character is processed.
195 .RE
196 .PP
197 The latter function \fIget_wch\fP can return a negative value,
198 while \fBwchar_t\fP is a unsigned type.
199 All of the vendors implement this using \fBwint_t\fP, following the standard.
200 .PP
201 X/Open Curses, Issue 7 (2009) is unclear regarding whether
202 the terminating \fInull \fBwchar_t\fR
203 value is counted in the length parameter \fIn\fP.
204 X/Open Curses, Issue 7 revised the corresponding description
205 of \fBwgetnstr\fP to address this issue.
206 The unrevised description of \fBwget_nwstr\fP can be interpreted either way.
207 This implementation counts the terminator in the length.
208 .PP
209 X/Open Curses does not specify what happens if the length \fIn\fP is negative.
210 .bP
211 For analogy with \fBwgetnstr\fP,
212 ncurses 6.2 uses a limit (based on \fBLINE_MAX\fP).
213 .bP
214 Some other implementations (such as Solaris xcurses) do the same,
215 while others (PDCurses) do not allow this.
216 .bP
217 NetBSD 7 curses imitates ncurses 6.1 in this regard,
218 treating a \fB\-1\fP as an indefinite number of characters.
219 .SH SEE ALSO
220 \fB\%curses\fP(3X),
221 \fB\%curs_get_wch\fP(3X),
222 \fB\%curs_getstr\fP(3X)