]> ncurses.scripts.mit.edu Git - ncurses.git/blob - man/curs_get_wstr.3x
ncurses 6.4 - patch 20231125
[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.41 2023/11/25 14:29:54 tom Exp $
31 .TH curs_get_wstr 3X 2023-11-25 "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 RETURN VALUE
134 All of these functions return the integer \fBOK\fP upon successful completion.
135 If unsuccessful, they return \fBERR\fP.
136 .PP
137 X/Open defines no error conditions.
138 .PP
139 In this implementation,
140 these functions return an error
141 .bP
142 if the window pointer is null,
143 .bP
144 if its timeout expires without having any data, or
145 .bP
146 if the associated call to
147 \fBwget_wch\fP
148 failed.
149 .PP
150 Functions with a \*(``mv\*('' prefix first perform a cursor movement using
151 \fBwmove\fP, and return an error if the position is outside the window,
152 or if the window pointer is null.
153 .SH NOTES
154 Any of these functions other than
155 \fBwgetn_wstr\fP
156 may be macros.
157 .PP
158 Using
159 \fBget_wstr\fP,
160 \fBmvget_wstr\fP,
161 \fBmvwget_wstr\fP, or
162 \fBwget_wstr\fP
163 to read a line that
164 overflows the array pointed to by
165 \fBwstr\fP
166 causes undefined
167 results.
168 The use of
169 \fBgetn_wstr\fP,
170 \fBmvgetn_wstr\fP,
171 \fBmvwgetn_wstr\fP, or
172 \fBwgetn_wstr\fP,
173 respectively, is recommended.
174 .PP
175 These functions cannot return \fBKEY_\fP values because there
176 is no way to distinguish a \fBKEY_\fP value from a valid \fBwchar_t\fP value.
177 .SH PORTABILITY
178 These functions are described in The Single Unix Specification, Version 2.
179 No error conditions are defined.
180 .PP
181 This implementation returns \fBERR\fP if the window pointer is null,
182 or if the lower-level \fBwget_wch\fP call returns an \fBERR\fP.
183 In the latter case,
184 an \fBERR\fP return without other data is treated as an end-of-file condition,
185 and the returned array contains a \fBWEOF\fP followed by a null \fBwchar_t\fP.
186 .PP
187 X/Open curses documented these functions to pass an array of \fBwchar_t\fP
188 in 1997, but that was an error because of this part of the description:
189 .RS
190 .PP
191 The effect of \fBget_wstr\fP is as though a series of calls to
192 \fBget_wch\fP were made, until a newline character, end-of-line character, or
193 end-of-file character is processed.
194 .RE
195 .PP
196 The latter function \fIget_wch\fP can return a negative value,
197 while \fBwchar_t\fP is a unsigned type.
198 All of the vendors implement this using \fBwint_t\fP, following the standard.
199 .PP
200 X/Open Curses, Issue 7 (2009) is unclear regarding whether
201 the terminating \fInull \fBwchar_t\fR
202 value is counted in the length parameter \fIn\fP.
203 X/Open Curses, Issue 7 revised the corresponding description
204 of \fBwgetnstr\fP to address this issue.
205 The unrevised description of \fBwget_nwstr\fP can be interpreted either way.
206 This implementation counts the terminator in the length.
207 .PP
208 X/Open Curses does not specify what happens if the length \fIn\fP is negative.
209 .bP
210 For analogy with \fBwgetnstr\fP,
211 ncurses 6.2 uses a limit (based on \fBLINE_MAX\fP).
212 .bP
213 Some other implementations (such as Solaris xcurses) do the same,
214 while others (PDCurses) do not allow this.
215 .bP
216 NetBSD 7 curses imitates ncurses 6.1 in this regard,
217 treating a \fB\-1\fP as an indefinite number of characters.
218 .SH SEE ALSO
219 \fB\%curses\fP(3X),
220 \fB\%curs_getstr\fP(3X),
221 \fB\%curs_get_wch\fP(3X)