blob: 2a3fb3ce27bf19ce5f634f6324eca2f46b35aa9b [file] [log] [blame]
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301.\"***************************************************************************
Steve Kondikae271bc2015-11-15 02:50:53 +01002.\" Copyright (c) 2002-2010,2012 Free Software Foundation, Inc. *
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303.\" *
4.\" Permission is hereby granted, free of charge, to any person obtaining a *
5.\" copy of this software and associated documentation files (the *
6.\" "Software"), to deal in the Software without restriction, including *
7.\" without limitation the rights to use, copy, modify, merge, publish, *
8.\" distribute, distribute with modifications, sublicense, and/or sell *
9.\" copies of the Software, and to permit persons to whom the Software is *
10.\" furnished to do so, subject to the following conditions: *
11.\" *
12.\" The above copyright notice and this permission notice shall be included *
13.\" in all copies or substantial portions of the Software. *
14.\" *
15.\" THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS *
16.\" OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF *
17.\" MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. *
18.\" IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, *
19.\" DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR *
20.\" OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR *
21.\" THE USE OR OTHER DEALINGS IN THE SOFTWARE. *
22.\" *
23.\" Except as contained in this notice, the name(s) of the above copyright *
24.\" holders shall not be used in advertising or otherwise to promote the *
25.\" sale, use or other dealings in this Software without prior written *
26.\" authorization. *
27.\"***************************************************************************
28.\"
Steve Kondikae271bc2015-11-15 02:50:53 +010029.\" $Id: curs_get_wstr.3x,v 1.9 2012/11/03 23:03:59 tom Exp $
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053030.TH curs_get_wstr 3X ""
31.na
32.hy 0
33.SH NAME
34\fBget_wstr\fR,
35\fBgetn_wstr\fR,
36\fBwget_wstr\fR,
37\fBwgetn_wstr\fR,
38\fBmvget_wstr\fR,
39\fBmvgetn_wstr\fR,
40\fBmvwget_wstr\fR,
41\fBmvwgetn_wstr\fR \- get an array of wide characters from a curses terminal keyboard
42.ad
43.hy
44.SH SYNOPSIS
45.nf
46\fB#include <curses.h>\fR
47.sp
48\fBint get_wstr(wint_t *\fR\fIwstr\fR\fB);\fR
49.br
50\fBint getn_wstr(wint_t *\fR\fIwstr\fR\fB, int \fR\fIn\fR\fB);\fR
51.br
52\fBint wget_wstr(WINDOW *\fR\fIwin\fR\fB, wint_t *\fR\fIwstr\fR\fB);\fR
53.br
54\fBint wgetn_wstr(WINDOW *\fR\fIwin\fR\fB, wint_t *\fR\fIwstr\fR\fB, int \fR\fIn\fR\fB);\fR
55.br
56\fBint mvget_wstr(int \fR\fIy\fR\fB, int \fR\fIx\fR\fB, wint_t *\fR\fIwstr\fR\fB);\fR
57.br
58\fBint mvgetn_wstr(int \fR\fIy\fR\fB, int \fR\fIx\fR\fB, wint_t *\fR\fIwstr\fR\fB, int \fR\fIn\fR\fB);\fR
59.br
60\fBint mvwget_wstr(WINDOW *\fR\fIwin\fR\fB, int \fR\fIy\fR\fB, int \fR\fIx\fR\fB, wint_t *\fR\fIwstr\fR\fB);\fR
61.br
62\fBint mvwgetn_wstr(WINDOW *\fR\fIwin\fR\fB, int \fR\fIy\fR\fB, int \fR\fIx\fR\fB, wint_t *\fR\fIwstr\fR\fB, int \fR\fIn\fR\fB);\fR
63.fi
64.SH DESCRIPTION
65The effect of
66\fBget_wstr\fR
67is as though a series of calls
68to
69\fBget_wch\fR
70were made, until a newline, other end-of-line, or end-of-file condition is processed.
71An end-of-file condition is represented by \fBWEOF\fR, as defined in \fB<wchar.h>\fR.
72The newline and end-of-line conditions are represented by the \fB\\n\fR \fBwchar_t\fR value.
73In all instances, the end of the string is terminated by a null \fBwchar_t\fR.
74The routine places resulting values in the area pointed to by \fIwstr\fR.
75.PP
76The user's erase and kill characters are interpreted. If keypad
77mode is on for the window, \fBKEY_LEFT\fR and \fBKEY_BACKSPACE\fR
78are both considered equivalent to the user's kill character.
79.PP
80Characters input are echoed only if \fBecho\fR is currently on. In that case,
81backspace is echoed as deletion of the previous character (typically a left
82motion).
83.PP
84The effect of
85\fBwget_wstr\fR
86is as though a series of
87calls to
88\fBwget_wch\fR
89were made.
90.PP
91The effect of
92\fBmvget_wstr\fR
93is as though a call to
94\fBmove\fR
95and then a series of calls to
96\fBget_wch\fR
97were
98made.
99.PP
100The effect of
101\fBmvwget_wstr\fR
102is as though a call to
103\fBwmove\fR
104and then a series of calls to
105\fBwget_wch\fR
106were made.
107.PP
108The
109\fBgetn_wstr\fR,
110\fBmvgetn_wstr\fR,
111\fBmvwgetn_wstr\fR, and
112\fBwgetn_wstr\fR
113functions are identical
114to the
115\fBget_wstr\fR,
116\fBmvget_wstr\fR,
117\fBmvwget_wstr\fR, and
118\fBwget_wstr\fR
119functions, respectively,
120except that the
121\fB*n_*\fR
122versions read at most
123\fIn\fR
124characters, letting the application prevent overflow of the
125input buffer.
126.SH NOTES
127Using
128\fBget_wstr\fR,
129\fBmvget_wstr\fR,
130\fBmvwget_wstr\fR, or
131\fBwget_wstr\fR
132to read a line that
133overflows the array pointed to by
134\fBwstr\fR
135causes undefined
136results.
137The use of
138\fBgetn_wstr\fR,
139\fBmvgetn_wstr\fR,
140\fBmvwgetn_wstr\fR, or
141\fBwgetn_wstr\fR, respectively, is recommended.
142.PP
143These functions cannot return \fBKEY_\fR values because there
144is no way to distinguish a \fBKEY_\fR value from a valid \fBwchar_t\fR value.
145.PP
146All of these routines except \fBwgetn_wstr\fR may be macros.
Steve Kondikae271bc2015-11-15 02:50:53 +0100147.SH RETURN VALUE
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530148All of these functions return \fBOK\fR upon successful completion.
149Otherwise, they return \fBERR\fR.
150.PP
151Functions using a window parameter return an error if it is null.
152.RS
153.TP 5
154\fBwgetn_wstr\fP
155returns an error if the associated call to \fBwget_wch\fP failed.
156.RE
Steve Kondikae271bc2015-11-15 02:50:53 +0100157.PP
158Functions with a "mv" prefix first perform a cursor movement using
159\fBwmove\fP, and return an error if the position is outside the window,
160or if the window pointer is null.
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530161.SH PORTABILITY
162These functions are described in The Single Unix Specification, Version 2.
163No error conditions are defined.
164This implementation returns ERR if the window pointer is null,
165or if the lower-level \fBwget_wch\fR call returns an ERR.
166In the latter case,
167an ERR return without other data is treated as an end-of-file condition,
168and the returned array contains a \fBWEOF\fR followed by a null \fBwchar_t\fR.
169.PP
170X/Open curses documents these functions to pass an array of \fBwchar_t\fR,
171but all of the vendors implement this using \fBwint_t\fR.
172.SH SEE ALSO
173Functions:
174\fBcurses\fR(3X),
175\fBcurs_get_wch\fR(3X),
176\fBcurs_getstr\fR(3X).