• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /****************************************************************************
2  * Copyright 2020,2022 Thomas E. Dickey                                     *
3  * Copyright 1998-2006,2008 Free Software Foundation, Inc.                  *
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  * $Id: keynames.c,v 1.13 2022/12/04 00:40:11 tom Exp $
31  */
32 
33 #include <test.priv.h>
34 
35 static void
usage(int ok)36 usage(int ok)
37 {
38     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);
53 }
54 /* *INDENT-OFF* */
VERSION_COMMON()55 VERSION_COMMON()
56 /* *INDENT-ON* */
57 
58 int
59 main(int argc, char *argv[])
60 {
61     int ch;
62     int n;
63     bool do_setup = FALSE;
64     bool do_meta = FALSE;
65 
66     setlocale(LC_ALL, "");
67 
68     while ((ch = getopt(argc, argv, OPTS_COMMON "ms")) != -1) {
69 	switch (ch) {
70 	case 'm':
71 	    do_meta = TRUE;
72 	    break;
73 	case 's':
74 	    do_setup = TRUE;
75 	    break;
76 	case OPTS_VERSION:
77 	    show_version(argv);
78 	    ExitProgram(EXIT_SUCCESS);
79 	default:
80 	    usage(ch == OPTS_USAGE);
81 	    /* 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 }
105