]> ncurses.scripts.mit.edu Git - ncurses.git/blob - ncurses/base/lib_slkset.c
ncurses 5.6 - patch 20070728
[ncurses.git] / ncurses / base / lib_slkset.c
1 /****************************************************************************
2  * Copyright (c) 1998-2004,2005 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  *  Author: Juergen Pfeifer                                                 *
31  *     and: Thomas E. Dickey                                                *
32  ****************************************************************************/
33
34 /*
35  *      lib_slkset.c
36  *      Set soft label text.
37  */
38 #include <curses.priv.h>
39 #include <ctype.h>
40
41 #if USE_WIDEC_SUPPORT
42 #if HAVE_WCTYPE_H
43 #include <wctype.h>
44 #endif
45 #endif
46
47 MODULE_ID("$Id: lib_slkset.c,v 1.16 2006/12/17 19:47:09 tom Exp $")
48
49 NCURSES_EXPORT(int)
50 slk_set(int i, const char *astr, int format)
51 {
52     SLK *slk = SP->_slk;
53     int offset;
54     int numchrs;
55     int numcols;
56     int limit;
57     const char *str = astr;
58     const char *p;
59
60     T((T_CALLED("slk_set(%d, \"%s\", %d)"), i, str, format));
61
62     if (slk == NULL || i < 1 || i > slk->labcnt || format < 0 || format > 2)
63         returnCode(ERR);
64     if (str == NULL)
65         str = "";
66     --i;                        /* Adjust numbering of labels */
67
68     limit = MAX_SKEY_LEN(SP->slk_format);
69     while (isspace(UChar(*str)))
70         str++;                  /* skip over leading spaces  */
71     p = str;
72
73 #if USE_WIDEC_SUPPORT
74     numcols = 0;
75     while (*p != 0) {
76         mbstate_t state;
77         wchar_t wc;
78         size_t need;
79
80         init_mb(state);
81         need = mbrtowc(0, p, strlen(p), &state);
82         if (need == (size_t) -1)
83             break;
84         mbrtowc(&wc, p, need, &state);
85         if (!iswprint((wint_t) wc))
86             break;
87         if (wcwidth(wc) + numcols > limit)
88             break;
89         numcols += wcwidth(wc);
90         p += need;
91     }
92     numchrs = (p - str);
93 #else
94     while (isprint(UChar(*p)))
95         p++;                    /* The first non-print stops */
96
97     numcols = (p - str);
98     if (numcols > limit)
99         numcols = limit;
100     numchrs = numcols;
101 #endif
102
103     FreeIfNeeded(slk->ent[i].ent_text);
104     if ((slk->ent[i].ent_text = strdup(str)) == 0)
105         returnCode(ERR);
106     slk->ent[i].ent_text[numchrs] = '\0';
107
108     if ((slk->ent[i].form_text = (char *) _nc_doalloc(slk->ent[i].form_text,
109                                                       (unsigned) (limit +
110                                                                   numchrs + 1))
111         ) == 0)
112         returnCode(ERR);
113
114     switch (format) {
115     default:
116     case 0:                     /* left-justified */
117         offset = 0;
118         break;
119     case 1:                     /* centered */
120         offset = (limit - numcols) / 2;
121         break;
122     case 2:                     /* right-justified */
123         offset = limit - numcols;
124         break;
125     }
126     if (offset <= 0)
127         offset = 0;
128     else
129         memset(slk->ent[i].form_text, ' ', (unsigned) offset);
130
131     memcpy(slk->ent[i].form_text + offset,
132            slk->ent[i].ent_text,
133            (unsigned) numchrs);
134
135     if (offset < limit) {
136         memset(slk->ent[i].form_text + offset + numchrs,
137                ' ',
138                (unsigned) (limit - (offset + numcols)));
139     }
140
141     slk->ent[i].form_text[numchrs - numcols + limit] = 0;
142     slk->ent[i].dirty = TRUE;
143     returnCode(OK);
144 }