Ignore:
Timestamp:
Jan 13, 2017, 3:21:12 PM (8 years ago)
Author:
Silvan Scherrer
Message:

ncurses: import vendor version 5.9

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified ncurses/vendor/current/doc/html/man/curs_util.3x.html

    r85 r1910  
    22<!--
    33  ****************************************************************************
    4   * Copyright (c) 1998-2007,2008 Free Software Foundation, Inc.              *
     4  * Copyright (c) 1998-2008,2010 Free Software Foundation, Inc.              *
    55  *                                                                          *
    66  * Permission is hereby granted, free of charge, to any person obtaining a  *
     
    2828  * authorization.                                                           *
    2929  ****************************************************************************
    30   * @Id: curs_util.3x,v 1.26 2008/10/11 20:32:56 tom Exp @
     30  * @Id: curs_util.3x,v 1.32 2010/12/04 18:38:55 tom Exp @
    3131-->
    3232<HTML>
     
    7777       tation.  Printing characters are  displayed  as  is.   The
    7878       corresponding  <STRONG>wunctrl</STRONG>  returns a printable representation
    79        of a wide-character.
     79       of a wide character.
    8080
    8181       The <STRONG>keyname</STRONG> routine returns a character string correspond-
    8282       ing to the key <EM>c</EM>:
    8383
    84           -  Printable  characters  are  displayed as themselves,
    85              e.g., a one-character string containing the key.
    86 
    87           -  Control characters are displayed in the <STRONG>^</STRONG><EM>X</EM> notation.
    88 
    89           -  DEL (character 127) is displayed as <STRONG>^?</STRONG>.
    90 
    91           -  Values  above 128 are either meta characters (if the
    92              screen has not been initialized, or if <STRONG>meta</STRONG> has been
    93              called  with a TRUE parameter), shown in the <STRONG>M-</STRONG><EM>X</EM> no-
    94              tation, or are displayed as themselves.  In the lat-
    95              ter case, the values may not be printable; this fol-
    96              lows the X/Open specification.
    97 
    98           -  Values above 256 may be the names of  the  names  of
    99              function keys.
    100 
    101           -  Otherwise  (if  there  is no corresponding name) the
    102              function returns null, to denote an  error.   X/Open
    103              also lists an "UNKNOWN KEY" return value, which some
    104              implementations return rather than null.
     84          <STRONG>o</STRONG>   Printable  characters  are displayed as themselves,
     85              e.g., a one-character string containing the key.
     86
     87          <STRONG>o</STRONG>   Control characters are displayed in  the  <STRONG>^</STRONG><EM>X</EM>  nota-
     88              tion.
     89
     90          <STRONG>o</STRONG>   DEL (character 127) is displayed as <STRONG>^?</STRONG>.
     91
     92          <STRONG>o</STRONG>   Values above 128 are either meta characters (if the
     93              screen has not been initialized,  or  if  <STRONG>meta</STRONG>  has
     94              been  called  with  a TRUE parameter), shown in the
     95              <STRONG>M-</STRONG><EM>X</EM> notation, or are displayed as  themselves.   In
     96              the  latter  case, the values may not be printable;
     97              this follows the X/Open specification.
     98
     99          <STRONG>o</STRONG>   Values above 256 may be the names of the  names  of
     100              function keys.
     101
     102          <STRONG>o</STRONG>   Otherwise  (if  there is no corresponding name) the
     103              function returns null, to denote an error.   X/Open
     104              also  lists  an  "UNKNOWN  KEY" return value, which
     105              some implementations return rather than null.
    105106
    106107       The corresponding <STRONG>key_name</STRONG> returns a character string cor-
     
    164165       plementation
    165166
    166               <STRONG>flushinp</STRONG>
    167                    returns  an error if the terminal was not ini-
    168                    tialized.
    169 
    170               <STRONG>putwin</STRONG>
    171                    returns an  error  if  the  associated  <STRONG>fwrite</STRONG>
    172                    calls return an error.
     167          <STRONG>flushinp</STRONG>
     168               returns  an error if the terminal was not initial-
     169               ized.
     170
     171          <STRONG>meta</STRONG> returns an error if the terminal was not  initial-
     172               ized.
     173
     174          <STRONG>putwin</STRONG>
     175               returns  an  error  if the associated <STRONG>fwrite</STRONG> calls
     176               return an error.
    173177
    174178
    175179</PRE>
    176180<H2>PORTABILITY</H2><PRE>
    177        The  XSI  Curses  standard,  Issue 4 describes these func-
    178        tions.  It states that <STRONG>unctrl</STRONG> and <STRONG>wunctrl</STRONG>  will  return a
    179        null  pointer if unsuccessful, but does not define any er-
     181       The XSI Curses standard, Issue  4  describes  these func-
     182       tions.   It  states  that <STRONG>unctrl</STRONG> and <STRONG>wunctrl</STRONG> will return a
     183       null pointer if unsuccessful, but does not define any er-
    180184       ror conditions.  This implementation checks for three cas-
    181185       es:
    182186
    183               -    the  parameter is a 7-bit US-ASCII code.  This
    184                    is the case that X/Open Curses documented.
    185 
    186               -    the parameter is in the range 128-159, i.e., a
    187                    C1  control  code.   If  <STRONG>use_legacy_coding</STRONG> has
    188                    been called with a <STRONG>2</STRONG> parameter, <STRONG>unctrl</STRONG> returns
    189                    the  parameter,  i.e.,  a one-character string
    190                    with the parameter  as  the  first  character.
    191                    Otherwise,  it  returns  ``~@'', ``~A'', etc.,
    192                    analogous to ``^@'', ``^A'', C0 controls.
    193 
    194                    X/Open Curses does not document whether <STRONG>unctrl</STRONG>
    195                    can  be  called  before  initializing  curses.
    196                    This implementation permits that, and  returns
    197                    the ``~@'', etc., values in that case.
    198 
    199               -    parameter  values  outside the 0 to 255 range.
    200                    <STRONG>unctrl</STRONG> returns a null pointer.
     187          <STRONG>o</STRONG>   the parameter is a 7-bit US-ASCII  code.   This  is
     188              the case that X/Open Curses documented.
     189
     190          <STRONG>o</STRONG>   the  parameter  is in the range 128-159, i.e., a C1
     191              control code.  If <STRONG>use_legacy_coding</STRONG> has been called
     192              with  a  <STRONG>2</STRONG> parameter, <STRONG>unctrl</STRONG> returns the parameter,
     193              i.e., a one-character string with the parameter  as
     194              the first character.  Otherwise, it returns ``~@'',
     195              ``~A'', etc., analogous to ``^@'', ``^A'', C0  con-
     196              trols.
     197
     198              X/Open  Curses does not document whether <STRONG>unctrl</STRONG> can
     199              be called before initializing curses.  This  imple-
     200              mentation  permits  that,  and  returns the ``~@'',
     201              etc., values in that case.
     202
     203          <STRONG>o</STRONG>   parameter values outside the 0 to 255 range.   <STRONG>unc-</STRONG>
     204              <STRONG>trl</STRONG> returns a null pointer.
    201205
    202206       The SVr4 documentation describes the action of <STRONG>filter</STRONG> only
    203        in  the  vaguest  terms.   The description here is adapted
    204        from the XSI Curses standard (which erroneously  fails to
     207       in the vaguest terms.  The  description  here  is adapted
     208       from  the  XSI Curses standard (which erroneously fails to
    205209       describe the disabling of <STRONG>cuu</STRONG>).
    206210
    207        The  strings returned by <STRONG>unctrl</STRONG> in this implementation are
    208        determined at compile time, showing C1 controls  from the
    209        upper-128  codes with a `~' prefix rather than `^'.  Other
    210        implementations have different conventions.  For example,
    211        they  may  show  both sets of control characters with `^',
    212        and strip the parameter to 7 bits.  Or they may ignore C1
    213        controls  and  treat  all of the upper-128 codes as print-
     211       The strings returned by <STRONG>unctrl</STRONG> in this implementation are
     212       determined  at  compile time, showing C1 controls from the
     213       upper-128 codes with a `~' prefix rather than `^'.   Other
     214       implementations  have different conventions.  For example,
     215       they may show both sets of control  characters  with `^',
     216       and  strip the parameter to 7 bits.  Or they may ignore C1
     217       controls and treat all of the upper-128  codes  as print-
    214218       able.  This implementation uses 8 bits but does not modify
    215219       the string to reflect locale.  The <STRONG>use_legacy_coding</STRONG> func-
    216220       tion allows the caller to change the output of <STRONG>unctrl</STRONG>.
    217221
    218        Likewise, the <STRONG>meta</STRONG> function allows the  caller  to change
    219        the  output of <STRONG>keyname</STRONG>, i.e., it determines whether to use
    220        the `M-' prefix for ``meta'' keys (codes in the range 128
     222       Likewise,  the  <STRONG>meta</STRONG>  function allows the caller to change
     223       the output of <STRONG>keyname</STRONG>, i.e., it determines whether to use
     224       the  `M-' prefix for ``meta'' keys (codes in the range 128
    221225       to 255).  Both <STRONG>use_legacy_coding</STRONG> and <STRONG>meta</STRONG> succeed only af-
    222        ter curses is initialized.  X/Open Curses does  not docu-
    223        ment  the  treatment  of  codes 128 to 159.  When treating
     226       ter  curses  is initialized.  X/Open Curses does not docu-
     227       ment the treatment of codes 128  to  159.   When treating
    224228       them as ``meta'' keys (or if <STRONG>keyname</STRONG> is called before ini-
    225        tializing  curses),  this  implementation  returns strings
     229       tializing curses),  this  implementation  returns strings
    226230       ``M-^@'', ``M-^A'', etc.
    227231
    228        The <STRONG>keyname</STRONG> function may return the names of user-defined
    229        string  capabilities which are defined in the terminfo en-
    230        try via the <STRONG>-x</STRONG> option of <STRONG>tic</STRONG>.  This  implementation auto-
    231        matically  assigns  at  run-time  keycodes to user-defined
    232        strings which begin  with  "k".   The  keycodes  start at
    233        KEY_MAX,  but  are not guaranteed to be the same value for
    234        different runs because user-defined codes are merged from
    235        all  terminal  descriptions  which  have been loaded.  The
    236        <STRONG>use_extended_names</STRONG> function controls whether this data is
    237        loaded  when  the  terminal description is read by the li-
     232       The  <STRONG>keyname</STRONG> function may return the names of user-defined
     233       string capabilities which are defined in the terminfo en-
     234       try  via  the <STRONG>-x</STRONG> option of <STRONG>tic</STRONG>.  This implementation auto-
     235       matically assigns at  run-time  keycodes  to user-defined
     236       strings  which  begin  with  "k".   The  keycodes start at
     237       KEY_MAX, but are not guaranteed to be the same  value for
     238       different  runs because user-defined codes are merged from
     239       all terminal descriptions which  have  been  loaded.   The
     240       <STRONG>use_extended_names</STRONG>  function controls whether this data is
     241       loaded when the terminal description is read  by  the li-
    238242       brary.
    239243
    240        The <STRONG>nofilter</STRONG> routine is specific to ncurses.  It  was not
    241        supported  on  Version 7, BSD or System V implementations.
    242        It is recommended that any code depending on  ncurses ex-
     244       The  <STRONG>nofilter</STRONG>  routine is specific to ncurses.  It was not
     245       supported on Version 7, BSD or System  V implementations.
     246       It  is  recommended that any code depending on ncurses ex-
    243247       tensions be conditioned using NCURSES_VERSION.
    244248
     
    247251<H2>SEE ALSO</H2><PRE>
    248252       <STRONG><A HREF="legacy_coding.3x.html">legacy_coding(3x)</A></STRONG>, <STRONG><A HREF="ncurses.3x.html">curses(3x)</A></STRONG>, <STRONG><A HREF="curs_initscr.3x.html">curs_initscr(3x)</A></STRONG>, <STRONG>curs_ker-</STRONG>
    249        <STRONG><A HREF="curs_kernel.3x.html">nel(3x)</A></STRONG>, <STRONG><A HREF="curs_scr_dump.3x.html">curs_scr_dump(3x)</A></STRONG>, <STRONG><A HREF="legacy_coding.3x.html">legacy_coding(3x)</A></STRONG>.
     253       <STRONG><A HREF="curs_kernel.3x.html">nel(3x)</A></STRONG>,   <STRONG><A HREF="curs_scr_dump.3x.html">curs_scr_dump(3x)</A></STRONG>,   <STRONG><A HREF="curs_variables.3x.html">curs_variables(3x)</A></STRONG>,  <STRONG>lega-</STRONG>
     254       <STRONG><A HREF="legacy_coding.3x.html">cy_coding(3x)</A></STRONG>.
    250255
    251256
Note: See TracChangeset for help on using the changeset viewer.