blob: 4bc8ef8fc8c1061a455b19cef682ea3b26ef4bb8 [file] [log] [blame]
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301/****************************************************************************
micky3879b9f5e72025-07-08 18:04:53 -04002 * Copyright 2020-2021,2023 Thomas E. Dickey *
3 * Copyright 1998-2012,2014 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_global *
36* Globally used internal routines and the default menu and item structures *
37***************************************************************************/
38
39#include "menu.priv.h"
40
micky3879b9f5e72025-07-08 18:04:53 -040041MODULE_ID("$Id: m_global.c,v 1.34 2023/09/16 16:39:26 tom Exp $")
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053042
43static char mark[] = "-";
44/* *INDENT-OFF* */
micky3879b9f5e72025-07-08 18:04:53 -040045MENU_EXPORT_VAR(MENU) _nc_Default_Menu = {
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053046 16, /* Nr. of chars high */
47 1, /* Nr. of chars wide */
48 16, /* Nr. of items high */
49 1, /* Nr. of items wide */
50 16, /* Nr. of formatted items high */
51 1, /* Nr. of formatted items wide */
52 16, /* Nr. of items high (actual) */
53 0, /* length of widest name */
54 0, /* length of widest description */
55 1, /* length of mark */
56 1, /* length of one item */
micky3879b9f5e72025-07-08 18:04:53 -040057 1, /* Spacing for descriptor */
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053058 1, /* Spacing for columns */
59 1, /* Spacing for rows */
60 (char *)0, /* buffer used to store match chars */
61 0, /* Index into pattern buffer */
62 (WINDOW *)0, /* Window containing entire menu */
63 (WINDOW *)0, /* Portion of menu displayed */
64 (WINDOW *)0, /* User's window */
65 (WINDOW *)0, /* User's subwindow */
66 (ITEM **)0, /* List of items */
67 0, /* Total Nr. of items in menu */
68 (ITEM *)0, /* Current item */
69 0, /* Top row of menu */
70 (chtype)A_REVERSE, /* Attribute for selection */
71 (chtype)A_NORMAL, /* Attribute for nonselection */
micky3879b9f5e72025-07-08 18:04:53 -040072 (chtype)A_UNDERLINE, /* Attribute for inactive */
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053073 ' ', /* Pad character */
74 (Menu_Hook)0, /* Menu init */
75 (Menu_Hook)0, /* Menu term */
76 (Menu_Hook)0, /* Item init */
77 (Menu_Hook)0, /* Item term */
78 (void *)0, /* userptr */
79 mark, /* mark */
80 ALL_MENU_OPTS, /* options */
micky3879b9f5e72025-07-08 18:04:53 -040081 0 /* status */
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053082};
83
micky3879b9f5e72025-07-08 18:04:53 -040084MENU_EXPORT_VAR(ITEM) _nc_Default_Item = {
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053085 { (char *)0, 0 }, /* name */
86 { (char *)0, 0 }, /* description */
87 (MENU *)0, /* Pointer to parent menu */
88 (char *)0, /* Userpointer */
89 ALL_ITEM_OPTS, /* options */
90 0, /* Item Nr. */
91 0, /* y */
92 0, /* x */
93 FALSE, /* value */
94 (ITEM *)0, /* left */
95 (ITEM *)0, /* right */
96 (ITEM *)0, /* up */
97 (ITEM *)0 /* down */
98 };
99/* *INDENT-ON* */
100
101/*---------------------------------------------------------------------------
micky3879b9f5e72025-07-08 18:04:53 -0400102| Facility : libnmenu
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530103| Function : static void ComputeMaximum_NameDesc_Lenths(MENU *menu)
micky3879b9f5e72025-07-08 18:04:53 -0400104|
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530105| Description : Calculates the maximum name and description lengths
106| of the items connected to the menu
107|
108| Return Values : -
109+--------------------------------------------------------------------------*/
110NCURSES_INLINE static void
micky3879b9f5e72025-07-08 18:04:53 -0400111ComputeMaximum_NameDesc_Lengths(MENU *menu)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530112{
113 unsigned MaximumNameLength = 0;
114 unsigned MaximumDescriptionLength = 0;
115 ITEM **items;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530116
117 assert(menu && menu->items);
118 for (items = menu->items; *items; items++)
119 {
micky3879b9f5e72025-07-08 18:04:53 -0400120 unsigned check = (unsigned)_nc_Calculate_Text_Width(&((*items)->name));
121
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530122 if (check > MaximumNameLength)
123 MaximumNameLength = check;
124
Steve Kondikae271bc2015-11-15 02:50:53 +0100125 check = (unsigned)_nc_Calculate_Text_Width(&((*items)->description));
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530126 if (check > MaximumDescriptionLength)
127 MaximumDescriptionLength = check;
128 }
129
Steve Kondikae271bc2015-11-15 02:50:53 +0100130 menu->namelen = (short)MaximumNameLength;
131 menu->desclen = (short)MaximumDescriptionLength;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530132 T(("ComputeMaximum_NameDesc_Lengths %d,%d", menu->namelen, menu->desclen));
133}
134
135/*---------------------------------------------------------------------------
micky3879b9f5e72025-07-08 18:04:53 -0400136| Facility : libnmenu
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530137| Function : static void ResetConnectionInfo(MENU *, ITEM **)
micky3879b9f5e72025-07-08 18:04:53 -0400138|
139| Description : Reset all information in the menu and the items in
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530140| the item array that indicates a connection
141|
142| Return Values : -
143+--------------------------------------------------------------------------*/
144NCURSES_INLINE static void
micky3879b9f5e72025-07-08 18:04:53 -0400145ResetConnectionInfo(MENU *menu, ITEM **items)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530146{
147 ITEM **item;
148
149 assert(menu && items);
150 for (item = items; *item; item++)
151 {
152 (*item)->index = 0;
micky3879b9f5e72025-07-08 18:04:53 -0400153 (*item)->imenu = (MENU *)0;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530154 }
155 if (menu->pattern)
156 free(menu->pattern);
157 menu->pattern = (char *)0;
158 menu->pindex = 0;
micky3879b9f5e72025-07-08 18:04:53 -0400159 menu->items = (ITEM **)0;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530160 menu->nitems = 0;
161}
162
163/*---------------------------------------------------------------------------
micky3879b9f5e72025-07-08 18:04:53 -0400164| Facility : libnmenu
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530165| Function : bool _nc_Connect_Items(MENU *menu, ITEM **items)
166|
167| Description : Connect the items in the item array to the menu.
168| Decorate all the items with a number and a backward
169| pointer to the menu.
170|
171| Return Values : TRUE - successful connection
172| FALSE - connection failed
173+--------------------------------------------------------------------------*/
micky3879b9f5e72025-07-08 18:04:53 -0400174MENU_EXPORT(bool)
175_nc_Connect_Items(MENU *menu, ITEM **items)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530176{
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530177 unsigned int ItemCount = 0;
178
179 if (menu && items)
180 {
micky3879b9f5e72025-07-08 18:04:53 -0400181 ITEM **item;
182
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530183 for (item = items; *item; item++)
184 {
185 if ((*item)->imenu)
186 {
187 /* if a item is already connected, reject connection */
188 break;
189 }
190 }
191 if (!(*item))
192 /* we reached the end, so there was no connected item */
193 {
194 for (item = items; *item; item++)
195 {
196 if (menu->opt & O_ONEVALUE)
197 {
198 (*item)->value = FALSE;
199 }
Steve Kondikae271bc2015-11-15 02:50:53 +0100200 (*item)->index = (short)ItemCount++;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530201 (*item)->imenu = menu;
202 }
203 }
204 }
205 else
206 return (FALSE);
207
208 if (ItemCount != 0)
209 {
210 menu->items = items;
Steve Kondikae271bc2015-11-15 02:50:53 +0100211 menu->nitems = (short)ItemCount;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530212 ComputeMaximum_NameDesc_Lengths(menu);
213 if ((menu->pattern = typeMalloc(char, (unsigned)(1 + menu->namelen))))
214 {
215 Reset_Pattern(menu);
216 set_menu_format(menu, menu->frows, menu->fcols);
217 menu->curitem = *items;
218 menu->toprow = 0;
219 return (TRUE);
220 }
221 }
222
micky3879b9f5e72025-07-08 18:04:53 -0400223 /* If we fall through to this point, we have to reset all items connection
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530224 and inform about a reject connection */
225 ResetConnectionInfo(menu, items);
226 return (FALSE);
227}
228
229/*---------------------------------------------------------------------------
micky3879b9f5e72025-07-08 18:04:53 -0400230| Facility : libnmenu
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530231| Function : void _nc_Disconnect_Items(MENU *menu)
micky3879b9f5e72025-07-08 18:04:53 -0400232|
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530233| Description : Disconnect the menus item array from the menu
234|
235| Return Values : -
236+--------------------------------------------------------------------------*/
micky3879b9f5e72025-07-08 18:04:53 -0400237MENU_EXPORT(void)
238_nc_Disconnect_Items(MENU *menu)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530239{
240 if (menu && menu->items)
241 ResetConnectionInfo(menu, menu->items);
242}
243
244/*---------------------------------------------------------------------------
micky3879b9f5e72025-07-08 18:04:53 -0400245| Facility : libnmenu
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530246| Function : int _nc_Calculate_Text_Width(const TEXT * item)
micky3879b9f5e72025-07-08 18:04:53 -0400247|
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530248| Description : Calculate the number of columns for a TEXT.
249|
250| Return Values : the width
251+--------------------------------------------------------------------------*/
micky3879b9f5e72025-07-08 18:04:53 -0400252MENU_EXPORT(int)
253_nc_Calculate_Text_Width(const TEXT *item /*FIXME: limit length */ )
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530254{
255#if USE_WIDEC_SUPPORT
256 int result = item->length;
257
Steve Kondikae271bc2015-11-15 02:50:53 +0100258 T((T_CALLED("_nc_menu_text_width(%p)"), (const void *)item));
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530259 if (result != 0 && item->str != 0)
260 {
Steve Kondikae271bc2015-11-15 02:50:53 +0100261 int count = (int)mbstowcs(0, item->str, 0);
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530262 wchar_t *temp = 0;
263
264 if (count > 0
265 && (temp = typeMalloc(wchar_t, 2 + count)) != 0)
266 {
267 int n;
268
269 result = 0;
270 mbstowcs(temp, item->str, (unsigned)count);
271 for (n = 0; n < count; ++n)
272 {
273 int test = wcwidth(temp[n]);
274
275 if (test <= 0)
276 test = 1;
277 result += test;
278 }
279 free(temp);
280 }
281 }
282 returnCode(result);
283#else
284 return item->length;
285#endif
286}
287
288/*
289 * Calculate the actual width of a menu entry for wide-characters.
290 */
291#if USE_WIDEC_SUPPORT
292static int
micky3879b9f5e72025-07-08 18:04:53 -0400293calculate_actual_width(MENU *menu, bool name)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530294{
295 int width = 0;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530296
297 assert(menu && menu->items);
298
299 if (menu->items != 0)
300 {
micky3879b9f5e72025-07-08 18:04:53 -0400301 ITEM **items;
302
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530303 for (items = menu->items; *items; items++)
304 {
micky3879b9f5e72025-07-08 18:04:53 -0400305 int check = (name
306 ? _nc_Calculate_Text_Width(&((*items)->name))
307 : _nc_Calculate_Text_Width(&((*items)->description)));
308
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530309 if (check > width)
310 width = check;
311 }
312 }
313 else
314 {
315 width = (name ? menu->namelen : menu->desclen);
316 }
317
318 T(("calculate_actual_width %s = %d/%d",
319 name ? "name" : "desc",
320 width,
321 name ? menu->namelen : menu->desclen));
322 return width;
323}
324#else
325#define calculate_actual_width(menu, name) (name ? menu->namelen : menu->desclen)
326#endif
327
328/*---------------------------------------------------------------------------
micky3879b9f5e72025-07-08 18:04:53 -0400329| Facility : libnmenu
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530330| Function : void _nc_Calculate_Item_Length_and_Width(MENU *menu)
micky3879b9f5e72025-07-08 18:04:53 -0400331|
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530332| Description : Calculate the length of an item and the width of the
333| whole menu.
334|
335| Return Values : -
336+--------------------------------------------------------------------------*/
micky3879b9f5e72025-07-08 18:04:53 -0400337MENU_EXPORT(void)
338_nc_Calculate_Item_Length_and_Width(MENU *menu)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530339{
340 int l;
341
342 assert(menu);
343
Steve Kondikae271bc2015-11-15 02:50:53 +0100344 menu->height = (short)(1 + menu->spc_rows * (menu->arows - 1));
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530345
346 l = calculate_actual_width(menu, TRUE);
347 l += menu->marklen;
348
349 if ((menu->opt & O_SHOWDESC) && (menu->desclen > 0))
350 {
351 l += calculate_actual_width(menu, FALSE);
352 l += menu->spc_desc;
353 }
354
Steve Kondikae271bc2015-11-15 02:50:53 +0100355 menu->itemlen = (short)l;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530356 l *= menu->cols;
357 l += (menu->cols - 1) * menu->spc_cols; /* for the padding between the columns */
Steve Kondikae271bc2015-11-15 02:50:53 +0100358 menu->width = (short)l;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530359
360 T(("_nc_CalculateItem_Length_and_Width columns %d, item %d, width %d",
361 menu->cols,
362 menu->itemlen,
363 menu->width));
364}
365
366/*---------------------------------------------------------------------------
micky3879b9f5e72025-07-08 18:04:53 -0400367| Facility : libnmenu
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530368| Function : void _nc_Link_Item(MENU *menu)
micky3879b9f5e72025-07-08 18:04:53 -0400369|
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530370| Description : Statically calculate for every item its four neighbors.
371| This depends on the orientation of the menu. This
372| static approach simplifies navigation in the menu a lot.
373|
374| Return Values : -
375+--------------------------------------------------------------------------*/
micky3879b9f5e72025-07-08 18:04:53 -0400376MENU_EXPORT(void)
377_nc_Link_Items(MENU *menu)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530378{
379 if (menu && menu->items && *(menu->items))
380 {
micky3879b9f5e72025-07-08 18:04:53 -0400381 int i;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530382 ITEM *item;
383 int Number_Of_Items = menu->nitems;
384 int col = 0, row = 0;
385 int Last_in_Row;
386 int Last_in_Column;
387 bool cycle = (menu->opt & O_NONCYCLIC) ? FALSE : TRUE;
388
Steve Kondikae271bc2015-11-15 02:50:53 +0100389 ClrStatus(menu, _LINK_NEEDED);
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530390
391 if (menu->opt & O_ROWMAJOR)
392 {
393 int Number_Of_Columns = menu->cols;
394
395 for (i = 0; i < Number_Of_Items; i++)
396 {
397 item = menu->items[i];
398
399 Last_in_Row = row * Number_Of_Columns + (Number_Of_Columns - 1);
400
401 item->left = (col) ?
402 /* if we are not in the leftmost column, we can use the
403 predecessor in the items array */
404 menu->items[i - 1] :
405 (cycle ? menu->items[(Last_in_Row >= Number_Of_Items) ?
406 Number_Of_Items - 1 :
407 Last_in_Row] :
micky3879b9f5e72025-07-08 18:04:53 -0400408 (ITEM *)0);
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530409
410 item->right = ((col < (Number_Of_Columns - 1)) &&
411 ((i + 1) < Number_Of_Items)
412 )?
413 menu->items[i + 1] :
414 (cycle ? menu->items[row * Number_Of_Columns] :
micky3879b9f5e72025-07-08 18:04:53 -0400415 (ITEM *)0
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530416 );
417
418 Last_in_Column = (menu->rows - 1) * Number_Of_Columns + col;
419
420 item->up = (row) ? menu->items[i - Number_Of_Columns] :
421 (cycle ? menu->items[(Last_in_Column >= Number_Of_Items) ?
422 Number_Of_Items - 1 :
423 Last_in_Column] :
micky3879b9f5e72025-07-08 18:04:53 -0400424 (ITEM *)0);
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530425
426 item->down = ((i + Number_Of_Columns) < Number_Of_Items)
427 ?
428 menu->items[i + Number_Of_Columns] :
429 (cycle ? menu->items[(row + 1) < menu->rows ?
430 Number_Of_Items - 1 : col] :
micky3879b9f5e72025-07-08 18:04:53 -0400431 (ITEM *)0);
Steve Kondikae271bc2015-11-15 02:50:53 +0100432 item->x = (short)col;
433 item->y = (short)row;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530434 if (++col == Number_Of_Columns)
435 {
436 row++;
437 col = 0;
438 }
439 }
440 }
441 else
442 {
443 int Number_Of_Rows = menu->rows;
micky3879b9f5e72025-07-08 18:04:53 -0400444 int j;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530445
446 for (j = 0; j < Number_Of_Items; j++)
447 {
448 item = menu->items[i = (col * Number_Of_Rows + row)];
449
450 Last_in_Column = (menu->cols - 1) * Number_Of_Rows + row;
451
452 item->left = (col) ?
453 menu->items[i - Number_Of_Rows] :
454 (cycle ? (Last_in_Column >= Number_Of_Items) ?
455 menu->items[Last_in_Column - Number_Of_Rows] :
456 menu->items[Last_in_Column] :
micky3879b9f5e72025-07-08 18:04:53 -0400457 (ITEM *)0);
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530458
459 item->right = ((i + Number_Of_Rows) < Number_Of_Items)
460 ?
461 menu->items[i + Number_Of_Rows] :
micky3879b9f5e72025-07-08 18:04:53 -0400462 (cycle ? menu->items[row] : (ITEM *)0);
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530463
464 Last_in_Row = col * Number_Of_Rows + (Number_Of_Rows - 1);
465
466 item->up = (row) ?
467 menu->items[i - 1] :
468 (cycle ?
469 menu->items[(Last_in_Row >= Number_Of_Items) ?
470 Number_Of_Items - 1 :
471 Last_in_Row] :
micky3879b9f5e72025-07-08 18:04:53 -0400472 (ITEM *)0);
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530473
474 item->down = (row < (Number_Of_Rows - 1))
475 ?
476 (menu->items[((i + 1) < Number_Of_Items) ?
477 i + 1 :
478 (col - 1) * Number_Of_Rows + row + 1]) :
479 (cycle ?
480 menu->items[col * Number_Of_Rows] :
micky3879b9f5e72025-07-08 18:04:53 -0400481 (ITEM *)0
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530482 );
483
Steve Kondikae271bc2015-11-15 02:50:53 +0100484 item->x = (short)col;
485 item->y = (short)row;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530486 if ((++row) == Number_Of_Rows)
487 {
488 col++;
489 row = 0;
490 }
491 }
492 }
493 }
494}
495
496/*---------------------------------------------------------------------------
micky3879b9f5e72025-07-08 18:04:53 -0400497| Facility : libnmenu
Steve Kondikae271bc2015-11-15 02:50:53 +0100498| Function : void _nc_Show_Menu(const MENU* menu)
micky3879b9f5e72025-07-08 18:04:53 -0400499|
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530500| Description : Update the window that is associated with the menu
501|
502| Return Values : -
503+--------------------------------------------------------------------------*/
micky3879b9f5e72025-07-08 18:04:53 -0400504MENU_EXPORT(void)
505_nc_Show_Menu(const MENU *menu)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530506{
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530507 assert(menu);
508 if ((menu->status & _POSTED) && !(menu->status & _IN_DRIVER))
509 {
micky3879b9f5e72025-07-08 18:04:53 -0400510 WINDOW *win;
511 int maxy, maxx;
512
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530513 /* adjust the internal subwindow to start on the current top */
514 assert(menu->sub);
515 mvderwin(menu->sub, menu->spc_rows * menu->toprow, 0);
516 win = Get_Menu_Window(menu);
517
518 maxy = getmaxy(win);
519 maxx = getmaxx(win);
520
521 if (menu->height < maxy)
522 maxy = menu->height;
523 if (menu->width < maxx)
524 maxx = menu->width;
525
526 copywin(menu->sub, win, 0, 0, 0, 0, maxy - 1, maxx - 1, 0);
527 pos_menu_cursor(menu);
528 }
529}
530
531/*---------------------------------------------------------------------------
micky3879b9f5e72025-07-08 18:04:53 -0400532| Facility : libnmenu
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530533| Function : void _nc_New_TopRow_and_CurrentItem(
micky3879b9f5e72025-07-08 18:04:53 -0400534| MENU *menu,
535| int new_toprow,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530536| ITEM *new_current_item)
micky3879b9f5e72025-07-08 18:04:53 -0400537|
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530538| Description : Redisplay the menu so that the given row becomes the
539| top row and the given item becomes the new current
540| item.
541|
542| Return Values : -
543+--------------------------------------------------------------------------*/
micky3879b9f5e72025-07-08 18:04:53 -0400544MENU_EXPORT(void)
Steve Kondikae271bc2015-11-15 02:50:53 +0100545_nc_New_TopRow_and_CurrentItem(
micky3879b9f5e72025-07-08 18:04:53 -0400546 MENU *menu,
Steve Kondikae271bc2015-11-15 02:50:53 +0100547 int new_toprow,
micky3879b9f5e72025-07-08 18:04:53 -0400548 ITEM *new_current_item)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530549{
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530550 assert(menu);
551 if (menu->status & _POSTED)
552 {
micky3879b9f5e72025-07-08 18:04:53 -0400553 ITEM *cur_item;
554 bool mterm_called = FALSE;
555 bool iterm_called = FALSE;
556
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530557 if (new_current_item != menu->curitem)
558 {
559 Call_Hook(menu, itemterm);
560 iterm_called = TRUE;
561 }
562 if (new_toprow != menu->toprow)
563 {
564 Call_Hook(menu, menuterm);
565 mterm_called = TRUE;
566 }
567
568 cur_item = menu->curitem;
569 assert(cur_item);
Steve Kondikae271bc2015-11-15 02:50:53 +0100570 menu->toprow = (short)(((menu->rows - menu->frows) >= 0)
micky3879b9f5e72025-07-08 18:04:53 -0400571 ? Min(menu->rows - menu->frows, new_toprow)
Steve Kondikae271bc2015-11-15 02:50:53 +0100572 : 0);
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530573 menu->curitem = new_current_item;
574
575 if (mterm_called)
576 {
577 Call_Hook(menu, menuinit);
578 }
579 if (iterm_called)
580 {
581 /* this means, move from the old current_item to the new one... */
582 Move_To_Current_Item(menu, cur_item);
583 Call_Hook(menu, iteminit);
584 }
585 if (mterm_called || iterm_called)
586 {
587 _nc_Show_Menu(menu);
588 }
589 else
590 pos_menu_cursor(menu);
591 }
592 else
593 { /* if we are not posted, this is quite simple */
Steve Kondikae271bc2015-11-15 02:50:53 +0100594 menu->toprow = (short)(((menu->rows - menu->frows) >= 0)
micky3879b9f5e72025-07-08 18:04:53 -0400595 ? Min(menu->rows - menu->frows, new_toprow)
Steve Kondikae271bc2015-11-15 02:50:53 +0100596 : 0);
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530597 menu->curitem = new_current_item;
598 }
599}
600
601/* m_global.c ends here */