]> ncurses.scripts.mit.edu Git - ncurses.git/blob - test/key_names.c
ncurses 6.2 - patch 20200912
[ncurses.git] / test / key_names.c
1 /****************************************************************************
2  * Copyright 2020 Thomas E. Dickey                                          *
3  * Copyright 2007-2014,2017 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: key_names.c,v 1.8 2020/02/02 23:34:34 tom Exp $
31  */
32
33 #include <test.priv.h>
34
35 #if USE_WIDEC_SUPPORT
36
37 static void
38 usage(void)
39 {
40     fprintf(stderr, "Usage: key_names [-m] [-s]\n");
41     ExitProgram(EXIT_FAILURE);
42 }
43
44 int
45 main(int argc, char *argv[])
46 {
47     int n;
48
49     bool do_setup = FALSE;
50     bool do_meta = FALSE;
51
52     setlocale(LC_ALL, "");
53
54     while ((n = getopt(argc, argv, "ms")) != -1) {
55         switch (n) {
56         case 'm':
57             do_meta = TRUE;
58             break;
59         case 's':
60             do_setup = TRUE;
61             break;
62         default:
63             usage();
64             /* NOTREACHED */
65         }
66     }
67
68     if (do_setup) {
69         /*
70          * Get the terminfo entry into memory, and tell ncurses that we want to
71          * use function keys.  That will make it add any user-defined keys that
72          * appear in the terminfo.
73          */
74         newterm(getenv("TERM"), stderr, stdin);
75         keypad(stdscr, TRUE);
76         if (do_meta)
77             meta(stdscr, TRUE);
78         endwin();
79     }
80     for (n = -1; n < KEY_MAX + 512; n++) {
81         int check = wcwidth((wchar_t) n);
82         const char *result = check >= 0 ? key_name((wchar_t) n) : "?";
83         if (result != 0)
84             printf("%d(%5o):%s\n", n, n, result);
85     }
86     ExitProgram(EXIT_SUCCESS);
87 }
88 #else
89 int
90 main(void)
91 {
92     printf("This program requires the wide-ncurses library\n");
93     ExitProgram(EXIT_FAILURE);
94 }
95 #endif