X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=doc%2Fhtml%2Fman%2Fcurs_getch.3x.html;fp=doc%2Fhtml%2Fman%2Fcurs_getch.3x.html;h=eb1279f76c98df1ad94d49d52a85be778bb9eb50;hp=3af0cc77543de1c9e96a1c84bcba3f37adb18ba1;hb=32f9f5f12cd9159261f9db228461049e8c770404;hpb=c99e3eba2cce1c3bd7fa1b4a2eb4554e52ebe264 diff --git a/doc/html/man/curs_getch.3x.html b/doc/html/man/curs_getch.3x.html index 3af0cc77..eb1279f7 100644 --- a/doc/html/man/curs_getch.3x.html +++ b/doc/html/man/curs_getch.3x.html @@ -27,7 +27,7 @@ * sale, use or other dealings in this Software without prior written * * authorization. * **************************************************************************** - * @Id: curs_getch.3x,v 1.40 2015/04/11 10:23:49 tom Exp @ + * @Id: curs_getch.3x,v 1.41 2015/07/16 09:29:33 tom Exp @ --> @@ -66,6 +66,9 @@

DESCRIPTION

+
+
+

Reading characters

        The getch, wgetch, mvgetch and mvwgetch, routines  read  a
        character  from the window.  In no-delay mode, if no input
        is waiting, the value ERR is returned.  In delay mode, the
@@ -99,6 +102,9 @@
        fied since the last call to  wrefresh,  wrefresh  will  be
        called before another character is read.
 
+
+
+

Keypad mode

        If  keypad is TRUE, and a function key is pressed, the to-
        ken for that function key is returned instead of  the  raw
        characters.   Possible function keys are defined in <curs-
@@ -116,6 +122,9 @@
        experience a delay between the time a user presses the es-
        cape key and the escape is returned to the program.
 
+
+
+

Ungetting characters

        The ungetch routine places ch back onto the input queue to
        be returned by the next call to wgetch.  There is just one
        input queue for all windows.
@@ -177,10 +186,10 @@
             KEY_FIND        Find key
             KEY_HELP        Help key
             KEY_MARK        Mark key
+
             KEY_MESSAGE     Message key
             KEY_MOUSE       Mouse event read
             KEY_MOVE        Move key
-
             KEY_NEXT        Next object key
             KEY_OPEN        Open key
             KEY_OPTIONS     Options key
@@ -239,9 +248,9 @@
        and returns TRUE or FALSE according to whether the current
        terminal type recognizes a key with that value.  Note that
        a  few  values  do  not  correspond  to  a real key, e.g.,
-       KEY_RESIZE and KEY_MOUSE.  See resizeterm(3x) for more de-
-       tails  about  KEY_RESIZE, and curs_mouse(3x) for a discus-
-       sion of KEY_MOUSE.
+       KEY_RESIZE  and  KEY_MOUSE.   See  curs_initscr(3x)   and   re-
+       sizeterm(3x)   for  more  details  about  KEY_RESIZE,  and
+       curs_mouse(3x) for a discussion of KEY_MOUSE.
 
 
 
@@ -364,6 +373,9 @@
  • SYNOPSIS
  • DESCRIPTION