home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 2 / Geek_Gadgets_2_2352.bin / amigaos / dist / ncurses-1.9.9e-term-bin.lha.pi < prev    next >
Text File  |  1997-04-15  |  6KB  |  149 lines

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