diff options
author | Alex Gronenwoud <alex@linuxfromscratch.org> | 2003-09-24 22:29:16 +0000 |
---|---|---|
committer | Alex Gronenwoud <alex@linuxfromscratch.org> | 2003-09-24 22:29:16 +0000 |
commit | 978d0bffc413b67ead9db2d2816b916cf3d502ca (patch) | |
tree | 785d8d08754099e55a26599f8d5ccce81b456cb4 /appendixa/ncurses-desc.xml | |
parent | aa497295b352d45ebe2e9d1eaa4a46c49e2cf521 (diff) |
Changing the style of the command descriptions in appendix A.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@2879 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'appendixa/ncurses-desc.xml')
-rw-r--r-- | appendixa/ncurses-desc.xml | 95 |
1 files changed, 37 insertions, 58 deletions
diff --git a/appendixa/ncurses-desc.xml b/appendixa/ncurses-desc.xml index 3712b71f1..aa970d06a 100644 --- a/appendixa/ncurses-desc.xml +++ b/appendixa/ncurses-desc.xml @@ -6,73 +6,52 @@ <sect3><title>Program file descriptions</title> -<sect4><title>captoinfo</title> -<para>captoinfo converts a termcap description into a terminfo -description.</para></sect4> - -<sect4><title>clear</title> -<para>clear clears the screen if this is possible. It looks in -the environment for the terminal type and then in the terminfo database -to figure out how to clear the screen.</para></sect4> - -<sect4><title>infocmp</title> -<para>infocmp can be used to compare a binary terminfo entry with -other terminfo entries, rewrite a terminfo description to -take advantage of the use= terminfo field, or print out a -terminfo description from the binary file (term) in a variety of -formats (the opposite of what tic does).</para></sect4> - -<sect4><title>infotocap</title> -<para>info to cap converts a terminfo description into a termcap -description.</para></sect4> - -<sect4><title>reset</title> -<para>reset sets cooked and echo modes, turns off cbreak and raw modes, -turns on new-line translation and resets any unset special characters to -their default values before doing terminal initialization the same way -as tset.</para></sect4> - -<sect4><title>tack</title> -<para>tack is the terminfo action checker.</para></sect4> - -<sect4><title>tic</title> -<para>tic is the terminfo entry-description compiler. The program translates a -terminfo file from source format into the binary format for use with the -ncurses library routines. Terminfo files contain information about the -capabilities of a terminal.</para></sect4> - -<sect4><title>toe</title> -<para>toe lists all available terminal types by primary name with -descriptions.</para></sect4> - -<sect4><title>tput</title> -<para>tput uses the terminfo database to make the values of -terminal-dependent capabilities and information available to the shell, -to initialize or reset the terminal, or return the long name of the -requested terminal type.</para></sect4> - -<sect4><title>tset</title> -<para>tset initializes terminals so they can be used, but it's not -widely used anymore. It's provided for 4.4BSD compatibility.</para></sect4> +<para><command>captoinfo</command> converts a termcap description into a +terminfo description.</para> + +<para><command>clear</command> clears the screen, if this is possible.</para> + +<para><command>infocmp</command> compares or prints out terminfo +descriptions.</para> + +<para><command>infotocap</command> converts a terminfo description into +a termcap description.</para> + +<para><command>reset</command> reinitializes a terminal to its default +values.</para> + +<para><command>tack</command> is the terminfo action checker. It is mainly +used to test the correctness of an entry in the terminfo database.</para> + +<para><command>tic</command> is the terminfo entry-description compiler. +It translates a terminfo file from source format into the binary format needed +for the ncurses library routines. A terminfo file contains information on the +capabilities of a certain terminal.</para> + +<para><command>toe</command> lists all available terminal types, for each +giving its primary name and its description.</para> + +<para><command>tput</command> makes the values of terminal-dependent +capabilities available to the shell. It can also be used to reset or initialize +a terminal, or report its long name.</para> + +<para><command>tset</command> can be used to initialize terminals.</para> </sect3> <sect3><title>Library file descriptions</title> -<sect4><title>libcurses, libncurses++, libncurses, libncurses_g</title> -<para>These libraries are the base of the system and are used to display -text (often in a fancy way) on the screen. An example where ncurses is used -is in the kernel's <quote>make menuconfig</quote> process.</para></sect4> +<para><command>libncurses*</command> contain functions to display text in +many complicated ways on a terminal screen. A good example of the use of these +functions is the menu displayed during the kernel's make menuconfig.</para> -<sect4><title>libform, libform_g</title> -<para>libform is used to implement forms in ncurses.</para></sect4> +<para><command>libform*</command> contain functions to implement forms.</para> -<sect4><title>libmenu, libmenu_g</title> -<para>libmenu is used to implement menus in ncurses.</para></sect4> +<para><command>libmenu*</command> contain functions to implement menus.</para> -<sect4><title>libpanel, libpanel_g</title> -<para>libpanel is used to implement panels in ncurses.</para></sect4> +<para><command>libpanel*</command> contain functions to implement panels.</para> </sect3> </sect2> + |