blob: cae260f63fe521e85a1267fce2dfe1b625b93ad6 [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 1998-2006,2008 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: keynames.c,v 1.13 2022/12/04 00:40:11 tom Exp $
Steve Kondikae271bc2015-11-15 02:50:53 +010031 */
32
33#include <test.priv.h>
34
35static void
micky3879b9f5e72025-07-08 18:04:53 -040036usage(int ok)
Steve Kondikae271bc2015-11-15 02:50:53 +010037{
micky3879b9f5e72025-07-08 18:04:53 -040038 static const char *msg[] =
39 {
40 "Usage: keynames"
41 ,""
42 ,USAGE_COMMON
43 ,"Options:"
44 ," -m call meta(TRUE) in initialization"
45 ," -s call newterm, etc., to complete initialization"
46 };
47 size_t n;
48
49 for (n = 0; n < SIZEOF(msg); n++)
50 fprintf(stderr, "%s\n", msg[n]);
51
52 ExitProgram(ok ? EXIT_SUCCESS : EXIT_FAILURE);
Steve Kondikae271bc2015-11-15 02:50:53 +010053}
micky3879b9f5e72025-07-08 18:04:53 -040054/* *INDENT-OFF* */
55VERSION_COMMON()
56/* *INDENT-ON* */
Steve Kondikae271bc2015-11-15 02:50:53 +010057
58int
59main(int argc, char *argv[])
60{
micky3879b9f5e72025-07-08 18:04:53 -040061 int ch;
Steve Kondikae271bc2015-11-15 02:50:53 +010062 int n;
63 bool do_setup = FALSE;
64 bool do_meta = FALSE;
65
66 setlocale(LC_ALL, "");
67
micky3879b9f5e72025-07-08 18:04:53 -040068 while ((ch = getopt(argc, argv, OPTS_COMMON "ms")) != -1) {
69 switch (ch) {
Steve Kondikae271bc2015-11-15 02:50:53 +010070 case 'm':
71 do_meta = TRUE;
72 break;
73 case 's':
74 do_setup = TRUE;
75 break;
micky3879b9f5e72025-07-08 18:04:53 -040076 case OPTS_VERSION:
77 show_version(argv);
78 ExitProgram(EXIT_SUCCESS);
Steve Kondikae271bc2015-11-15 02:50:53 +010079 default:
micky3879b9f5e72025-07-08 18:04:53 -040080 usage(ch == OPTS_USAGE);
Steve Kondikae271bc2015-11-15 02:50:53 +010081 /* NOTREACHED */
82 }
83 }
84
85 if (do_setup) {
86 /*
87 * Get the terminfo entry into memory, and tell ncurses that we want to
88 * use function keys. That will make it add any user-defined keys that
89 * appear in the terminfo.
90 */
91 newterm(getenv("TERM"), stderr, stdin);
92 keypad(stdscr, TRUE);
93 if (do_meta)
94 meta(stdscr, TRUE);
95 endwin();
96 }
97
98 for (n = -1; n < KEY_MAX + 512; n++) {
99 const char *result = keyname(n);
100 if (result != 0)
101 printf("%d(%5o):%s\n", n, n, result);
102 }
103 ExitProgram(EXIT_SUCCESS);
104}