X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=doc%2Fhtml%2Fman%2Fcurs_util.3x.html;fp=doc%2Fhtml%2Fman%2Fcurs_util.3x.html;h=00b13c257c8f1e7eaac4fc2f9feb35c66bd6955b;hp=8bbb2121786c815782a6d91731641562e298de20;hb=db5f7f4f146a91ba8ec7f1df8e9d7f9d2d7c74fd;hpb=fe7c48d7d5115212f09b4ec0d84b189a76953f0d diff --git a/doc/html/man/curs_util.3x.html b/doc/html/man/curs_util.3x.html index 8bbb2121..00b13c25 100644 --- a/doc/html/man/curs_util.3x.html +++ b/doc/html/man/curs_util.3x.html @@ -27,7 +27,7 @@ * sale, use or other dealings in this Software without prior written * * authorization. * **************************************************************************** - * @Id: curs_util.3x,v 1.42 2015/04/26 14:27:03 Sven.Joachim Exp @ + * @Id: curs_util.3x,v 1.43 2015/06/06 23:36:27 tom Exp @ --> @@ -73,6 +73,9 @@

DESCRIPTION

+
+
+

unctrl

        The  unctrl  routine returns a character string which is a
        printable representation of the character c, ignoring  at-
        tributes.   Control characters are displayed in the ^X no-
@@ -80,6 +83,9 @@
        corresponding  wunctrl  returns a printable representation
        of a wide character.
 
+
+
+

keyname/key_name

        The keyname routine returns a character string correspond-
        ing to the key c:
 
@@ -111,6 +117,9 @@
        returns null where the former would display a meta charac-
        ter.
 
+
+
+

filter/nofilter

        The filter routine, if used, must be called before initscr
        or newterm are called.  The effect is that,  during  those
        calls,  LINES  is  set  to 1; the capabilities clear, cup,
@@ -123,6 +132,9 @@
        $TERM.  The limitation arises because the  filter  routine
        modifies the in-memory copy of the terminal information.
 
+
+
+

use_env

        The  use_env  routine,  if  used,  should be called before
        initscr or newterm are called (because those  compute  the
        screen size).  It modifies the way ncurses treats environ-
@@ -149,6 +161,9 @@
            SIGWINCH, unless overridden by the  LINES  or  COLUMNS
            environment variables,
 
+
+
+

use_tioctl

        The  use_tioctl  routine, if used, should be called before
        initscr or newterm are called (because those  compute  the
        screen  size).  After use_tioctl is called with TRUE as an
@@ -171,20 +186,24 @@
 
      use_env   use_tioctl   Summary
      ----------------------------------------------------------------
+
+
+
      TRUE      FALSE        This  is  the default behavior.  ncurses
                             uses operating system calls unless over-
                             ridden by $LINES or $COLUMNS environment
                             variables.
      TRUE      TRUE         ncurses  updates  $LINES  and   $COLUMNS
                             based on operating system calls.
-
-
      FALSE     TRUE         ncurses ignores $LINES and $COLUMNS, us-
                             es  operating  system  calls  to  obtain
                             size.
      FALSE     FALSE        ncurses  relies on the terminal database
                             to determine size.
 
+
+
+

putwin/getwin

        The putwin routine writes all data associated with  window
        (or  pad)  win  into the file to which filep points.  This
        information can be later retrieved using the getwin  func-
@@ -210,12 +229,18 @@
            been created in the application using init_pair,  they
            will not be colored when the window is refreshed.
 
+
+
+

delay_output

        The  delay_output  routine inserts an ms millisecond pause
        in output.  This routine should not  be  used  extensively
        because  padding  characters  are  used  rather than a CPU
        pause.  If no padding character is  specified,  this  uses
        napms to perform the delay.
 
+
+
+

flushinp

        The  flushinp  routine  throws away any typeahead that has
        been typed by the user and has not yet been  read  by  the
        program.
@@ -376,7 +401,18 @@