PageRenderTime 63ms CodeModel.GetById 30ms RepoModel.GetById 0ms app.codeStats 0ms

/release/src/router/libncurses/doc/html/man/curs_get_wch.3x.html

https://gitlab.com/envieidoc/tomato
HTML | 155 lines | 97 code | 27 blank | 31 comment | 0 complexity | b448334bf7c6cc0d69f008d5b5f80cda MD5 | raw file
  1. <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
  2. <!--
  3. ****************************************************************************
  4. * Copyright (c) 2002-2006,2010 Free Software Foundation, Inc. *
  5. * *
  6. * Permission is hereby granted, free of charge, to any person obtaining a *
  7. * copy of this software and associated documentation files (the *
  8. * "Software"), to deal in the Software without restriction, including *
  9. * without limitation the rights to use, copy, modify, merge, publish, *
  10. * distribute, distribute with modifications, sublicense, and/or sell *
  11. * copies of the Software, and to permit persons to whom the Software is *
  12. * furnished to do so, subject to the following conditions: *
  13. * *
  14. * The above copyright notice and this permission notice shall be included *
  15. * in all copies or substantial portions of the Software. *
  16. * *
  17. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS *
  18. * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF *
  19. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. *
  20. * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, *
  21. * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR *
  22. * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR *
  23. * THE USE OR OTHER DEALINGS IN THE SOFTWARE. *
  24. * *
  25. * Except as contained in this notice, the name(s) of the above copyright *
  26. * holders shall not be used in advertising or otherwise to promote the *
  27. * sale, use or other dealings in this Software without prior written *
  28. * authorization. *
  29. ****************************************************************************
  30. * @Id: curs_get_wch.3x,v 1.7 2010/08/14 23:31:42 tom Exp @
  31. -->
  32. <HTML>
  33. <HEAD>
  34. <TITLE>curs_get_wch 3x</TITLE>
  35. <link rev=made href="mailto:bug-ncurses@gnu.org">
  36. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
  37. </HEAD>
  38. <BODY>
  39. <H1>curs_get_wch 3x</H1>
  40. <HR>
  41. <PRE>
  42. <!-- Manpage converted by man2html 3.0.1 -->
  43. <STRONG><A HREF="curs_get_wch.3x.html">curs_get_wch(3x)</A></STRONG> <STRONG><A HREF="curs_get_wch.3x.html">curs_get_wch(3x)</A></STRONG>
  44. </PRE>
  45. <H2>NAME</H2><PRE>
  46. <STRONG>get_wch</STRONG>, <STRONG>wget_wch</STRONG>, <STRONG>mvget_wch</STRONG>, <STRONG>mvwget_wch</STRONG>, <STRONG>unget_wch</STRONG> - get
  47. (or push back) a wide character from curses terminal key-
  48. board
  49. </PRE>
  50. <H2>SYNOPSIS</H2><PRE>
  51. <STRONG>#include</STRONG> <STRONG>&lt;curses.h&gt;</STRONG>
  52. <STRONG>int</STRONG> <STRONG>get_wch(wint_t</STRONG> <STRONG>*</STRONG><EM>wch</EM><STRONG>);</STRONG>
  53. <STRONG>int</STRONG> <STRONG>wget_wch(WINDOW</STRONG> <STRONG>*</STRONG><EM>win</EM><STRONG>,</STRONG> <STRONG>wint_t</STRONG> <STRONG>*</STRONG><EM>wch</EM><STRONG>);</STRONG>
  54. <STRONG>int</STRONG> <STRONG>mvget_wch(int</STRONG> <EM>y</EM><STRONG>,</STRONG> <STRONG>int</STRONG> <EM>x</EM><STRONG>,</STRONG> <STRONG>wint_t</STRONG> <STRONG>*</STRONG><EM>wch</EM><STRONG>);</STRONG>
  55. <STRONG>int</STRONG> <STRONG>mvwget_wch(WINDOW</STRONG> <STRONG>*</STRONG><EM>win</EM><STRONG>,</STRONG> <STRONG>int</STRONG> <EM>y</EM><STRONG>,</STRONG> <STRONG>int</STRONG> <EM>x</EM><STRONG>,</STRONG> <STRONG>wint_t</STRONG> <STRONG>*</STRONG><EM>wch</EM><STRONG>);</STRONG>
  56. <STRONG>int</STRONG> <STRONG>unget_wch(const</STRONG> <STRONG>wchar_t</STRONG> <EM>wch</EM><STRONG>);</STRONG>
  57. </PRE>
  58. <H2>DESCRIPTION</H2><PRE>
  59. The <STRONG>get_wch</STRONG>, <STRONG>wget_wch</STRONG>, <STRONG>mvget_wch</STRONG>, and <STRONG>mvwget_wch</STRONG> functions
  60. read a character from the terminal associated with the
  61. current or specified window. In no-delay mode, if no
  62. input is waiting, the value <STRONG>ERR</STRONG> is returned. In delay
  63. mode, the program waits until the system passes text
  64. through to the program. Depending on the setting of
  65. <STRONG>cbreak</STRONG>, this is after one character (cbreak mode), or
  66. after the first newline (nocbreak mode). In half-delay
  67. mode, the program waits until the user types a character
  68. or the specified timeout interval has elapsed.
  69. Unless <STRONG>noecho</STRONG> has been set, these routines echo the char-
  70. acter into the designated window.
  71. If the window is not a pad and has been moved or modified
  72. since the last call to <STRONG>wrefresh</STRONG>, <STRONG>wrefresh</STRONG> will be called
  73. before another character is read.
  74. If <STRONG>keypad</STRONG> is enabled, these functions respond to the
  75. pressing of a function key by setting the object pointed
  76. to by <EM>wch</EM> to the corresponding <STRONG>KEY_</STRONG> value defined in
  77. <STRONG>&lt;curses.h&gt;</STRONG> and returning <STRONG>KEY_CODE_YES</STRONG>. If a character
  78. (such as escape) that could be the beginning of a function
  79. key is received, curses sets a timer. If the remainder of
  80. the sequence does arrive within the designated time,
  81. curses passes through the character; otherwise, curses
  82. returns the function key value. For this reason, many
  83. terminals experience a delay between the time a user
  84. presses the escape key and the time the escape is returned
  85. to the program.
  86. The <STRONG>unget_wch</STRONG> function pushes the wide character <EM>wch</EM> back
  87. onto the head of the input queue, so the wide character is
  88. returned by the next call to <STRONG>get_wch</STRONG>. The pushback of one
  89. character is guaranteed. If the program calls <STRONG>unget_wch</STRONG>
  90. too many times without an intervening call to <STRONG>get_wch</STRONG>, the
  91. operation may fail.
  92. </PRE>
  93. <H2>NOTES</H2><PRE>
  94. The header file <STRONG>&lt;curses.h&gt;</STRONG> automatically includes the
  95. header file <STRONG>&lt;stdio.h&gt;</STRONG>.
  96. Applications should not define the escape key by itself as
  97. a single-character function.
  98. When using <STRONG>get_wch</STRONG>, <STRONG>wget_wch</STRONG>, <STRONG>mvget_wch</STRONG>, or <STRONG>mvwget_wch</STRONG>,
  99. applications should not use <STRONG>nocbreak</STRONG> mode and <STRONG>echo</STRONG> mode at
  100. the same time. Depending on the state of the tty driver
  101. when each character is typed, the program may produce
  102. undesirable results.
  103. All functions except <STRONG>wget_wch</STRONG> and <STRONG>unget_wch</STRONG> may be macros.
  104. </PRE>
  105. <H2>RETURN VALUES</H2><PRE>
  106. When <STRONG>get_wch</STRONG>, <STRONG>wget_wch</STRONG>, <STRONG>mvget_wch</STRONG>, and <STRONG>mvwget_wch</STRONG> func-
  107. tions successfully report the pressing of a function key,
  108. they return <STRONG>KEY_CODE_YES</STRONG>. When they successfully report a
  109. wide character, they return <STRONG>OK</STRONG>. Otherwise, they return
  110. <STRONG>ERR</STRONG>.
  111. Upon successful completion, <STRONG>unget_wch</STRONG> returns <STRONG>OK</STRONG>. Other-
  112. wise, the function returns <STRONG>ERR</STRONG>.
  113. Functions with a "mv" prefix first perform a cursor move-
  114. ment using <STRONG>wmove</STRONG>, and return an error if the position is
  115. outside the window, or if the window pointer is null.
  116. </PRE>
  117. <H2>SEE ALSO</H2><PRE>
  118. <STRONG><A HREF="ncurses.3x.html">curses(3x)</A></STRONG>, <STRONG><A HREF="curs_getch.3x.html">curs_getch(3x)</A></STRONG>, <STRONG><A HREF="curs_ins_wch.3x.html">curs_ins_wch(3x)</A></STRONG>,
  119. <STRONG><A HREF="curs_inopts.3x.html">curs_inopts(3x)</A></STRONG>, <STRONG><A HREF="curs_move.3x.html">curs_move(3x)</A></STRONG>, <STRONG><A HREF="curs_refresh.3x.html">curs_refresh(3x)</A></STRONG>
  120. <STRONG><A HREF="curs_get_wch.3x.html">curs_get_wch(3x)</A></STRONG>
  121. </PRE>
  122. <HR>
  123. <ADDRESS>
  124. Man(1) output converted with
  125. <a href="http://www.oac.uci.edu/indiv/ehood/man2html.html">man2html</a>
  126. </ADDRESS>
  127. </BODY>
  128. </HTML>