Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1 | /**************************************************************************** |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2 | * Copyright 2020,2021 Thomas E. Dickey * |
| 3 | * Copyright 1998-2012,2015 Free Software Foundation, Inc. * |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4 | * * |
| 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_request_name * |
| 36 | * Routines to handle external names of menu requests * |
| 37 | ***************************************************************************/ |
| 38 | |
| 39 | #include "menu.priv.h" |
| 40 | |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 41 | MODULE_ID("$Id: m_req_name.c,v 1.27 2021/06/17 21:11:08 tom Exp $") |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 42 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 43 | #define DATA(s) { s } |
| 44 | |
| 45 | static const char request_names[MAX_MENU_COMMAND - MIN_MENU_COMMAND + 1][14] = |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 46 | { |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 47 | DATA("LEFT_ITEM"), |
| 48 | DATA("RIGHT_ITEM"), |
| 49 | DATA("UP_ITEM"), |
| 50 | DATA("DOWN_ITEM"), |
| 51 | DATA("SCR_ULINE"), |
| 52 | DATA("SCR_DLINE"), |
| 53 | DATA("SCR_DPAGE"), |
| 54 | DATA("SCR_UPAGE"), |
| 55 | DATA("FIRST_ITEM"), |
| 56 | DATA("LAST_ITEM"), |
| 57 | DATA("NEXT_ITEM"), |
| 58 | DATA("PREV_ITEM"), |
| 59 | DATA("TOGGLE_ITEM"), |
| 60 | DATA("CLEAR_PATTERN"), |
| 61 | DATA("BACK_PATTERN"), |
| 62 | DATA("NEXT_MATCH"), |
| 63 | DATA("PREV_MATCH") |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 64 | }; |
| 65 | |
| 66 | #define A_SIZE (sizeof(request_names)/sizeof(request_names[0])) |
| 67 | |
| 68 | /*--------------------------------------------------------------------------- |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 69 | | Facility : libnmenu |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 70 | | Function : const char * menu_request_name (int request); |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 71 | | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 72 | | Description : Get the external name of a menu request. |
| 73 | | |
| 74 | | Return Values : Pointer to name - on success |
| 75 | | NULL - on invalid request code |
| 76 | +--------------------------------------------------------------------------*/ |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 77 | MENU_EXPORT(const char *) |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 78 | menu_request_name(int request) |
| 79 | { |
| 80 | T((T_CALLED("menu_request_name(%d)"), request)); |
| 81 | if ((request < MIN_MENU_COMMAND) || (request > MAX_MENU_COMMAND)) |
| 82 | { |
| 83 | SET_ERROR(E_BAD_ARGUMENT); |
| 84 | returnCPtr((const char *)0); |
| 85 | } |
| 86 | else |
| 87 | returnCPtr(request_names[request - MIN_MENU_COMMAND]); |
| 88 | } |
| 89 | |
| 90 | /*--------------------------------------------------------------------------- |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 91 | | Facility : libnmenu |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 92 | | Function : int menu_request_by_name (const char *str); |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 93 | | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 94 | | Description : Search for a request with this name. |
| 95 | | |
| 96 | | Return Values : Request Id - on success |
| 97 | | E_NO_MATCH - request not found |
| 98 | +--------------------------------------------------------------------------*/ |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 99 | MENU_EXPORT(int) |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 100 | menu_request_by_name(const char *str) |
| 101 | { |
| 102 | /* because the table is so small, it doesn't really hurt |
| 103 | to run sequentially through it. |
| 104 | */ |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 105 | size_t i = 0; |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 106 | |
| 107 | T((T_CALLED("menu_request_by_name(%s)"), _nc_visbuf(str))); |
| 108 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 109 | if (str != 0 && (i = strlen(str)) != 0) |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 110 | { |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 111 | char buf[16]; |
| 112 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 113 | if (i > sizeof(buf) - 2) |
| 114 | i = sizeof(buf) - 2; |
| 115 | memcpy(buf, str, i); |
| 116 | buf[i] = '\0'; |
| 117 | |
| 118 | for (i = 0; buf[i] != '\0'; ++i) |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 119 | { |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 120 | buf[i] = (char)toupper(UChar(buf[i])); |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 121 | } |
| 122 | |
| 123 | for (i = 0; i < A_SIZE; i++) |
| 124 | { |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 125 | if (strcmp(request_names[i], buf) == 0) |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 126 | returnCode(MIN_MENU_COMMAND + (int)i); |
| 127 | } |
| 128 | } |
| 129 | RETURN(E_NO_MATCH); |
| 130 | } |
| 131 | |
| 132 | /* m_req_name.c ends here */ |