blob: cc0066d540b8947bba1661d5642787df8cc4a712 [file] [log] [blame]
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301/****************************************************************************
Steve Kondikae271bc2015-11-15 02:50:53 +01002 * Copyright (c) 1998-2012,2015 Free Software Foundation, Inc. *
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303 * *
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, 1995,1997 *
31 ****************************************************************************/
32
33/***************************************************************************
34* Module m_request_name *
35* Routines to handle external names of menu requests *
36***************************************************************************/
37
38#include "menu.priv.h"
39
Steve Kondikae271bc2015-11-15 02:50:53 +010040MODULE_ID("$Id: m_req_name.c,v 1.23 2015/04/04 18:00:23 tom Exp $")
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053041
Steve Kondikae271bc2015-11-15 02:50:53 +010042#define DATA(s) { s }
43
44static const char request_names[MAX_MENU_COMMAND - MIN_MENU_COMMAND + 1][14] =
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053045{
Steve Kondikae271bc2015-11-15 02:50:53 +010046 DATA("LEFT_ITEM"),
47 DATA("RIGHT_ITEM"),
48 DATA("UP_ITEM"),
49 DATA("DOWN_ITEM"),
50 DATA("SCR_ULINE"),
51 DATA("SCR_DLINE"),
52 DATA("SCR_DPAGE"),
53 DATA("SCR_UPAGE"),
54 DATA("FIRST_ITEM"),
55 DATA("LAST_ITEM"),
56 DATA("NEXT_ITEM"),
57 DATA("PREV_ITEM"),
58 DATA("TOGGLE_ITEM"),
59 DATA("CLEAR_PATTERN"),
60 DATA("BACK_PATTERN"),
61 DATA("NEXT_MATCH"),
62 DATA("PREV_MATCH")
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053063};
64
65#define A_SIZE (sizeof(request_names)/sizeof(request_names[0]))
66
67/*---------------------------------------------------------------------------
68| Facility : libnmenu
69| Function : const char * menu_request_name (int request);
70|
71| Description : Get the external name of a menu request.
72|
73| Return Values : Pointer to name - on success
74| NULL - on invalid request code
75+--------------------------------------------------------------------------*/
76NCURSES_EXPORT(const char *)
77menu_request_name(int request)
78{
79 T((T_CALLED("menu_request_name(%d)"), request));
80 if ((request < MIN_MENU_COMMAND) || (request > MAX_MENU_COMMAND))
81 {
82 SET_ERROR(E_BAD_ARGUMENT);
83 returnCPtr((const char *)0);
84 }
85 else
86 returnCPtr(request_names[request - MIN_MENU_COMMAND]);
87}
88
89/*---------------------------------------------------------------------------
90| Facility : libnmenu
91| Function : int menu_request_by_name (const char *str);
92|
93| Description : Search for a request with this name.
94|
95| Return Values : Request Id - on success
96| E_NO_MATCH - request not found
97+--------------------------------------------------------------------------*/
98NCURSES_EXPORT(int)
99menu_request_by_name(const char *str)
100{
101 /* because the table is so small, it doesn't really hurt
102 to run sequentially through it.
103 */
Steve Kondikae271bc2015-11-15 02:50:53 +0100104 size_t i = 0;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530105 char buf[16];
106
107 T((T_CALLED("menu_request_by_name(%s)"), _nc_visbuf(str)));
108
Steve Kondikae271bc2015-11-15 02:50:53 +0100109 if (str != 0 && (i = strlen(str)) != 0)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530110 {
Steve Kondikae271bc2015-11-15 02:50:53 +0100111 if (i > sizeof(buf) - 2)
112 i = sizeof(buf) - 2;
113 memcpy(buf, str, i);
114 buf[i] = '\0';
115
116 for (i = 0; buf[i] != '\0'; ++i)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530117 {
Steve Kondikae271bc2015-11-15 02:50:53 +0100118 buf[i] = (char)toupper(UChar(buf[i]));
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530119 }
120
121 for (i = 0; i < A_SIZE; i++)
122 {
Steve Kondikae271bc2015-11-15 02:50:53 +0100123 if (strcmp(request_names[i], buf) == 0)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530124 returnCode(MIN_MENU_COMMAND + (int)i);
125 }
126 }
127 RETURN(E_NO_MATCH);
128}
129
130/* m_req_name.c ends here */