blob: fa7fdba631a4b6de0c308f7e4a1f3474b22e7868 [file] [log] [blame]
Steve Kondikae271bc2015-11-15 02:50:53 +01001/****************************************************************************
micky3879b9f5e72025-07-08 18:04:53 -04002 * Copyright 2020,2022 Thomas E. Dickey *
3 * Copyright 2007-2014,2017 Free Software Foundation, Inc. *
Steve Kondikae271bc2015-11-15 02:50:53 +01004 * *
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/*
micky3879b9f5e72025-07-08 18:04:53 -040030 * $Id: key_names.c,v 1.11 2022/12/04 00:40:11 tom Exp $
Steve Kondikae271bc2015-11-15 02:50:53 +010031 */
32
33#include <test.priv.h>
34
35#if USE_WIDEC_SUPPORT
36
37static void
micky3879b9f5e72025-07-08 18:04:53 -040038usage(int ok)
Steve Kondikae271bc2015-11-15 02:50:53 +010039{
micky3879b9f5e72025-07-08 18:04:53 -040040 static const char *msg[] =
41 {
42 "Usage: key_names"
43 ,""
44 ,USAGE_COMMON
45 ,"Options:"
46 ," -m call meta(TRUE) in initialization"
47 ," -s call newterm, etc., to complete initialization"
48 };
49 size_t n;
50
51 for (n = 0; n < SIZEOF(msg); n++)
52 fprintf(stderr, "%s\n", msg[n]);
53
54 ExitProgram(ok ? EXIT_SUCCESS : EXIT_FAILURE);
Steve Kondikae271bc2015-11-15 02:50:53 +010055}
micky3879b9f5e72025-07-08 18:04:53 -040056/* *INDENT-OFF* */
57VERSION_COMMON()
58/* *INDENT-ON* */
Steve Kondikae271bc2015-11-15 02:50:53 +010059
60int
61main(int argc, char *argv[])
62{
micky3879b9f5e72025-07-08 18:04:53 -040063 int ch;
Steve Kondikae271bc2015-11-15 02:50:53 +010064 int n;
65
66 bool do_setup = FALSE;
67 bool do_meta = FALSE;
68
69 setlocale(LC_ALL, "");
70
micky3879b9f5e72025-07-08 18:04:53 -040071 while ((ch = getopt(argc, argv, OPTS_COMMON "ms")) != -1) {
72 switch (ch) {
Steve Kondikae271bc2015-11-15 02:50:53 +010073 case 'm':
74 do_meta = TRUE;
75 break;
76 case 's':
77 do_setup = TRUE;
78 break;
micky3879b9f5e72025-07-08 18:04:53 -040079 case OPTS_VERSION:
80 show_version(argv);
81 ExitProgram(EXIT_SUCCESS);
Steve Kondikae271bc2015-11-15 02:50:53 +010082 default:
micky3879b9f5e72025-07-08 18:04:53 -040083 usage(ch == OPTS_USAGE);
Steve Kondikae271bc2015-11-15 02:50:53 +010084 /* NOTREACHED */
85 }
86 }
87
88 if (do_setup) {
89 /*
90 * Get the terminfo entry into memory, and tell ncurses that we want to
91 * use function keys. That will make it add any user-defined keys that
92 * appear in the terminfo.
93 */
94 newterm(getenv("TERM"), stderr, stdin);
95 keypad(stdscr, TRUE);
96 if (do_meta)
97 meta(stdscr, TRUE);
98 endwin();
99 }
100 for (n = -1; n < KEY_MAX + 512; n++) {
micky3879b9f5e72025-07-08 18:04:53 -0400101 int check = wcwidth((wchar_t) n);
102 const char *result = check >= 0 ? key_name((wchar_t) n) : "?";
Steve Kondikae271bc2015-11-15 02:50:53 +0100103 if (result != 0)
104 printf("%d(%5o):%s\n", n, n, result);
105 }
106 ExitProgram(EXIT_SUCCESS);
107}
108#else
109int
110main(void)
111{
112 printf("This program requires the wide-ncurses library\n");
113 ExitProgram(EXIT_FAILURE);
114}
115#endif