blob: 28b71caf5b07647459dc478ce490dac097ef7a58 [file] [log] [blame]
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301/****************************************************************************
micky3879b9f5e72025-07-08 18:04:53 -04002 * Copyright 2020-2021 Thomas E. Dickey *
3 * Copyright 1998-2010,2012 Free Software Foundation, Inc. *
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304 * *
5 * Permission is hereby granted, free of charge, to any person obtaining a *
6 * copy of this software and associated documentation files (the *
7 * "Software"), to deal in the Software without restriction, including *
8 * without limitation the rights to use, copy, modify, merge, publish, *
9 * distribute, distribute with modifications, sublicense, and/or sell *
10 * copies of the Software, and to permit persons to whom the Software is *
11 * furnished to do so, subject to the following conditions: *
12 * *
13 * The above copyright notice and this permission notice shall be included *
14 * in all copies or substantial portions of the Software. *
15 * *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS *
17 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF *
18 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. *
19 * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, *
20 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR *
21 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR *
22 * THE USE OR OTHER DEALINGS IN THE SOFTWARE. *
23 * *
24 * Except as contained in this notice, the name(s) of the above copyright *
25 * holders shall not be used in advertising or otherwise to promote the *
26 * sale, use or other dealings in this Software without prior written *
27 * authorization. *
28 ****************************************************************************/
29
30/****************************************************************************
31 * Author: Juergen Pfeifer, 1995,1997 *
32 ****************************************************************************/
33
34/***************************************************************************
35* Module m_item_new *
36* Create and destroy menu items *
37* Set and get marker string for menu *
38***************************************************************************/
39
40#include "menu.priv.h"
41
42#if USE_WIDEC_SUPPORT
43#if HAVE_WCTYPE_H
44#include <wctype.h>
45#endif
46#endif
47
micky3879b9f5e72025-07-08 18:04:53 -040048MODULE_ID("$Id: m_item_new.c,v 1.38 2021/06/17 21:26:02 tom Exp $")
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053049
50/*---------------------------------------------------------------------------
micky3879b9f5e72025-07-08 18:04:53 -040051| Facility : libnmenu
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053052| Function : bool Is_Printable_String(const char *s)
micky3879b9f5e72025-07-08 18:04:53 -040053|
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053054| Description : Checks whether or not the string contains only printable
55| characters.
56|
57| Return Values : TRUE - if string is printable
58| FALSE - if string contains non-printable characters
59+--------------------------------------------------------------------------*/
60static bool
61Is_Printable_String(const char *s)
62{
63 int result = TRUE;
64
65#if USE_WIDEC_SUPPORT
Steve Kondikae271bc2015-11-15 02:50:53 +010066 int count = (int)mbstowcs(0, s, 0);
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053067 wchar_t *temp = 0;
68
69 assert(s);
70
71 if (count > 0
72 && (temp = typeCalloc(wchar_t, (2 + (unsigned)count))) != 0)
73 {
74 int n;
75
76 mbstowcs(temp, s, (unsigned)count);
77 for (n = 0; n < count; ++n)
micky3879b9f5e72025-07-08 18:04:53 -040078 if (!iswprint((wint_t)temp[n]))
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053079 {
80 result = FALSE;
81 break;
82 }
83 free(temp);
84 }
85#else
86 assert(s);
87 while (*s)
88 {
89 if (!isprint(UChar(*s)))
90 {
91 result = FALSE;
92 break;
93 }
94 s++;
95 }
96#endif
97 return result;
98}
99
100/*---------------------------------------------------------------------------
micky3879b9f5e72025-07-08 18:04:53 -0400101| Facility : libnmenu
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530102| Function : ITEM *new_item(char *name, char *description)
micky3879b9f5e72025-07-08 18:04:53 -0400103|
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530104| Description : Create a new item with name and description. Return
105| a pointer to this new item.
106| N.B.: an item must(!) have a name.
107|
108| Return Values : The item pointer or NULL if creation failed.
109+--------------------------------------------------------------------------*/
micky3879b9f5e72025-07-08 18:04:53 -0400110MENU_EXPORT(ITEM *)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530111new_item(const char *name, const char *description)
112{
113 ITEM *item;
114
115 T((T_CALLED("new_item(\"%s\", \"%s\")"),
116 name ? name : "",
117 description ? description : ""));
118
119 if (!name || (*name == '\0') || !Is_Printable_String(name))
120 {
micky3879b9f5e72025-07-08 18:04:53 -0400121 item = (ITEM *)0;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530122 SET_ERROR(E_BAD_ARGUMENT);
123 }
124 else
125 {
Steve Kondikae271bc2015-11-15 02:50:53 +0100126 item = typeCalloc(ITEM, 1);
micky3879b9f5e72025-07-08 18:04:53 -0400127
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530128 if (item)
129 {
micky3879b9f5e72025-07-08 18:04:53 -0400130 T((T_CREATE("item %p"), (void *)item));
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530131 *item = _nc_Default_Item; /* hope we have struct assignment */
132
Steve Kondikae271bc2015-11-15 02:50:53 +0100133 item->name.length = (unsigned short)strlen(name);
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530134 item->name.str = name;
135
136 if (description && (*description != '\0') &&
137 Is_Printable_String(description))
138 {
Steve Kondikae271bc2015-11-15 02:50:53 +0100139 item->description.length = (unsigned short)strlen(description);
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530140 item->description.str = description;
141 }
142 else
143 {
144 item->description.length = 0;
145 item->description.str = (char *)0;
146 }
147 }
148 else
149 SET_ERROR(E_SYSTEM_ERROR);
150 }
151 returnItem(item);
152}
153
154/*---------------------------------------------------------------------------
micky3879b9f5e72025-07-08 18:04:53 -0400155| Facility : libnmenu
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530156| Function : int free_item(ITEM *item)
micky3879b9f5e72025-07-08 18:04:53 -0400157|
158| Description : Free the allocated storage for this item.
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530159| N.B.: a connected item can't be freed.
160|
161| Return Values : E_OK - success
162| E_BAD_ARGUMENT - invalid value has been passed
micky3879b9f5e72025-07-08 18:04:53 -0400163| E_CONNECTED - item is still connected to a menu
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530164+--------------------------------------------------------------------------*/
micky3879b9f5e72025-07-08 18:04:53 -0400165MENU_EXPORT(int)
166free_item(ITEM *item)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530167{
Steve Kondikae271bc2015-11-15 02:50:53 +0100168 T((T_CALLED("free_item(%p)"), (void *)item));
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530169
170 if (!item)
171 RETURN(E_BAD_ARGUMENT);
172
173 if (item->imenu)
174 RETURN(E_CONNECTED);
175
176 free(item);
177
178 RETURN(E_OK);
179}
180
181/*---------------------------------------------------------------------------
micky3879b9f5e72025-07-08 18:04:53 -0400182| Facility : libnmenu
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530183| Function : int set_menu_mark( MENU *menu, const char *mark )
micky3879b9f5e72025-07-08 18:04:53 -0400184|
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530185| Description : Set the mark string used to indicate the current
186| item (single-valued menu) or the selected items
187| (multi-valued menu).
micky3879b9f5e72025-07-08 18:04:53 -0400188| The mark argument may be NULL, in which case no
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530189| marker is used.
micky3879b9f5e72025-07-08 18:04:53 -0400190| This might be a little bit tricky, because this may
191| affect the geometry of the menu, which we don't allow
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530192| if it is already posted.
193|
194| Return Values : E_OK - success
195| E_BAD_ARGUMENT - an invalid value has been passed
196| E_SYSTEM_ERROR - no memory to store mark
197+--------------------------------------------------------------------------*/
micky3879b9f5e72025-07-08 18:04:53 -0400198MENU_EXPORT(int)
199set_menu_mark(MENU *menu, const char *mark)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530200{
Steve Kondikae271bc2015-11-15 02:50:53 +0100201 short l;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530202
Steve Kondikae271bc2015-11-15 02:50:53 +0100203 T((T_CALLED("set_menu_mark(%p,%s)"), (void *)menu, _nc_visbuf(mark)));
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530204
205 if (mark && (*mark != '\0') && Is_Printable_String(mark))
Steve Kondikae271bc2015-11-15 02:50:53 +0100206 l = (short)strlen(mark);
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530207 else
208 l = 0;
209
210 if (menu)
211 {
212 char *old_mark = menu->mark;
213 unsigned short old_status = menu->status;
214
215 if (menu->status & _POSTED)
216 {
217 /* If the menu is already posted, the geometry is fixed. Then
218 we can only accept a mark with exactly the same length */
Steve Kondikae271bc2015-11-15 02:50:53 +0100219 if (menu->marklen != l)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530220 RETURN(E_BAD_ARGUMENT);
221 }
222 menu->marklen = l;
223 if (l)
224 {
Steve Kondikae271bc2015-11-15 02:50:53 +0100225 menu->mark = strdup(mark);
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530226 if (menu->mark)
227 {
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530228 if (menu != &_nc_Default_Menu)
Steve Kondikae271bc2015-11-15 02:50:53 +0100229 SetStatus(menu, _MARK_ALLOCATED);
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530230 }
231 else
232 {
233 menu->mark = old_mark;
Steve Kondikae271bc2015-11-15 02:50:53 +0100234 menu->marklen = (short)((old_mark != 0) ? strlen(old_mark) : 0);
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530235 RETURN(E_SYSTEM_ERROR);
236 }
237 }
238 else
239 menu->mark = (char *)0;
240
241 if ((old_status & _MARK_ALLOCATED) && old_mark)
242 free(old_mark);
243
244 if (menu->status & _POSTED)
245 {
246 _nc_Draw_Menu(menu);
247 _nc_Show_Menu(menu);
248 }
249 else
250 {
251 /* Recalculate the geometry */
252 _nc_Calculate_Item_Length_and_Width(menu);
253 }
254 }
255 else
256 {
257 returnCode(set_menu_mark(&_nc_Default_Menu, mark));
258 }
259 RETURN(E_OK);
260}
261
262/*---------------------------------------------------------------------------
micky3879b9f5e72025-07-08 18:04:53 -0400263| Facility : libnmenu
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530264| Function : char *menu_mark(const MENU *menu)
micky3879b9f5e72025-07-08 18:04:53 -0400265|
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530266| Description : Return a pointer to the marker string
267|
268| Return Values : The marker string pointer or NULL if no marker defined
269+--------------------------------------------------------------------------*/
micky3879b9f5e72025-07-08 18:04:53 -0400270MENU_EXPORT(const char *)
271menu_mark(const MENU *menu)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530272{
Steve Kondikae271bc2015-11-15 02:50:53 +0100273 T((T_CALLED("menu_mark(%p)"), (const void *)menu));
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530274 returnPtr(Normalize_Menu(menu)->mark);
275}
276
277/* m_item_new.c */