]> ncurses.scripts.mit.edu Git - ncurses.git/blob - man/curs_getcchar.3x
ncurses 6.1 - patch 20190727
[ncurses.git] / man / curs_getcchar.3x
1 .\"***************************************************************************
2 .\" Copyright (c) 2001-2017,2019 Free Software Foundation, Inc.              *
3 .\"                                                                          *
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 .\"
29 .\" $Id: curs_getcchar.3x,v 1.21 2019/03/24 00:59:45 tom Exp $
30 .TH curs_getcchar 3X ""
31 .de bP
32 .ie n  .IP \(bu 4
33 .el    .IP \(bu 2
34 ..
35 .SH NAME
36 \fBgetcchar\fP,
37 \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
38 .SH SYNOPSIS
39 \fB#include <curses.h>\fP
40 .sp
41 \fBint getcchar(\fP
42 .br
43 .B "        const cchar_t *\fIwcval\fP,"
44 .br
45 .B "        wchar_t *\fIwch\fP,"
46 .br
47 .B "        attr_t *\fIattrs\fP,"
48 .br
49 .B "        short *\fIcolor_pair\fP,"
50 .br
51 .B "        void *\fIopts\fP );"
52 .sp
53 .B "int setcchar("
54 .br
55 .B "        cchar_t *\fIwcval\fP,"
56 .br
57 .B "        const wchar_t *\fIwch\fP,"
58 .br
59 .B "        const attr_t \fIattrs\fP,"
60 .br
61 .B "        short \fIcolor_pair\fP,"
62 .br
63 .B "        const void *\fIopts\fP );"
64 .SH DESCRIPTION
65 .SS getcchar
66 .PP
67 The \fBgetcchar\fP function gets a wide-character string
68 and rendition from a \fBcchar_t\fP argument.
69 When \fIwch\fP is not a null pointer,
70 the \fBgetcchar\fP function does the following:
71 .bP
72 Extracts information from a \fBcchar_t\fP value \fIwcval\fP
73 .bP
74 Stores the character attributes in the location pointed to by \fIattrs\fP
75 .bP
76 Stores the color-pair in the location pointed to by \fIcolor_pair\fP
77 .bP
78 Stores the wide-character string,
79 characters referenced by \fIwcval\fP, into the array pointed to by \fIwch\fP.
80 .PP
81 When
82 \fIwch\fP
83 is a null pointer, the
84 \fBgetcchar\fP
85 function does the following:
86 .bP
87 Obtains the number of wide characters pointed to by \fIwcval\fP
88 .bP
89 Does not change the data referenced by
90 \fIattrs\fP
91 or
92 \fIcolor_pair\fP
93 .SS setcchar
94 .PP
95 The \fBsetcchar\fP function initializes the location pointed to by \fIwcval\fP
96 by using:
97 .bP
98 The character attributes in
99 \fIattrs\fP
100 .bP
101 The color pair in
102 \fIcolor_pair\fP
103 .bP
104 The wide-character string pointed to by \fIwch\fP.
105 The string must be L'\\0' terminated,
106 contain at most one spacing character,
107 which must be the first.
108 .IP
109 Up to \fBCCHARW_MAX\fP\-1 nonspacing characters may follow.
110 Additional nonspacing characters are ignored.
111 .IP
112 The string may contain a single control character instead.
113 In that case, no nonspacing characters are allowed.
114 .SH EXTENSIONS
115 .PP
116 X/Open Curses documents the \fIopts\fP argument as reserved for future use,
117 saying that it must be null.
118 This implementation 
119 uses that parameter in ABI 6 for the functions which have a color-pair
120 parameter to support extended color pairs:
121 .bP
122 For  functions  which modify the color, e.g., \fBsetcchar\fP,
123 if \fIopts\fP is set it is treated as a pointer to \fBint\fP,
124 and used to  set  the  color pair instead of the \fBshort\fP pair parameter.
125 .bP
126 For functions which retrieve the color, e.g., \fBgetcchar\fP,
127 if \fIopts\fP is set it is treated as a pointer to \fBint\fP,
128 and  used  to  retrieve  the color pair as an \fBint\fP value,
129 in addition retrieving it via the standard pointer to \fBshort\fP parameter.
130 .SH NOTES
131 .PP
132 The \fIwcval\fP argument may be a value generated by a call to
133 \fBsetcchar\fP or by a function that has a \fBcchar_t\fP output argument.
134 If \fIwcval\fP is constructed by any other means, the effect is unspecified.
135 .SH RETURN VALUE
136 .PP
137 When \fIwch\fP is a null pointer,
138 \fBgetcchar\fP returns the number of wide characters referenced by
139 \fIwcval\fP,
140 including one for a trailing null.
141 .PP
142 When \fIwch\fP is not a null pointer,
143 \fBgetcchar\fP returns \fBOK\fP upon successful completion,
144 and \fBERR\fP otherwise.
145 .PP
146 Upon successful completion, \fBsetcchar\fP returns \fBOK\fP.
147 Otherwise, it returns \fBERR\fP.
148 .SH SEE ALSO
149 .PP
150 Functions:
151 \fBcurs_attr\fR(3X),
152 \fBcurs_color\fR(3X),
153 \fBcurses\fR(3X),
154 \fBwcwidth\fR(3).