]> ncurses.scripts.mit.edu Git - ncurses.git/blob - test/test_unget_wch.c
ncurses 6.4 - patch 20240414
[ncurses.git] / test / test_unget_wch.c
1 /****************************************************************************
2  * Copyright 2022 Thomas E. Dickey                                          *
3  *                                                                          *
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  * $Id: test_unget_wch.c,v 1.3 2022/04/16 17:04:04 tom Exp $
30  *
31  * Demonstrate the unget_wch and unget functions.
32  */
33
34 #include <test.priv.h>
35
36 #if USE_WIDEC_SUPPORT && HAVE_UNGET_WCH
37 int
38 main(void)
39 {
40     int step = 0;
41
42     setlocale(LC_ALL, "");
43     initscr();
44     keypad(stdscr, TRUE);
45     cbreak();
46     noecho();
47     scrollok(stdscr, TRUE);
48
49     for (;;) {
50         wint_t widechar;
51         int rc = get_wch(&widechar);
52         if (rc == KEY_CODE_YES) {
53             printw("KEY[%d] %s\n", ++step, keyname((int) widechar));
54             ungetch((int) widechar);
55             printw("...[%d] %s\n", step, keyname(getch()));
56         } else if (widechar == QUIT || widechar == ESCAPE) {
57             break;
58         } else {
59             printw("CHR[%d] %s\n", ++step, key_name((wchar_t) widechar));
60             unget_wch((wchar_t) widechar);
61             rc = get_wch(&widechar);
62             printw("%s[%d] %s\n",
63                    ((rc == KEY_CODE_YES)
64                     ? "???"
65                     : "..."),
66                    step, key_name((wchar_t) widechar));
67         }
68     }
69
70     endwin();
71
72     ExitProgram(EXIT_SUCCESS);
73 }
74
75 #else
76 int
77 main(void)
78 {
79     printf("This program requires the wide-ncurses library\n");
80     ExitProgram(EXIT_FAILURE);
81 }
82 #endif