blob: 4c5b2291187373df3bed69229e3a1883b3ba4303 [file] [log] [blame]
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301.\"***************************************************************************
Steve Kondikae271bc2015-11-15 02:50:53 +01002.\" Copyright (c) 2001-2012,2015 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_getcchar.3x,v 1.17 2015/07/21 09:30:38 tom Exp $
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053030.TH curs_getcchar 3X ""
Steve Kondikae271bc2015-11-15 02:50:53 +010031.de bP
32.IP \(bu 4
33..
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053034.SH NAME
35\fBgetcchar\fP,
36\fBsetcchar\fP \- Get a wide character string and rendition from a \fBcchar_t\fP or set a \fBcchar_t\fP from a wide-character string
37.SH SYNOPSIS
38\fB#include <curses.h>\fP
39.sp
40\fBint getcchar(\fP
41.br
42.B " const cchar_t *\fIwcval\fP,"
43.br
44.B " wchar_t *\fIwch\fP,"
45.br
46.B " attr_t *\fIattrs\fP,"
47.br
48.B " short *\fIcolor_pair\fP,"
49.br
50.B " void *\fIopts\fP );"
51.sp
52.B "int setcchar("
53.br
54.B " cchar_t *\fIwcval\fP,"
55.br
56.B " const wchar_t *\fIwch\fP,"
57.br
58.B " const attr_t \fIattrs\fP,"
59.br
60.B " short \fIcolor_pair\fP,"
61.br
62.B " void *\fIopts\fP );"
63.SH DESCRIPTION
Steve Kondikae271bc2015-11-15 02:50:53 +010064.SS getcchar
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053065.PP
66The \fBgetcchar\fP function gets a wide-character string
67and rendition from a \fBcchar_t\fP argument.
68When \fIwch\fP is not a null pointer,
69the \fBgetcchar\fP function does the following:
Steve Kondikae271bc2015-11-15 02:50:53 +010070.bP
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053071Extracts information from a \fBcchar_t\fP value \fIwcval\fP
Steve Kondikae271bc2015-11-15 02:50:53 +010072.bP
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053073Stores the character attributes in the location pointed to by \fIattrs\fP
Steve Kondikae271bc2015-11-15 02:50:53 +010074.bP
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053075Stores the color-pair in the location pointed to by \fIcolor_pair\fP
Steve Kondikae271bc2015-11-15 02:50:53 +010076.bP
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053077Stores the wide-character string,
78characters referenced by \fIwcval\fP, into the array pointed to by \fIwch\fP.
79.PP
80When
81\fIwch\fP
82is a null pointer, the
83\fBgetcchar\fP
84function does the following:
Steve Kondikae271bc2015-11-15 02:50:53 +010085.bP
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053086Obtains the number of wide characters pointed to by \fIwcval\fP
Steve Kondikae271bc2015-11-15 02:50:53 +010087.bP
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053088Does not change the data referenced by
89\fIattrs\fP
90or
91\fIcolor_pair\fP
Steve Kondikae271bc2015-11-15 02:50:53 +010092.SS setcchar
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053093.PP
94The \fBsetcchar\fP function initializes the location pointed to by \fIwcval\fP
95by using:
Steve Kondikae271bc2015-11-15 02:50:53 +010096.bP
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053097The character attributes in
98\fIattrs\fP
Steve Kondikae271bc2015-11-15 02:50:53 +010099.bP
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530100The color pair in
101\fIcolor_pair\fP
Steve Kondikae271bc2015-11-15 02:50:53 +0100102.bP
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530103The wide-character string pointed to by \fIwch\fP.
104The string must be L'\\0' terminated,
105contain at most one spacing character,
106which must be the first.
107.IP
Steve Kondikae271bc2015-11-15 02:50:53 +0100108Up to \fBCCHARW_MAX\fP\-1 nonspacing characters may follow.
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530109Additional nonspacing characters are ignored.
110.IP
111The string may contain a single control character instead.
112In that case, no nonspacing characters are allowed.
113.SH NOTES
114.PP
115The \fIopts\fP argument is reserved for future use.
116Currently, an application must provide a null pointer as \fIopts\fP.
117.PP
118The \fIwcval\fP argument may be a value generated by a call to
119\fBsetcchar\fP or by a function that has a \fBcchar_t\fP output argument.
120If \fIwcval\fP is constructed by any other means, the effect is unspecified.
Steve Kondikae271bc2015-11-15 02:50:53 +0100121.SH RETURN VALUE
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530122.PP
123When \fIwch\fP is a null pointer,
124\fBgetcchar\fP returns the number of wide characters referenced by
Steve Kondikae271bc2015-11-15 02:50:53 +0100125\fIwcval\fP,
126including one for a trailing null.
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530127.PP
128When \fIwch\fP is not a null pointer,
129\fBgetcchar\fP returns \fBOK\fP upon successful completion,
130and \fBERR\fP otherwise.
131.PP
132Upon successful completion, \fBsetcchar\fP returns \fBOK\fP.
133Otherwise, it returns \fBERR\fP.
134.SH SEE ALSO
135.PP
136Functions:
137\fBcurs_attr\fR(3X),
138\fBcurs_color\fR(3X),
139\fBcurses\fR(3X),
140\fBwcwidth\fR(3).