]> ncurses.scripts.mit.edu Git - ncurses.git/blob - ncurses/widechar/lib_cchar.c
ncurses 5.4
[ncurses.git] / ncurses / widechar / lib_cchar.c
1 /****************************************************************************
2  * Copyright (c) 2001-2002,2003 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 /*
30 **      lib_cchar.c
31 **
32 **      The routines setcchar() and getcchar().
33 **
34 */
35
36 #include <curses.priv.h>
37
38 MODULE_ID("$Id: lib_cchar.c,v 1.8 2003/05/25 00:07:41 tom Exp $")
39
40 /* 
41  * The SuSv2 description leaves some room for interpretation.  We'll assume wch
42  * is L'\0' terminated, contains at most one character with strictly positive
43  * width, which must be the first, and contains no characters of negative
44  * width.
45  */
46 NCURSES_EXPORT(int)
47 setcchar(cchar_t * wcval, const wchar_t * wch, const attr_t attrs,
48          short color_pair, const void *opts)
49 {
50     int i;
51     int len;
52     int code = OK;
53
54     TR(TRACE_CCALLS, (T_CALLED("setcchar(%p,%s,%ld,%d,%p)"),
55                       wcval, _nc_viswbuf(wch), attrs, color_pair, opts));
56
57     if (opts != NULL || (len = wcslen(wch)) > CCHARW_MAX
58         || (len > 1 && wcwidth(wch[0]) < 0)) {
59         code = ERR;
60     } else {
61
62         /*
63          * If we have a following spacing-character, stop at that point.  We
64          * are only interested in adding non-spacing characters.
65          */
66         for (i = 1; i < len; ++i) {
67             if (wcwidth(wch[i]) != 0) {
68                 len = i;
69                 break;
70             }
71         }
72
73         memset(wcval, 0, sizeof(*wcval));
74
75         if (len != 0) {
76             SetAttr(*wcval, attrs | color_pair);
77             memcpy(&wcval->chars, wch, len * sizeof(wchar_t));
78             TR(TRACE_CCALLS, ("copy %d wchars, first is %s", len,
79                               _tracecchar_t(wcval)));
80         }
81     }
82
83     TR(TRACE_CCALLS, (T_RETURN("%d"), code));
84     return (code);
85 }
86
87 NCURSES_EXPORT(int)
88 getcchar(const cchar_t * wcval, wchar_t * wch, attr_t * attrs,
89          short *color_pair, void *opts)
90 {
91     wchar_t *wp;
92     int len;
93     int code = ERR;
94
95     TR(TRACE_CCALLS, (T_CALLED("getcchar(%p,%p,%p,%p,%p)"),
96                       wcval, wch, attrs, color_pair, opts));
97
98     if (opts == NULL) {
99         len = (wp = wmemchr(wcval->chars, L'\0', CCHARW_MAX))
100             ? wp - wcval->chars
101             : CCHARW_MAX;
102
103         if (wch == NULL) {
104             code = len;
105         } else if (attrs == 0 || color_pair == 0) {
106             code = ERR;
107         } else if (len >= 0) {
108             *attrs = AttrOf(*wcval);
109             *color_pair = AttrOf(*wcval) & A_COLOR;
110             wmemcpy(wch, wcval->chars, (unsigned) len);
111             wch[len] = L'\0';
112             code = OK;
113         }
114     }
115
116     TR(TRACE_CCALLS, (T_RETURN("%d"), code));
117     return (code);
118 }