curs_getch.3x.html 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339
  1. <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
  2. <!--
  3. * t
  4. ****************************************************************************
  5. * Copyright (c) 1998-2005,2006 Free Software Foundation, Inc. *
  6. * *
  7. * Permission is hereby granted, free of charge, to any person obtaining a *
  8. * copy of this software and associated documentation files (the *
  9. * "Software"), to deal in the Software without restriction, including *
  10. * without limitation the rights to use, copy, modify, merge, publish, *
  11. * distribute, distribute with modifications, sublicense, and/or sell *
  12. * copies of the Software, and to permit persons to whom the Software is *
  13. * furnished to do so, subject to the following conditions: *
  14. * *
  15. * The above copyright notice and this permission notice shall be included *
  16. * in all copies or substantial portions of the Software. *
  17. * *
  18. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS *
  19. * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF *
  20. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. *
  21. * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, *
  22. * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR *
  23. * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR *
  24. * THE USE OR OTHER DEALINGS IN THE SOFTWARE. *
  25. * *
  26. * Except as contained in this notice, the name(s) of the above copyright *
  27. * holders shall not be used in advertising or otherwise to promote the *
  28. * sale, use or other dealings in this Software without prior written *
  29. * authorization. *
  30. ****************************************************************************
  31. * @Id: curs_getch.3x,v 1.30 2006/12/02 17:02:53 tom Exp @
  32. -->
  33. <HTML>
  34. <HEAD>
  35. <TITLE>curs_getch 3x</TITLE>
  36. <link rev=made href="mailto:bug-ncurses@gnu.org">
  37. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
  38. </HEAD>
  39. <BODY>
  40. <H1>curs_getch 3x</H1>
  41. <HR>
  42. <PRE>
  43. <!-- Manpage converted by man2html 3.0.1 -->
  44. <STRONG><A HREF="curs_getch.3x.html">curs_getch(3x)</A></STRONG> <STRONG><A HREF="curs_getch.3x.html">curs_getch(3x)</A></STRONG>
  45. </PRE>
  46. <H2>NAME</H2><PRE>
  47. <STRONG>getch</STRONG>, <STRONG>wgetch</STRONG>, <STRONG>mvgetch</STRONG>, <STRONG>mvwgetch</STRONG>, <STRONG>ungetch</STRONG>, <STRONG>has_key</STRONG> - get
  48. (or push back) characters from <STRONG>curses</STRONG> terminal keyboard
  49. </PRE>
  50. <H2>SYNOPSIS</H2><PRE>
  51. <STRONG>#include</STRONG> <STRONG>&lt;curses.h&gt;</STRONG>
  52. <STRONG>int</STRONG> <STRONG>getch(void);</STRONG>
  53. <STRONG>int</STRONG> <STRONG>wgetch(WINDOW</STRONG> <STRONG>*win);</STRONG>
  54. <STRONG>int</STRONG> <STRONG>mvgetch(int</STRONG> <STRONG>y,</STRONG> <STRONG>int</STRONG> <STRONG>x);</STRONG>
  55. <STRONG>int</STRONG> <STRONG>mvwgetch(WINDOW</STRONG> <STRONG>*win,</STRONG> <STRONG>int</STRONG> <STRONG>y,</STRONG> <STRONG>int</STRONG> <STRONG>x);</STRONG>
  56. <STRONG>int</STRONG> <STRONG>ungetch(int</STRONG> <STRONG>ch);</STRONG>
  57. <STRONG>int</STRONG> <STRONG>has_key(int</STRONG> <STRONG>ch);</STRONG>
  58. </PRE>
  59. <H2>DESCRIPTION</H2><PRE>
  60. The <STRONG>getch</STRONG>, <STRONG>wgetch</STRONG>, <STRONG>mvgetch</STRONG> and <STRONG>mvwgetch</STRONG>, routines read a
  61. character from the window. In no-delay mode, if no input
  62. is waiting, the value <STRONG>ERR</STRONG> is returned. In delay mode, the
  63. program waits until the system passes text through to the
  64. program. Depending on the setting of <STRONG>cbreak</STRONG>, this is af-
  65. ter one character (cbreak mode), or after the first new-
  66. line (nocbreak mode). In half-delay mode, the program
  67. waits until a character is typed or the specified timeout
  68. has been reached.
  69. Unless <STRONG>noecho</STRONG> has been set, then the character will also
  70. be echoed into the designated window according to the fol-
  71. lowing rules: If the character is the current erase char-
  72. acter, left arrow, or backspace, the cursor is moved one
  73. space to the left and that screen position is erased as if
  74. <STRONG>delch</STRONG> had been called. If the character value is any oth-
  75. er <STRONG>KEY_</STRONG> define, the user is alerted with a <STRONG>beep</STRONG> call.
  76. Otherwise the character is simply output to the screen.
  77. If the window is not a pad, and it has been moved or modi-
  78. fied since the last call to <STRONG>wrefresh</STRONG>, <STRONG>wrefresh</STRONG> will be
  79. called before another character is read.
  80. If <STRONG>keypad</STRONG> is <STRONG>TRUE</STRONG>, and a function key is pressed, the to-
  81. ken for that function key is returned instead of the raw
  82. characters. Possible function keys are defined in <STRONG>&lt;curs-</STRONG>
  83. <STRONG>es.h&gt;</STRONG> as macros with values outside the range of 8-bit
  84. characters whose names begin with <STRONG>KEY_</STRONG>. Thus, a variable
  85. intended to hold the return value of a function key must
  86. be of short size or larger.
  87. When a character that could be the beginning of a function
  88. key is received (which, on modern terminals, means an es-
  89. cape character), <STRONG>curses</STRONG> sets a timer. If the remainder of
  90. the sequence does not come in within the designated time,
  91. the character is passed through; otherwise, the function
  92. key value is returned. For this reason, many terminals
  93. experience a delay between the time a user presses the es-
  94. cape key and the escape is returned to the program.
  95. The <STRONG>ungetch</STRONG> routine places <EM>ch</EM> back onto the input queue to
  96. be returned by the next call to <STRONG>wgetch</STRONG>. There is just one
  97. input queue for all windows.
  98. <STRONG>Function</STRONG> <STRONG>Keys</STRONG>
  99. The following function keys, defined in <STRONG>&lt;curses.h&gt;</STRONG>, might
  100. be returned by <STRONG>getch</STRONG> if <STRONG>keypad</STRONG> has been enabled. Note
  101. that not all of these are necessarily supported on any
  102. particular terminal.
  103. <EM>Name</EM> <EM>Key</EM> <EM>name</EM>
  104. KEY_BREAK Break key
  105. KEY_DOWN The four arrow keys ...
  106. KEY_UP
  107. KEY_LEFT
  108. KEY_RIGHT
  109. KEY_HOME Home key (upward+left arrow)
  110. KEY_BACKSPACE Backspace
  111. KEY_F0 Function keys; space for 64 keys
  112. is reserved.
  113. KEY_F(<EM>n</EM>) For 0 &lt;= <EM>n</EM> &lt;= 63
  114. KEY_DL Delete line
  115. KEY_IL Insert line
  116. KEY_DC Delete character
  117. KEY_IC Insert char or enter insert mode
  118. KEY_EIC Exit insert char mode
  119. KEY_CLEAR Clear screen
  120. KEY_EOS Clear to end of screen
  121. KEY_EOL Clear to end of line
  122. KEY_SF Scroll 1 line forward
  123. KEY_SR Scroll 1 line backward (reverse)
  124. KEY_NPAGE Next page
  125. KEY_PPAGE Previous page
  126. KEY_STAB Set tab
  127. KEY_CTAB Clear tab
  128. KEY_CATAB Clear all tabs
  129. KEY_ENTER Enter or send
  130. KEY_SRESET Soft (partial) reset
  131. KEY_RESET Reset or hard reset
  132. KEY_PRINT Print or copy
  133. KEY_LL Home down or bottom (lower left)
  134. KEY_A1 Upper left of keypad
  135. KEY_A3 Upper right of keypad
  136. KEY_B2 Center of keypad
  137. KEY_C1 Lower left of keypad
  138. KEY_C3 Lower right of keypad
  139. KEY_BTAB Back tab key
  140. KEY_BEG Beg(inning) key
  141. KEY_CANCEL Cancel key
  142. KEY_CLOSE Close key
  143. KEY_COMMAND Cmd (command) key
  144. KEY_COPY Copy key
  145. KEY_CREATE Create key
  146. KEY_END End key
  147. KEY_EXIT Exit key
  148. KEY_FIND Find key
  149. KEY_HELP Help key
  150. KEY_MARK Mark key
  151. KEY_MESSAGE Message key
  152. KEY_MOUSE Mouse event read
  153. KEY_MOVE Move key
  154. KEY_NEXT Next object key
  155. KEY_OPEN Open key
  156. KEY_OPTIONS Options key
  157. KEY_PREVIOUS Previous object key
  158. KEY_REDO Redo key
  159. KEY_REFERENCE Ref(erence) key
  160. KEY_REFRESH Refresh key
  161. KEY_REPLACE Replace key
  162. KEY_RESIZE Screen resized
  163. KEY_RESTART Restart key
  164. KEY_RESUME Resume key
  165. KEY_SAVE Save key
  166. KEY_SBEG Shifted beginning key
  167. KEY_SCANCEL Shifted cancel key
  168. KEY_SCOMMAND Shifted command key
  169. KEY_SCOPY Shifted copy key
  170. KEY_SCREATE Shifted create key
  171. KEY_SDC Shifted delete char key
  172. KEY_SDL Shifted delete line key
  173. KEY_SELECT Select key
  174. KEY_SEND Shifted end key
  175. KEY_SEOL Shifted clear line key
  176. KEY_SEXIT Shifted exit key
  177. KEY_SFIND Shifted find key
  178. KEY_SHELP Shifted help key
  179. KEY_SHOME Shifted home key
  180. KEY_SIC Shifted input key
  181. KEY_SLEFT Shifted left arrow key
  182. KEY_SMESSAGE Shifted message key
  183. KEY_SMOVE Shifted move key
  184. KEY_SNEXT Shifted next key
  185. KEY_SOPTIONS Shifted options key
  186. KEY_SPREVIOUS Shifted prev key
  187. KEY_SPRINT Shifted print key
  188. KEY_SREDO Shifted redo key
  189. KEY_SREPLACE Shifted replace key
  190. KEY_SRIGHT Shifted right arrow
  191. KEY_SRSUME Shifted resume key
  192. KEY_SSAVE Shifted save key
  193. KEY_SSUSPEND Shifted suspend key
  194. KEY_SUNDO Shifted undo key
  195. KEY_SUSPEND Suspend key
  196. KEY_UNDO Undo key
  197. Keypad is arranged like this:
  198. +-----+------+-------+
  199. | <STRONG>A1</STRONG> | <STRONG>up</STRONG> | <STRONG>A3</STRONG> |
  200. +-----+------+-------+
  201. |<STRONG>left</STRONG> | <STRONG>B2</STRONG> | <STRONG>right</STRONG> |
  202. +-----+------+-------+
  203. | <STRONG>C1</STRONG> | <STRONG>down</STRONG> | <STRONG>C3</STRONG> |
  204. +-----+------+-------+
  205. The <STRONG>has_key</STRONG> routine takes a key value from the above list,
  206. and returns TRUE or FALSE according to whether the current
  207. terminal type recognizes a key with that value. Note that
  208. a few values do not correspond to a real key, e.g.,
  209. <STRONG>KEY_RESIZE</STRONG> and <STRONG>KEY_MOUSE</STRONG>. See <STRONG><A HREF="resizeterm.3x.html">resizeterm(3x)</A></STRONG> for more de-
  210. tails about <STRONG>KEY_RESIZE</STRONG>, and <STRONG><A HREF="curs_mouse.3x.html">curs_mouse(3x)</A></STRONG> for a discus-
  211. sion of <STRONG>KEY_MOUSE</STRONG>.
  212. </PRE>
  213. <H2>RETURN VALUE</H2><PRE>
  214. All routines return the integer <STRONG>ERR</STRONG> upon failure and an
  215. integer value other than <STRONG>ERR</STRONG> (<STRONG>OK</STRONG> in the case of ungetch())
  216. upon successful completion.
  217. <STRONG>ungetch</STRONG>
  218. returns an error if there is no more room in
  219. the FIFO.
  220. <STRONG>wgetch</STRONG>
  221. returns an error if the window pointer is
  222. null, or if its timeout expires without having
  223. any data.
  224. </PRE>
  225. <H2>NOTES</H2><PRE>
  226. Use of the escape key by a programmer for a single charac-
  227. ter function is discouraged, as it will cause a delay of
  228. up to one second while the keypad code looks for a follow-
  229. ing function-key sequence.
  230. Note that some keys may be the same as commonly used con-
  231. trol keys, e.g., <STRONG>KEY_ENTER</STRONG> versus control/M, <STRONG>KEY_BACKSPACE</STRONG>
  232. versus control/H. Some curses implementations may differ
  233. according to whether they treat these control keys spe-
  234. cially (and ignore the terminfo), or use the terminfo def-
  235. initions. <STRONG>Ncurses</STRONG> uses the terminfo definition. If it
  236. says that <STRONG>KEY_ENTER</STRONG> is control/M, <STRONG>getch</STRONG> will return
  237. <STRONG>KEY_ENTER</STRONG> when you press control/M.
  238. When using <STRONG>getch</STRONG>, <STRONG>wgetch</STRONG>, <STRONG>mvgetch</STRONG>, or <STRONG>mvwgetch</STRONG>, nocbreak
  239. mode (<STRONG>nocbreak</STRONG>) and echo mode (<STRONG>echo</STRONG>) should not be used at
  240. the same time. Depending on the state of the tty driver
  241. when each character is typed, the program may produce un-
  242. desirable results.
  243. Note that <STRONG>getch</STRONG>, <STRONG>mvgetch</STRONG>, and <STRONG>mvwgetch</STRONG> may be macros.
  244. Historically, the set of keypad macros was largely defined
  245. by the extremely function-key-rich keyboard of the AT&amp;T
  246. 7300, aka 3B1, aka Safari 4. Modern personal computers
  247. usually have only a small subset of these. IBM PC-style
  248. consoles typically support little more than <STRONG>KEY_UP</STRONG>,
  249. <STRONG>KEY_DOWN</STRONG>, <STRONG>KEY_LEFT</STRONG>, <STRONG>KEY_RIGHT</STRONG>, <STRONG>KEY_HOME</STRONG>, <STRONG>KEY_END</STRONG>,
  250. <STRONG>KEY_NPAGE</STRONG>, <STRONG>KEY_PPAGE</STRONG>, and function keys 1 through 12. The
  251. Ins key is usually mapped to <STRONG>KEY_IC</STRONG>.
  252. </PRE>
  253. <H2>PORTABILITY</H2><PRE>
  254. The *get* functions are described in the XSI Curses stan-
  255. dard, Issue 4. They read single-byte characters only.
  256. The standard specifies that they return <STRONG>ERR</STRONG> on failure,
  257. but specifies no error conditions.
  258. The echo behavior of these functions on input of <STRONG>KEY_</STRONG> or
  259. backspace characters was not specified in the SVr4 docu-
  260. mentation. This description is adopted from the XSI Curs-
  261. es standard.
  262. The behavior of <STRONG>getch</STRONG> and friends in the presence of han-
  263. dled signals is unspecified in the SVr4 and XSI Curses
  264. documentation. Under historical curses implementations,
  265. it varied depending on whether the operating system's im-
  266. plementation of handled signal receipt interrupts a
  267. <STRONG><A HREF="read.2.html">read(2)</A></STRONG> call in progress or not, and also (in some imple-
  268. mentations) depending on whether an input timeout or non-
  269. blocking mode has been set.
  270. Programmers concerned about portability should be prepared
  271. for either of two cases: (a) signal receipt does not in-
  272. terrupt <STRONG>getch</STRONG>; (b) signal receipt interrupts <STRONG>getch</STRONG> and
  273. causes it to return ERR with <STRONG>errno</STRONG> set to <STRONG>EINTR</STRONG>. Under
  274. the <STRONG>ncurses</STRONG> implementation, handled signals never inter-
  275. rupt <STRONG>getch</STRONG>.
  276. The <STRONG>has_key</STRONG> function is unique to <STRONG>ncurses</STRONG>. We recommend
  277. that any code using it be conditionalized on the <STRONG>NCURS-</STRONG>
  278. <STRONG>ES_VERSION</STRONG> feature macro.
  279. </PRE>
  280. <H2>SEE ALSO</H2><PRE>
  281. <STRONG><A HREF="ncurses.3x.html">curses(3x)</A></STRONG>, <STRONG><A HREF="curs_inopts.3x.html">curs_inopts(3x)</A></STRONG>, <STRONG><A HREF="curs_mouse.3x.html">curs_mouse(3x)</A></STRONG>,
  282. <STRONG><A HREF="curs_move.3x.html">curs_move(3x)</A></STRONG>, <STRONG><A HREF="curs_refresh.3x.html">curs_refresh(3x)</A></STRONG>, <STRONG><A HREF="resizeterm.3x.html">resizeterm(3x)</A></STRONG>.
  283. Comparable functions in the wide-character (ncursesw) li-
  284. brary are described in <STRONG><A HREF="curs_get_wch.3x.html">curs_get_wch(3x)</A></STRONG>.
  285. <STRONG><A HREF="curs_getch.3x.html">curs_getch(3x)</A></STRONG>
  286. </PRE>
  287. <HR>
  288. <ADDRESS>
  289. Man(1) output converted with
  290. <a href="http://www.oac.uci.edu/indiv/ehood/man2html.html">man2html</a>
  291. </ADDRESS>
  292. </BODY>
  293. </HTML>