1curs_get_wch(3X) curs_get_wch(3X)
2
3
4
6 get_wch, wget_wch, mvget_wch, mvwget_wch, unget_wch - get (or push
7 back) a wide character from curses terminal keyboard
8
10 #include <curses.h>
11
12 int get_wch(wint_t *wch);
13 int wget_wch(WINDOW *win, wint_t *wch);
14 int mvget_wch(int y, int x, wint_t *wch);
15 int mvwget_wch(WINDOW *win, int y, int x, wint_t *wch);
16
17 int unget_wch(const wchar_t wch);
18
20 wget_wch
21 The get_wch, wget_wch, mvget_wch, and mvwget_wch functions read a char‐
22 acter from the terminal associated with the current or specified win‐
23 dow. In no-delay mode, if no input is waiting, the value ERR is re‐
24 turned. In delay mode, the program waits until the system passes text
25 through to the program. Depending on the setting of cbreak, this is
26 after one character (cbreak mode), or after the first newline (nocbreak
27 mode). In half-delay mode, the program waits until the user types a
28 character or the specified timeout interval has elapsed.
29
30 Unless noecho has been set, these routines echo the character into the
31 designated window.
32
33 If the window is not a pad and has been moved or modified since the
34 last call to wrefresh, wrefresh will be called before another character
35 is read.
36
37 If keypad is enabled, these functions respond to the pressing of a
38 function key by setting the object pointed to by wch to the keycode as‐
39 signed to the function key, and returning KEY_CODE_YES. If a character
40 (such as escape) that could be the beginning of a function key is re‐
41 ceived, curses sets a timer. If the remainder of the sequence does ar‐
42 rive within the designated time, curses passes through the character;
43 otherwise, curses returns the function key value. For this reason,
44 many terminals experience a delay between the time a user presses the
45 escape key and the time the escape is returned to the program.
46
47 The keycodes returned by these functions are the same as those returned
48 by wgetch:
49
50 • The predefined function keys are listed in <curses.h> as macros
51 with values outside the range of 8-bit characters. Their names be‐
52 gin with KEY_.
53
54 • Other (user-defined) function keys which may be defined using de‐
55 fine_key(3X) have no names, but also are expected to have values
56 outside the range of 8-bit characters.
57
58 unget_wch
59 The unget_wch function pushes the wide character wch back onto the head
60 of the input queue, so the wide character is returned by the next call
61 to get_wch. The pushback of one character is guaranteed. If the pro‐
62 gram calls unget_wch too many times without an intervening call to
63 get_wch, the operation may fail.
64
65 Unlike ungetch and wgetch, unget_wch cannot distinguish special charac‐
66 ters returned by wget_wch from ordinary characters. An application can
67 push special keys which it may read via wget_wch by checking for the
68 KEY_CODE_YES result, and using ungetch for those special keys.
69
71 The header file <curses.h> automatically includes the header file
72 <stdio.h>.
73
74 Applications should not define the escape key by itself as a single-
75 character function.
76
77 When using get_wch, wget_wch, mvget_wch, or mvwget_wch, applications
78 should not use nocbreak mode and echo mode at the same time. Depending
79 on the state of the tty driver when each character is typed, the pro‐
80 gram may produce undesirable results.
81
82 All functions except wget_wch and unget_wch may be macros.
83
85 When get_wch, wget_wch, mvget_wch, and mvwget_wch functions successful‐
86 ly report the pressing of a function key, they return KEY_CODE_YES.
87 When they successfully report a wide character, they return OK. Other‐
88 wise, they return ERR.
89
90 Upon successful completion, unget_wch returns OK. Otherwise, the func‐
91 tion returns ERR.
92
93 Functions with a “mv” prefix first perform a cursor movement using
94 wmove, and return an error if the position is outside the window, or if
95 the window pointer is null.
96
98 curses(3X), curs_getch(3X), curs_ins_wch(3X), curs_inopts(3X),
99 curs_move(3X), curs_refresh(3X)
100
101
102
103 curs_get_wch(3X)