]> ncurses.scripts.mit.edu Git - ncurses.git/blob - test/demo_keyok.c
ncurses 6.1 - patch 20191221
[ncurses.git] / test / demo_keyok.c
1 /****************************************************************************
2  * Copyright (c) 2002-2006,2017 Free Software Foundation, Inc.              *
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: demo_keyok.c,v 1.6 2017/04/10 00:37:08 tom Exp $
30  *
31  * Demonstrate the keyok() function.
32  * Thomas Dickey - 2002/11/23
33  */
34
35 #include <test.priv.h>
36
37 #if defined(NCURSES_VERSION) && NCURSES_EXT_FUNCS
38 int
39 main(int argc GCC_UNUSED, char *argv[]GCC_UNUSED)
40 {
41     int lastch = ERR;
42     int prior = ERR;
43     int ch;
44     WINDOW *win;
45
46     initscr();
47     (void) cbreak();            /* take input chars one at a time, no wait for \n */
48     (void) noecho();            /* don't echo input */
49
50     printw("Typing any function key will disable it, but typing it twice in\n");
51     printw("a row will turn it back on (just for a demo).");
52     refresh();
53
54     win = newwin(LINES - 2, COLS, 2, 0);
55     scrollok(win, TRUE);
56     keypad(win, TRUE);
57     wmove(win, 0, 0);
58
59     while ((ch = wgetch(win)) != ERR) {
60         const char *name = keyname(ch);
61         if (ch == ESCAPE && prior == ch)
62             break;
63         prior = ch;
64         wprintw(win, "Keycode %d, name %s\n",
65                 ch,
66                 name != 0 ? name : "<null>");
67         wclrtoeol(win);
68         wrefresh(win);
69         if (ch >= KEY_MIN) {
70             keyok(ch, FALSE);
71             lastch = ch;
72         } else if (lastch >= KEY_MIN) {
73             keyok(lastch, TRUE);
74         }
75     }
76     endwin();
77     ExitProgram(EXIT_SUCCESS);
78 }
79 #else
80 int
81 main(void)
82 {
83     printf("This program requires the ncurses library\n");
84     ExitProgram(EXIT_FAILURE);
85 }
86 #endif