home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 13 / AACD13.ISO / AACD / Programming / ncurses / ncurses-devbin.readme < prev    next >
Text File  |  2000-08-31  |  6KB  |  136 lines

  1. Short:    GNU 'new curses' library. V1.9.9e
  2. Author:   Pavel Curtis
  3. Version:  1.9.9e
  4. Type:     dev/ade
  5. Origin:   Amiga Development Environment, ftp.ninemoons.com:pub/ade
  6. Requires: M and AT&T extension
  7. Date:     or termcap file is accessible
  8.  
  9.    The ncurses (new curses) library is a freeware emulation of System V
  10.    Release 4.0 curses. It uses terminfo format, supports pads and color
  11.    and multiple highlights and forms characters and function-key mapping,
  12.    and has all the other SYSV-curses enhancements over BSD curses.
  13.    
  14.    In mid-June 1995, the maintainer of 4.4BSD curses declared that he
  15.    considered 4.4BSD curses obsolete, and is encouraging the keepers of
  16.    Unix releases such as BSD/OS, freeBSD and netBSD to switch over to
  17.    ncurses.
  18.    
  19.    The ncurses code was developed under Linux. It should port easily to
  20.    any ANSI/POSIX-conforming UNIX. It has even been ported to OS/2 Warp!
  21.    
  22.    The distribution includes the library and support utilities, including
  23.    a terminfo compiler tic(1), a decompiler infocmp(1), clear(1),
  24.    tput(1), tset(1), and a termcap conversion tool captoinfo(1). Full
  25.    manual pages are provided for the library and tools.
  26.    
  27.    The ncurses distribution is available via anonymous FTP at:
  28.    ftp://ftp.netcom.com/pub/zm/zmbenhal/ncurses. It is also carried on
  29.    the GNU distribution site at ftp://prep.ai.mit.edu/pub/gnu.
  30.    
  31.                               FEATURES OF NCURSES
  32.                                        
  33.    The ncurses package is fully compatible with SVr4 curses:
  34.    
  35.      * All 257 of the SVr4 calls have been implemented (and are
  36.        documented).
  37.        
  38.      * Full support for SVr4 curses features including keyboard mapping,
  39.        color, forms-drawing with ACS characters, and automatic
  40.        recognition of keypad and function keys.
  41.        
  42.      * An emulation of the System V Release 4 panels library, supporting
  43.        a stack of windows with backing store, is included.
  44.        
  45.      * An emulation of the System V Release 4 menus library, supporting a
  46.        uniform but flexible interface for menu programming, is included.
  47.        
  48.      * An emulation of the System V Release 4 form library, supporting
  49.        data collection through on-screen forms, is included.
  50.        
  51.      * Binary terminfo entries generated by the ncurses tic(1)
  52.        implementation are bit-for-bit-compatible with the entry format
  53.        SVr4 curses uses.
  54.        
  55.      * The utilities have options to allow you to filter terminfo entries
  56.        for use with less capable _curses_/_terminfo_ versions such as the
  57.        HP/UX and AIX ports.
  58.        
  59.    The ncurses package also has many useful extensions over SVr4:
  60.    
  61.      * The API is 8-bit clean and base-level conformant with the X/OPEN
  62.        curses specification, XSI Curses (that is, it implements all BASE
  63.        level features, but not all EXTENDED features). Most
  64.        EXTENDED-level features not directly concerned with wide-character
  65.        support are implemented, including many function calls not
  66.        supported under SVr4 curses (but portability of all calls is
  67.        documented so you can use the SVr4 subset only).
  68.        
  69.      * Unlike SVr4 curses, ncurses can write to the rightmost-bottommost
  70.        corner of the screen if your terminal has an insert-character
  71.        capability.
  72.        
  73.      * (PC-clone boxes only) Support for access to the IBM PC ROM
  74.        characters 0-32 through the highlight A_ALTCHARSET.
  75.        
  76.      * Support for mouse event reporting under xterm.
  77.        
  78.      * The function wresize() allows you to resize windows, preserving
  79.        their data.
  80.      * Better cursor-movement optimization. The package now features a
  81.        cursor-local-movement computation more efficient than either BSD's
  82.        or System V's.
  83.        
  84.      * Super hardware scrolling support. The screen-update code
  85.        incorporates a novel, simple, and cheap algorithm that enables it
  86.        to make optimal use of hardware scrolling, line-insertion, and
  87.        line-deletion for screen-line movements. This algorithm is more
  88.        powerful than the 4.4BSD curses quickch() routine.
  89.        
  90.      * It is possible to generate the library with a list of pre-loaded
  91.        fallback entries linked to it so that it can serve those terminal
  92.        types even when no terminfo tree or termcap file is accessible
  93.        (this may be useful for support of screen-oriented programs that
  94. 1.9.9e
  95.        
  96.      * The tic(1)/captoinfo utility provided with ncurses has the ability
  97.        to translate many termcaps from the XENIX, IBM and AT&T extension
  98.        sets.
  99.        
  100.      * A BSD-like tset(1) utility is provided.
  101.        
  102.      * The ncurses library and utilities will automatically read terminfo
  103.        entries from $HOME/.terminfo if it exists, and compile to that
  104.        directory if it exists and the user has no write access to the
  105.        system directory. This feature makes it easier for users to have
  106.        personal terminfo entries without giving up access to the system
  107.        terminfo directory.
  108.        
  109.      * In terminfo source files, use capabilities may refer not just to
  110.        other entries in the same source file (as in System V) but also to
  111.        compiled entries in either the system terminfo directory or the
  112.        user's $HOME/.terminfo directory.
  113.        
  114.      * A script (_capconvert_) is provided to help BSD users transition
  115.        from termcap to terminfo. It gathers the information in a TERMCAP
  116.        environment variable and/or a ~/.termcap local entries file and
  117.        converts it to an equivalent local terminfo tree under
  118.        $HOME/.terminfo.
  119.        
  120.      * Automatic fallback to the /etc/termcap file can be compiled in
  121.        when it is not possible to build a terminfo tree. This feature is
  122.        neither fast nor cheap, you don't want to use it unless you have
  123.        to, but it's there.
  124.        
  125.      * The table-of-entries utility _toe_ makes it easy for users to see
  126.        exactly what terminal types are available on the system.
  127.        
  128.      * The library meets the XSI requirement that every macro entry point
  129.        have a corresponding function which may be linked (and will be
  130.        prototype-checked) if the macro definition is disabled with
  131.        #undef.
  132.        
  133.      * An HTML "Introduction to Programming with NCURSES" document
  134.        provides a narrative introduction to the curses programming
  135.        interface.
  136.