-<!doctype linuxdoc system>
+<!DOCTYPE Article PUBLIC "-//Davenport//DTD DocBook V3.0//EN">
<article>
-<title>Writing Programs Using <tt/newt/
-<author>Erik Troan, <tt/ewt@redhat.com/
-<date>v0.30, 13 May 1998
+<artheader>
+<title>Writing Programs Using <literal remap="tt">newt</literal></title>
+<author>
+<firstname>Erik Troan, <ewt@redhat.com></firstname>
+</author>
+
+<pubdate>v0.30, 13 May 1998</pubdate>
+
<abstract>
-The <tt/newt/ windowing system is a terminal-based window and widget
+
+<para>
+The <literal remap="tt">newt</literal> windowing system is a terminal-based window and widget
library designed for writing applications with a simple, but user-friendly,
-interface. While <tt/newt/ is not intended to provide the rich feature
+interface. While <literal remap="tt">newt</literal> is not intended to provide the rich feature
set advanced applications may require, it has proven to be flexible enough
for a wide range of applications (most notably, Red Hat's installation
-process). This tutorial explains the design philospohy behind <tt/newt/ and
-how to use <tt/newt/ from your programs.
+process). This tutorial explains the design philospohy behind <literal remap="tt">newt</literal> and
+how to use <literal remap="tt">newt</literal> from your programs.
+</para>
+
</abstract>
+</artheader>
-<!-- Table of contents -->
-<toc>
-<!-- Begin the document -->
-<sect>Introduction
+<sect1><title>Introduction</title>
-<tt/Newt/ has a definite design philosophy behind it, and knowing that design
-makes it significantly easier to craft robust <tt/newt/ applications. This
-tutorial documents <tt/newt/ 0.30 --- older versions of <tt/newt/ had
+<para>
+<literal remap="tt">Newt</literal> has a definite design philosophy behind it, and knowing that design
+makes it significantly easier to craft robust <literal remap="tt">newt</literal> applications. This
+tutorial documents <literal remap="tt">newt</literal> 0.30 --- older versions of <literal remap="tt">newt</literal> had
annoying inconsistencies in it (which writing this tutorial pointed out),
which were removed while this tutorial was written. The latest version of
-<tt/newt/ is always available from <url
-url="ftp://ftp.redhat.com/pub/redhat/code/newt" name="ftp.redhat.com">.
+<literal remap="tt">newt</literal> is always available from <ulink url="ftp://ftp.redhat.com/pub/redhat/code/newt">ftp.redhat.com</ulink>.</para>
-<sect1>Background
+<sect2><title>Background</title>
-<p>
-<tt/Newt/ was originally designed for use in the install code for
+<para>
+<literal remap="tt">Newt</literal> was originally designed for use in the install code for
Red Hat Linux. As this install code runs in an environment with limited
-resources (most importantly limited filesystem space), <tt/newt/'s size
+resources (most importantly limited filesystem space), <literal remap="tt">newt</literal>'s size
was immediately an issue. To help minimize its size, the following design
decisions were made early in it's implementation:
-
-<itemize>
-<item> <tt/newt/ does not use an event-driven architecture.
-<item> <tt/newt/ is written in C, not C++. While there has been interest
-in contructing C++ wrapper classes around the <tt/newt/ API, nothing has
-yet come of those ideas.
-<item> Windows must be created and destroyed as a stack (in other words, all
-<tt/newt/ windows behave as modal dialogs). This is probably
-the greatest functionality restriction of <tt/newt/.
-<item> The tty keyboard is the only supported input device.
-<item> Many behaviours, such as widget traversal order, are difficult
+</para>
+
+<itemizedlist>
+<listitem>
+
+<para>
+ <literal remap="tt">newt</literal> does not use an event-driven architecture.
+</para>
+</listitem>
+<listitem>
+<para>
+ <literal remap="tt">newt</literal> is written in C, not C++. While there has been interest
+in contructing C++ wrapper classes around the <literal remap="tt">newt</literal> API, nothing has
+yet come of those ideas.</para>
+</listitem>
+<listitem>
+
+<para>
+ Windows must be created and destroyed as a stack (in other words, all
+<literal remap="tt">newt</literal> windows behave as modal dialogs). This is probably
+the greatest functionality restriction of <literal remap="tt">newt</literal>.</para>
+</listitem>
+<listitem>
+<para>
+ The tty keyboard is the only supported input device.</para>
+</listitem>
+<listitem>
+
+<para>
+ Many behaviours, such as widget traversal order, are difficult
or impossible to change.
-</itemize>
+</para>
+</listitem>
+</itemizedlist>
-<p>
-While <tt/newt/ provides a complete API, it does not handle the low-level
-screen drawing itself. Instead, <tt/newt/ is layered on top of the screen
+<para>
+While <literal remap="tt">newt</literal> provides a complete API, it does not handle the low-level
+screen drawing itself. Instead, <literal remap="tt">newt</literal> is layered on top of the screen
management capabilities of John E. Davis's
-<url url="ftp://space.mit.edu/pub/davis/slang/" name="S-Lang"> library.
+<ulink url="ftp://space.mit.edu/pub/davis/slang/">S-Lang</ulink> library.</para></sect2>
-<sect1>Designing <tt/newt/ applications
-<p>
-As <tt/newt/ is not event driven and forces modal windows (forcing window
+<sect2><title>Designing <literal remap="tt">newt</literal> applications</title>
+<para>
+As <literal remap="tt">newt</literal> is not event driven and forces modal windows (forcing window
order to behave like a stack), newt applications tend to look quite like
other text-mode programs. It is quite straightforward to convert a command
-line program which uses simple user prompts into a <tt/newt/ application.
+line program which uses simple user prompts into a <literal remap="tt">newt</literal> application.
Some of the programs run as part of the Red Hat installation process
-(such as <tt/Xconfigurator/ and <tt/mouseconfig/) were originally written
+(such as <literal remap="tt">Xconfigurator</literal> and <literal remap="tt">mouseconfig</literal>) were originally written
as simple terminal mode programs which used line-oriented menus to get
-input from the user and were later converted into <tt/newt/ applications
+input from the user and were later converted into <literal remap="tt">newt</literal> applications
(through a process affectionately known as newtering). Such a conversion
does not require changes to the control flow of most applications.
-Programming <tt/newt/ is dramatically different from writing programs for
-most other windowing systems as <tt/newt/'s API is not event driven. This
-means that <tt/newt/ applications look dramatically different from programs
-written for event-driven architectures such as Motif, <tt/gtk/, or even
+Programming <literal remap="tt">newt</literal> is dramatically different from writing programs for
+most other windowing systems as <literal remap="tt">newt</literal>'s API is not event driven. This
+means that <literal remap="tt">newt</literal> applications look dramatically different from programs
+written for event-driven architectures such as Motif, <literal remap="tt">gtk</literal>, or even
Borland's old TurboVision libraries.
-When your're desiging your <tt/newt/ program, keep this differentiation
+When your're desiging your <literal remap="tt">newt</literal> program, keep this differentiation
in mind. As long as you plan your application to call a function to
get input and then continue (rather then having your program called
when input is ready), programming with the newt libraries should be
-simple.
+simple.</para></sect2>
-<sect1>Components
-<p>
-Displayable items in <tt/newt/ are known as <bf/components/, which are
+<sect2><title>Components</title>
+
+<para>
+Displayable items in <literal remap="tt">newt</literal> are known as <emphasis remap="bf">components</emphasis>, which are
analagous to the widgets provided by most Unix widget sets. There are
-two main types of components in <tt/newt/, forms and everything else.
+two main types of components in <literal remap="tt">newt</literal>, forms and everything else.
Forms logically group components into functional sets. When an application
is ready to get input frm a user, it ``runs a form'', which makes the
form active and lets the user enter information into the components the
of how the user tabs between components on the form, scroll regions of the
screen, and control background colors for portions of windows.
-Every component is of type <tt/newtComponent/, which is an opaque type. It's
+Every component is of type <literal remap="tt">newtComponent</literal>, which is an opaque type. It's
guaranteed to be a pointer though, which lets applications move it through
-void pointers if the need arises. Variables of type <tt/newtComponent/ should
-never be directly manipulated -- they should only be passed to <tt/newt/
-functions. As <tt/newtComponent/ variables are pointers, remember that
-they are always passed by value -- if you pass a <tt/newtComponent/ to
+void pointers if the need arises. Variables of type <literal remap="tt">newtComponent</literal> should
+never be directly manipulated -- they should only be passed to <literal remap="tt">newt</literal>
+functions. As <literal remap="tt">newtComponent</literal> variables are pointers, remember that
+they are always passed by value -- if you pass a <literal remap="tt">newtComponent</literal> to
a function which manipulates it, that component is manipulated everywhere,
not just inside of that function (which is nearly always the behaviour
-you want).
+you want).</para></sect2>
+
-<sect1>Conventions
+<sect2><title>Conventions</title>
-<p>
-<tt/Newt/ uses a number of conventions to make it easier for programmers
+<para>
+<literal remap="tt">Newt</literal> uses a number of conventions to make it easier for programmers
to use.
-<itemize>
-<item> All functions which manipulate data structures take the data
+
+<itemizedlist>
+<listitem>
+
+<para>
+ All functions which manipulate data structures take the data
structure being modified as their first parameter. For example, all
-of the functions which manipulate forms expect the <tt/newtComponent/
-for that form to be the first parameter.
-<item> As <tt/newt/ is loosely typed (forcing all of the components into
+of the functions which manipulate forms expect the <literal remap="tt">newtComponent</literal>
+for that form to be the first parameter.</para></listitem>
+<listitem>
+
+<para>
+ As <literal remap="tt">newt</literal> is loosely typed (forcing all of the components into
a single variable makes coding easier, but nullifies the value of type
-checking), <tt/newt/ functions include the name of the type they are
-manipulating. An example of this is <tt/newtFormAddComponent()/, which
+checking), <literal remap="tt">newt</literal> functions include the name of the type they are
+manipulating. An example of this is <literal remap="tt">newtFormAddComponent()</literal>, which
adds a component to a form. Note that the first parameter to this function
-is a form, as the name would suggest.
-<item> When screen coordinates are passed into a function, the y value
+is a form, as the name would suggest.</para></listitem>
+<listitem>
+
+<para>
+ When screen coordinates are passed into a function, the y value
preceeds the x location preceeds the y location. To help keep this clear,
we'll use the words ``left'' and ``top'' to describe those indicators (which
-left corresponding to the x position).
-<item> When box sizes are passed, the horizonal width preceeds the vertical
-width.
-<item> When both a screen location and a box size are being passed, the
-screen location preceeds the box size.
-<item> When any component other then a form is created, the first two
-parameters are always the (left, right) location.
-<item> Many functions take a set of flags as the final parameter. These
-flags may be logically ORed together to pass more then one flag at a time.
-<item> <tt/Newt/ uses <bf/callback/ functions to convey certain events to
+left corresponding to the x position).</para></listitem>
+<listitem>
+
+<para>
+ When box sizes are passed, the horizonal width preceeds the vertical
+width.</para></listitem>
+<listitem>
+
+<para>
+ When both a screen location and a box size are being passed, the
+screen location preceeds the box size.</para></listitem>
+<listitem>
+
+<para>
+ When any component other then a form is created, the first two
+parameters are always the (left, right) location.</para></listitem>
+<listitem>
+
+<para>
+ Many functions take a set of flags as the final parameter. These
+flags may be logically ORed together to pass more then one flag at a time.</para></listitem>
+<listitem>
+
+<para>
+ <literal remap="tt">Newt</literal> uses <emphasis remap="bf">callback</emphasis> functions to convey certain events to
the application. While callbacks differe slightly in their parameters, most
of them allow the application to speicfy an arbitrary argument to be passed
to the callback when the callback is invoked. This argument is always a
-<tt/void */, which allows the application great flexibility.
-</itemize>
+<literal remap="tt">void *</literal>, which allows the application great flexibility.
+</para>
+</listitem>
+</itemizedlist>
+</para></sect2></sect1>
+
+
+
+<sect1><title>Basic <literal remap="tt">Newt</literal> Functions</title>
-<sect>Basic <tt/Newt/ Functions
+<para>
+While most <literal remap="tt">newt</literal> functions are concerned with widgets or groups
+of widgets (called grids and forms), some parts of the <literal remap="tt">newt</literal> API
+deal with more global issues, such as initializing <literal remap="tt">newt</literal> or writing
+to the root window.</para>
-<p>
-While most <tt/newt/ functions are concerned with widgets or groups
-of widgets (called grids and forms), some parts of the <tt/newt/ API
-deal with more global issues, such as initializing <tt/newt/ or writing
-to the root window.
-<sect1>Starting and Ending <tt/newt/ Services
+<sect2><title>Starting and Ending <literal remap="tt">newt</literal> Services</title>
-<p>
-There are three functions which nearly every <tt/newt/ application use. The
+<para>
+There are three functions which nearly every <literal remap="tt">newt</literal> application use. The
first two are used to initialize the system.
-<tscreen><verb>
+
+<screen>
int newtInit(void);
void newtCls(void);
-</verb></tscreen>
+</screen>
+
-<tt/newtInit()/ should be the first function called by every <tt/newt/
+<literal remap="tt">newtInit()</literal> should be the first function called by every <literal remap="tt">newt</literal>
program. It initializes internal data structures and places the terminal
-in raw mode. Most applications invoke <tt/newtCls()/ immediately after
-<tt/newtInit()/, which causes the screen to be cleared. It's not
-necessary to call <tt/newtCls()/ to use any of <tt/newt/'s features, but
+in raw mode. Most applications invoke <literal remap="tt">newtCls()</literal> immediately after
+<literal remap="tt">newtInit()</literal>, which causes the screen to be cleared. It's not
+necessary to call <literal remap="tt">newtCls()</literal> to use any of <literal remap="tt">newt</literal>'s features, but
doing so will normally give a much neater appearance.
-When a <tt/newt/ program is ready to exit, it should call <tt/newtFinished()/.
+When a <literal remap="tt">newt</literal> program is ready to exit, it should call <literal remap="tt">newtFinished()</literal>.
-<tscreen><verb>
+
+<screen>
int newtFinished(void);
-</verb></tscreen>
+</screen>
+
-<tt/newtFinished()/ restores the terminal to it's appearance when
-<tt/newtInit()/ was called (if possible -- on some terminals the cursor will
+<literal remap="tt">newtFinished()</literal> restores the terminal to it's appearance when
+<literal remap="tt">newtInit()</literal> was called (if possible -- on some terminals the cursor will
be moved to the bottom, but it won't be possible to remember the original
terminal contents) and places the terminal in it's original input state.
If this function isn't called, the terminal will probably need to be
-reset with the <tt/reset/ command before it can be used easily.
+reset with the <literal remap="tt">reset</literal> command before it can be used easily.</para></sect2>
-<sect1> Handling Keyboard Input
-<p>
-Normally, <tt/newt/ programs don't read input directly from the
-user. Instead, they let <tt/newt/ read the input and hand it to the
-program in a semi-digested form. <tt/Newt/ does provide a couple of simple
+<sect2><title>Handling Keyboard Input</title>
+
+<para>
+Normally, <literal remap="tt">newt</literal> programs don't read input directly from the
+user. Instead, they let <literal remap="tt">newt</literal> read the input and hand it to the
+program in a semi-digested form. <literal remap="tt">Newt</literal> does provide a couple of simple
functions which give programs (a bit of) control over the terminal.
-<tscreen><verb>
+
+<screen>
void newtWaitForKey(void);
void newtClearKeyBuffer(void);
-</verb></tscreen>
+</screen></para>
+
-<p>
-The first of these, <tt/newtWaitForKey()/, doesn't return until a key
+
+<para>
+The first of these, <literal remap="tt">newtWaitForKey()</literal>, doesn't return until a key
has been pressed. The keystroke is then ignored. If a key is already in
-the terminal's buffer, <tt/newtWaitForKey()/ discards a keystroke and
+the terminal's buffer, <literal remap="tt">newtWaitForKey()</literal> discards a keystroke and
returns immediately.
-<tt/newtClearKeyBuffer()/ discards the contents of the terminal's input
-buffer without waiting for additional input.
+<literal remap="tt">newtClearKeyBuffer()</literal> discards the contents of the terminal's input
+buffer without waiting for additional input.</para></sect2>
+
-<sect1> Drawing on the Root Window
+<sect2><title>Drawing on the Root Window</title>
-<p>
+<para>
The background of the terminal's display (the part without any windows
-covering it) is known as the <bf/root window/ (it's the parent of all
+covering it) is known as the <emphasis remap="bf">root window</emphasis> (it's the parent of all
windows, just like the system's root directory is ther parent of all
subdirectories). Normally, applications don't use the root window, instead
-drawing all of their text inside of windows (<tt/newt/ doesn't require
+drawing all of their text inside of windows (<literal remap="tt">newt</literal> doesn't require
this though -- widgets may be placed directly on the root window without
difficulty). It is often desireable to display some text, such as a
program's name or copyright information, on the root window, however.
-<tt/Newt/ provides two ways of displaying text on the root window. These
-functions may be called at any time. They are the only <tt/newt/ functions
+<literal remap="tt">Newt</literal> provides two ways of displaying text on the root window. These
+functions may be called at any time. They are the only <literal remap="tt">newt</literal> functions
which are meant to write outside of the current window.
-<tscreen><verb>
+
+<screen>
void newtDrawRootText(int left, int top, const char * text);
-</verb></tscreen>
+</screen></para>
+
-<p>
-This function is straightforward. It displays the string <tt/text/ at
-the position indicated. If either the <tt/left/ or <tt/top/ is
+
+<para>
+This function is straightforward. It displays the string <literal remap="tt">text</literal> at
+the position indicated. If either the <literal remap="tt">left</literal> or <literal remap="tt">top</literal> is
negative, the position is measured from the opposite side of the
screen. The final measurement will seem to be off by one though. For
-example, a <tt/top/ of -1 indicates the last line on the screen, and
+example, a <literal remap="tt">top</literal> of -1 indicates the last line on the screen, and
one of -2 is the line above that.
As it's common to use the last line on the screen to display help information,
-<tt/newt/ includes special support for doing exactly that. The last
-line on the display is known as the <bf/help line/, and is treated as a
+<literal remap="tt">newt</literal> includes special support for doing exactly that. The last
+line on the display is known as the <emphasis remap="bf">help line</emphasis>, and is treated as a
stack. As the value of the help line normally relates to the window
currently displayed, using the same structure forwindow order and the
help line is very natural. Two functions are provided to manipulate the
help line.
-<tscreen><verb>
+
+<screen>
void newtPushHelpLine(const char * text);
void newtPopHelpLine(void);
-</verb></tscreen>
+</screen>
-The first function, <tt/newtPushHelpLine()/, saves the current help line
+
+The first function, <literal remap="tt">newtPushHelpLine()</literal>, saves the current help line
on a stack (which is independent of the window stack) and displays the
-new line. If <tt/text/ is <tt/NULL/, <tt/newt/'s default help line is
-displayed (which provides basic instructions on using <tt/newt/). If
-<tt/text/ is a string of length 0, the help line is cleared. For all
-other values of <tt/text/, the passed string is displayed at the bottom,
+new line. If <literal remap="tt">text</literal> is <literal remap="tt">NULL</literal>, <literal remap="tt">newt</literal>'s default help line is
+displayed (which provides basic instructions on using <literal remap="tt">newt</literal>). If
+<literal remap="tt">text</literal> is a string of length 0, the help line is cleared. For all
+other values of <literal remap="tt">text</literal>, the passed string is displayed at the bottom,
left-hand corner of the display. The space between the end of the displayed
string the the right-hand edge of the terminal is cleared.
-<tt/newtPopHelpLine()/ replaces the current help line with the one it
+<literal remap="tt">newtPopHelpLine()</literal> replaces the current help line with the one it
replaced. It's important not to call tt/newtPopHelpLine()/ more then
-<tt/newtPushHelpLine()/!
+<literal remap="tt">newtPushHelpLine()</literal>!
-<tt/Suspending Newt Applications/
+<literal remap="tt">Suspending Newt Applications</literal>
-By default, <tt/newt/ programs cannot be suspended by the user (compare
+By default, <literal remap="tt">newt</literal> programs cannot be suspended by the user (compare
this to most Unix programs which can be suspended by pressing the suspend
-key (normmaly <tt/^Z/). Instead, programs can specify a <bf/callback/
+key (normmaly <literal remap="tt">^Z</literal>). Instead, programs can specify a <emphasis remap="bf">callback</emphasis>
function which gets invoked when the user presses the suspend key.
-<tscreen><verb>
+
+<screen>
typedef void (*newtSuspendCallback)(void);
void newtSetSuspendCallback(newtSuspendCallback cb);
-</verb></tscreen>
+</screen>
+
The suepnd function neither expects nor returns any value, and can
do whatever it likes to when it is invoked. If no suspend callback
is registered, the suspend keystroke is ignored.
If the application should suspend and continue like most user applications,
-the suspend callback needs two other <tt/newt/ functions.
+the suspend callback needs two other <literal remap="tt">newt</literal> functions.
-<tscreen><verb>
+
+<screen>
void newtSuspend(void);
void newtResume(void);
-</verb></tscreen>
+</screen>
+
-<tt/newtSuspend()/ tells <tt/newt/ to return the terminal to it's initial
+<literal remap="tt">newtSuspend()</literal> tells <literal remap="tt">newt</literal> to return the terminal to it's initial
state. Once this is done, the application can suspend itself (by
-sending itself a <tt/SIGTSTP/, fork a child program, or do whatever
-else it likes. When it wants to resume using the <tt/newt/ interface,
-it must call <tt/newtResume/ before doing so.
+sending itself a <literal remap="tt">SIGTSTP</literal>, fork a child program, or do whatever
+else it likes. When it wants to resume using the <literal remap="tt">newt</literal> interface,
+it must call <literal remap="tt">newtResume</literal> before doing so.
-Note that suspend callbacks are not signal handlers. When <tt/newtInit()/
+Note that suspend callbacks are not signal handlers. When <literal remap="tt">newtInit()</literal>
takes over the terminal, it disables the part of the terminal interface
-which sends the suspend signal. Instead, if <tt/newt/ sees the suspend
+which sends the suspend signal. Instead, if <literal remap="tt">newt</literal> sees the suspend
keystroke during normal input processing, it immediately calls the suspend
callback if one has been set. This means that suspending newt applications
-is not asyncronous.
+is not asyncronous.</para></sect2>
-<sect1>Refreshing the Screen
-<p>
+<sect2><title>Refreshing the Screen</title>
+
+<para>
To increase performance, S-Lang only updates the display when it needs
to, not when the program tells S-Lang to write to the terminal. ``When it
needs to'' is implemented as ``right before the we wait for the user to
the time, this optimization makes things difficult for programs which
want to display progress messages without forcing the user to input
characters. Applications can foce S-Lang to immediately update modified
-portions of the screen by calling <tt/newtRefresh/.
+portions of the screen by calling <literal remap="tt">newtRefresh</literal>.
+
+
+<orderedlist>
+<listitem>
+
+<para>
+The program wants to display a progress message, without forcing
+for the user to enter any characters.</para></listitem>
+<listitem>
-<enum>
-<item>The program wants to display a progress message, without forcing
-for the user to enter any characters.
-<item>A misfeature of the program causes part of the screen to be
+<para>
+A misfeature of the program causes part of the screen to be
corrupted. Ideally, the program would be fixed, but that may not
always be practical.
-</enum>
+</para>
+</listitem></orderedlist>
+</para></sect2>
-<sect1>Other Miscellaenous Funtions
-<p>
-As always, some function defy characterization. Two of <tt/newt/'s general
+
+<sect2><title>Other Miscellaenous Funtions</title>
+
+<para>
+As always, some function defy characterization. Two of <literal remap="tt">newt</literal>'s general
function fit this oddball category.
-<tscreen><verb>
+
+<screen>
void newtBell(void);
void newtGetScreenSize(int * cols, int * rows);
-</verb></tscreen>
+</screen>
+
The first sends a beep to the terminal. Depending on the terminal's
settings, this been may or may not be audible. The second function,
-<tt/newtGetScreenSize()/, fills in the passed pointers with the
-current size of the terminal.
+<literal remap="tt">newtGetScreenSize()</literal>, fills in the passed pointers with the
+current size of the terminal.</para></sect2>
+
-<sect1> Basic <tt/newt/ Example
+<sect2><title>Basic <literal remap="tt">newt</literal> Example</title>
-<p>
+<para>
To help illustrate the functions presented in this secion here is a short
-sample <tt/newt/ program which uses many of them. While it doesn't do
-anything interesting, it does show the basic structure of <tt/newt/ programs.
+sample <literal remap="tt">newt</literal> program which uses many of them. While it doesn't do
+anything interesting, it does show the basic structure of <literal remap="tt">newt</literal> programs.
-<tscreen><verb>
-#include <newt.h>
-#include <stdlib.h>
+
+<screen>
+#include <newt.h>
+#include <stdlib.h>
int main(void) {
newtInit();
newtFinished();
}
-</verb></tscreen>
+</screen></para></sect2></sect1>
+
-<sect>Windows
-<p>
-While most <tt/newt/ applications do use windows, <tt/newt/'s window
+<sect1><title>Windows</title>
+
+<para>
+While most <literal remap="tt">newt</literal> applications do use windows, <literal remap="tt">newt</literal>'s window
support is actually extremely limited. Windows must be destroyed in the
opposite order they were created, and only the topmost window may be
active. Corollaries to this are:
-<itemize>
-<item>The user may not switch between windows.
-<item>Only the top window may be destroyed.
-</itemize>
+
+<itemizedlist>
+<listitem>
+
+<para>
+The user may not switch between windows.</para></listitem>
+<listitem>
+
+<para>
+Only the top window may be destroyed.
+</para>
+</listitem></itemizedlist>
While this is quite a severe limitation, adopting it greatly simplifies
-both writing <tt/newt/ applications and developing <tt/newt/ itself, as it
-separates <tt/newt/ from the world of event-driven programming. However,
-this tradeoff between function and simplicity may make <tt/newt/
+both writing <literal remap="tt">newt</literal> applications and developing <literal remap="tt">newt</literal> itself, as it
+separates <literal remap="tt">newt</literal> from the world of event-driven programming. However,
+this tradeoff between function and simplicity may make <literal remap="tt">newt</literal>
unsuitable for some tasks.
+</para>
-<sect1>Creating Windows
+<sect2><title>Creating Windows</title>
-<p>
-There are two main ways of opening <tt/newt/ windows; with or without
+<para>
+There are two main ways of opening <literal remap="tt">newt</literal> windows; with or without
explicit sizings. When grids (which will be introduced later is this
tutorial) are used, a window may be made to just fit the grid. When
grids are not used, explicit sizing must be given.
-<tscreen><verb>
+
+<screen>
int newtCenteredWindow(int width, int height, const char * title);
int newtOpenWindow(int left, int top, int width, int height,
const char * title);
-</verb></tscreen>
+</screen>
+
The first of these functions open a centered window of the specified
-size. The <tt/title/ is optional -- if it is <tt/NULL/, then no title
-is used. <tt/nwtOpenWindow*(/ is similiar, but it requires a specific
-location for the upper left-hand corner of the window.
+size. The <literal remap="tt">title</literal> is optional -- if it is <literal remap="tt">NULL</literal>, then no title
+is used. <literal remap="tt">nwtOpenWindow*(</literal> is similiar, but it requires a specific
+location for the upper left-hand corner of the window.</para></sect2>
+
-<sect1>Destroying Windows
+<sect2><title>Destroying Windows</title>
-<p>
+<para>
All windows are destroyed in the same manner, no matter how the windows
were originally created.
-<tscreen><verb>
+
+<screen>
void newtPopWindow(void);
-</verb></tscreen>
+</screen>
+
This function removes the top window from the display, and redraws the
-display areas which the window overwrote.
+display areas which the window overwrote.</para></sect2></sect1>
-<sect>Components
-<p>
-Components are the basic user interface element <tt/newt/ provides. A
+<sect1><title>Components</title>
+
+<para>
+Components are the basic user interface element <literal remap="tt">newt</literal> provides. A
single component may be (for example) a listbox, push button checkbox,
a collection of other components. Most components are used to display
information in a window, provide a place for the user to enter data, or a
invoked it. The application may then read the information the user provided
and continue appropriately.
-All <tt/newt/ components are stored in a common data type, a
-<tt/newtComponent/ (some of the particulars of <tt/newtComponents/s have
+All <literal remap="tt">newt</literal> components are stored in a common data type, a
+<literal remap="tt">newtComponent</literal> (some of the particulars of <literal remap="tt">newtComponents</literal>s have
already been mentioned. While this makes it easy for programmers to pass
components around, it does force them to make sure they use they don't pass
entry boxes to routines expecting push buttons, as the compiler can't
complete, this introduction is enough to let us illustrate the rest of
the components with some sample code. We'll then discuss the remainder of
the components, and end this section with a more exhaustive description of
-forms.
+forms.</para>
+
-<sect1>Introduction to Forms
+<sect2><title>Introduction to Forms</title>
-<p>
+<para>
As we've mentioned, forms are simply collections of components. As only one
form can be active (or running) at a time, every component which the user
should be able to access must be on the running form (or on a subform of
the running form). A form is itself a component, which means forms are
-stored in <tt/newtComponent/ data structures.
+stored in <literal remap="tt">newtComponent</literal> data structures.
-<tscreen><verb>
+
+<screen>
newtComponent newtForm(newtComponent vertBar, const char * help, int flags);
-</verb></tscreen>
+</screen>
+
-To create a form, call <tt/newtForm()/. The first parameter is a vertical
+To create a form, call <literal remap="tt">newtForm()</literal>. The first parameter is a vertical
scrollbar which should be associated with the form. For now, that should
-always be <tt/NULL/ (we'll discuss how to create scrolling forms later in
-this section). The second parameter, <tt/help/, is currently unused and
-should always be <tt/NULL/. The <tt/flags/ is normally 0, and othervalues
+always be <literal remap="tt">NULL</literal> (we'll discuss how to create scrolling forms later in
+this section). The second parameter, <literal remap="tt">help</literal>, is currently unused and
+should always be <literal remap="tt">NULL</literal>. The <literal remap="tt">flags</literal> is normally 0, and othervalues
it can take will be discussed later. Now that we've waved away the
complexity of this function, creating a form boils down to simply:
-<tscreen><verb>
+
+<screen>
newtComponent myForm;
myForm = newtForm(NULL, NULL, 0);
-</verb></tscreen>
+</screen>
+
After a form is created, components need to be added to it --- after all,
an empty form isn't terribly usefull. There are two functions which add
components to a form.
-<tscreen><verb>
+
+<screen>
void newtFormAddComponent(newtComponent form, newtComponent co);
void newtFormAddComponents(newtComponent form, ...);
-</verb></tscreen>
+</screen>
-The first function, <tt/newtFormAddComponent()/, adds a single component
+
+The first function, <literal remap="tt">newtFormAddComponent()</literal>, adds a single component
to the form which is passed as the first parameter. The second function
is simply a convience function. After passing the form to
-<tt/newtFormAddComponents()/, an arbitrary number of components is then
-passed, followed by <tt/NULL/. Every component passed is added to the form.
+<literal remap="tt">newtFormAddComponents()</literal>, an arbitrary number of components is then
+passed, followed by <literal remap="tt">NULL</literal>. Every component passed is added to the form.
Once a form has been created and components have been added to it, it's
time to run the form.
-<tscreen><verb>
+
+<screen>
newtComponent newtRunForm(newtComponent form);
-</verb></tscreen>
+</screen>
+
This function runs the form passed to it, and returns the component which
caused the form to stop running. For now, we'll ignore the return value
completely.
-Notice that this function doesn't fit in with <tt/newt/'s normal
+Notice that this function doesn't fit in with <literal remap="tt">newt</literal>'s normal
naming convention. It is an older interface which will not work for all
-forms. It was left in <tt/newt/ only for legacy applications. It is a
-simpler interface then the new <tt/newtFormRun()/ though, and is still used
+forms. It was left in <literal remap="tt">newt</literal> only for legacy applications. It is a
+simpler interface then the new <literal remap="tt">newtFormRun()</literal> though, and is still used
quite often as a result.
When an application is done with a form, it destroys the form and
all of the components the form contains.
-<tscreen><verb>
+
+<screen>
void newtFormDestroy(newtComponent form);
-</verb></tscreen>
+</screen>
+
This function frees the memory resources used by the form and all of the
components which have been added to the form (including those components
which are on subforms). Once a form has been destroyed, none of the form's
-components can be used.
+components can be used.</para></sect2>
+
-<sect1>Components
+<sect2><title>Components</title>
-<p>
+<para>
Non-form components are the most important user-interface component for
-users. They determine how users interact with <tt/newt/ and how information
-is presented to them.
+users. They determine how users interact with <literal remap="tt">newt</literal> and how information
+is presented to them.</para></sect2>
+
-<sect1>General Component Manipulation
+<sect2><title>General Component Manipulation</title>
-<p>
+<para>
There are a couple of functions which work on more then one type of
components. The description of each component indicates which (if any)
of these functions are valid for that particular component.
-<tscreen><verb>
+
+<screen>
typedef void (*newtCallback)(newtComponent, void *);
void newtComponentAddCallback(newtComponent co, newtCallback f, void * data);
void newtComponentTakesFocus(newtComponent co, int val);
-</verb></tscreen>
+</screen>
+
The first registers a callback function for that component. A callback
-function is a function the application provides which <tt/newt/ calls for a
+function is a function the application provides which <literal remap="tt">newt</literal> calls for a
particular component. Exactly when (if ever) the callback is invoked
depends on the type of component the callback is attached to, and will be
discussed for the components which support callbacks.
-<tt/newtComponentTakesFocus()/ works on all components. It allows the
+<literal remap="tt">newtComponentTakesFocus()</literal> works on all components. It allows the
application to change which components the user is allowed to select as the
current component, and hence provide input to. Components which do not
take focus are skipped over during form traversal, but they are displayed
on the terminal. Some components should never be set to take focus, such
-as those which display static text.
+as those which display static text.</para></sect2>
-<sect1>Buttons
-<p>
-Nearly all forms contain at least one button. <tt/Newt/ buttons come in two
+<sect2><title>Buttons</title>
+
+<para>
+Nearly all forms contain at least one button. <literal remap="tt">Newt</literal> buttons come in two
flavors, full buttons and compact buttons. Full buttons take up quit a bit
of screen space, but look much better then the single-row compact buttons.
Other then their size, both button styles behave identically. Different
functions are used to create the two types of buttons.
-<tscreen><verb>
+
+<screen>
newtComponent newtButton(int left, int top, const char * text);
newtComponent newtCompactButton(int left, int top, const char * text);
-</verb></tscreen>
+</screen>
+
Both functions take identical paramters. The first two parameters are the
location of the upper left corner of the button, and the final parameter is
the text which should be displayed in the button (such as ``Ok'' or
-``Cancel'').
+``Cancel'').</para>
+
-<sect2>Button Example
+<sect3><title>Button Example</title>
-<p>
+<para>
Here is a simple example of both full and compact buttons. It also
illustrates opening and closing windows, as well a simple form.
-<tscreen><verb>
-#include <newt.h>
-#include <stdlib.h>
+
+<screen>
+#include <newt.h>
+#include <stdlib.h>
void main(void) {
newtComponent form, b1, b2;
newtFormDestroy(form);
newtFinished();
}
-</verb></tscreen>
+</screen></para></sect3></sect2>
+
+
-<sect1>Labels
+<sect2><title>Labels</title>
-<p>
-Labels are <tt/newt/'s simplest component. They display some given text and
+<para>
+Labels are <literal remap="tt">newt</literal>'s simplest component. They display some given text and
don't allow any user input.
-<tscreen><verb>
+
+<screen>
newtComponent newtLabel(int left, int top, const char * text);
void newtLabelSetText(newtComponent co, const char * text);
-</verb></tscreen>
+</screen>
+
Creating a label is just like creating a button; just pass the location of
the label and the text it should display. Unlike buttons, labels do let the
-application change the text in the label with <tt/newtLabelSetText/. When
+application change the text in the label with <literal remap="tt">newtLabelSetText</literal>. When
the label's text is changed, the label automatically redraws itself. It
does not clear out any old text which may be leftover from the previous
time is was displayed, however, so be sure that the new text is at least
-as long as the old text.
+as long as the old text.</para></sect2>
-<sect1>Entry Boxes
-<p>
+<sect2><title>Entry Boxes</title>
+
+<para>
Entry boxes allow the user to enter a text string into the form which the
application can later retrieve.
-<tscreen><verb>
+
+<screen>
typedef int (*newtEntryFilter)(newtComponent entry, void * data, int ch,
int cursor);
void newtEntrySet(newtComponent co, const char * value, int cursorAtEnd);
char * newtEntryGetValue(newtComponent co);
void newtEntrySetFilter(newtComponent co, newtEntryFilter filter, void * data);
-</verb></tscreen>
+</screen></para>
+
+
-<p>
-<tt/newtEntry()/ creates a new entry box. After the location of the entry
-box, the initial value for the entry box is passed, which may be <tt/NULL/
+<para>
+<literal remap="tt">newtEntry()</literal> creates a new entry box. After the location of the entry
+box, the initial value for the entry box is passed, which may be <literal remap="tt">NULL</literal>
if the box should start off empty. Next, the width of the phsyical box is
given. This width may or may not limit the length of the string the user is
-allowed to enter; that depends on the <tt/flags/. The <tt/resultPtr/ must
-be the address of a <tt/char */. Until the entry box is destroyed by
-<tt/newtFormDestroy()/, that <tt/char */ will point to the current value
+allowed to enter; that depends on the <literal remap="tt">flags</literal>. The <literal remap="tt">resultPtr</literal> must
+be the address of a <literal remap="tt">char *</literal>. Until the entry box is destroyed by
+<literal remap="tt">newtFormDestroy()</literal>, that <literal remap="tt">char *</literal> will point to the current value
of the entry box. It's important that applications make a copy of that
value before destroying the form if they need to use it later. The
-<tt/resultPtr/ may be <tt/NULL/, in which case the user must use the
-<tt/newtEntryGetValue()/ function to get the value of the entry box.
+<literal remap="tt">resultPtr</literal> may be <literal remap="tt">NULL</literal>, in which case the user must use the
+<literal remap="tt">newtEntryGetValue()</literal> function to get the value of the entry box.
Entry boxes support a number of flags:
-<descrip>
-<tag/NEWT_ENTRY_SCROLL/ If this flag is not specified, the user cannot
+<variablelist>
+
+<varlistentry>
+<term>NEWT_ENTRY_SCROLL</term>
+<listitem>
+<para>If this flag is not specified, the user cannot
enter text into the entry box which is wider then the entry box itself.
This flag removes this limitation, and lets the user enter data of an
-arbitrary length.
-<tag/NEWT_FLAG_HIDDEN/If this flag is specified, the value of the entry box
+arbitrary length.</para></listitem>
+</varlistentry>
+<varlistentry>
+<term>NEWT_FLAG_HIDDEN</term>
+<listitem>
+<para>If this flag is specified, the value of the entry box
is not displayed. This is usefull when the application needs to read a
-password, for example.
-<tag/NEWT_FLAG_RETURNEXIT/When this flag is given, the entry box will cause
+password, for example.</para></listitem>
+</varlistentry>
+<varlistentry>
+<term>NEWT_FLAG_RETURNEXIT</term>
+<listitem>
+<para>When this flag is given, the entry box will cause
the form to stop running if the user pressed return inside of the entry
-box. This can provide a nice shortcut for users.
-</descrip>
+box. This can provide a nice shortcut for users.</para>
+</listitem>
+</varlistentry>
+</variablelist>
-<!-- FIXME XXX add NEWT_FLAG_DISABLED -->
After an entry box has been created, it's contents can be set by
-<tt/newtEntrySet()/. After the entry box itself, the new string to place
-in the entry box is passed. The final parameter, <tt/cursorAtEnd/, controls
+<literal remap="tt">newtEntrySet()</literal>. After the entry box itself, the new string to place
+in the entry box is passed. The final parameter, <literal remap="tt">cursorAtEnd</literal>, controls
where the cursor will appear in the entry box. If it is zero, the cursor
remains at it's present location; a nonzero value moves the cursor to the
end of the entry box's new value.
While the simplest way to find the value of an entry box is by using a
-<tt/resultPtr/, doing so complicates some applications.
-<tt/newtEntryGetValue()/ returns a pointer to the string which the entry
+<literal remap="tt">resultPtr</literal>, doing so complicates some applications.
+<literal remap="tt">newtEntryGetValue()</literal> returns a pointer to the string which the entry
box currently contains. The returned pointer may not be valid once the
user further modifies the entry box, and will not be valid after the
entry box has been destroyed, so be sure to save it's value in a more
to the user (such as automatically adding a '.' after the user has typed in
the first three numbers in an IP address).
-When a filter is registered through <tt/newtEntrySetFilter()/, both the
-filter itself and an aribtrary <tt/void */, which passed to the filter
+When a filter is registered through <literal remap="tt">newtEntrySetFilter()</literal>, both the
+filter itself and an aribtrary <literal remap="tt">void *</literal>, which passed to the filter
whenever it is invoked, are recorded. This data pointer isn't used for any
-other purpose, and may be <tt/NULL/. Entry filters take four arguments.
+other purpose, and may be <literal remap="tt">NULL</literal>. Entry filters take four arguments.
+
+
+<orderedlist>
+<listitem>
+
+<para>
+The entry box which had data entered into it</para></listitem>
+<listitem>
+
+<para>
+The data pointer which was registered along with the filter</para></listitem>
+<listitem>
-<enum>
-<item>The entry box which had data entered into it
-<item>The data pointer which was registered along with the filter
-<item>The new character which <tt/newt/ is considering inserting into the
-entry box
-<item>The current cursor position (0 is the leftmost position)
-</enum>
+<para>
+The new character which <literal remap="tt">newt</literal> is considering inserting into the
+entry box</para></listitem>
+<listitem>
+
+<para>
+The current cursor position (0 is the leftmost position)
+</para>
+</listitem>
+</orderedlist>
The filter returns 0 if the character should be ignored, or the value of
the character which should be inserted into the entry box. Filter functions
which want to do complex manipulations of the string should use
-<tt/newtEntrySet()/ to update the entry box and then return 0 to prevent
+<literal remap="tt">newtEntrySet()</literal> to update the entry box and then return 0 to prevent
the new character from being inserted.
When a callback is attached to a entry box, the callback is invoked
Here is a sample program which illustrates the use of both labels and
entry boxes.
-<tscreen><verb>
-#include <newt.h>
-#include <stdlib.h>
-#include <stdio.h>
+
+<screen>
+#include <newt.h>
+#include <stdlib.h>
+#include <stdio.h>
void main(void) {
newtComponent form, label, entry, button;
from the entry widget. */
newtFormDestroy(form);
}
-</verb></tscreen>
+</screen></para></sect2>
+
+
-<sect1>Checkboxes
+<sect2><title>Checkboxes</title>
-<p>
+<para>
Most widget sets include checkboxes which toggle between two value (checked
-or not checked). <tt/Newt/ checkboxes are more flexible. When the user
+or not checked). <literal remap="tt">Newt</literal> checkboxes are more flexible. When the user
presses the space bar on a checkbox, the checkbox's value changes to the
next value in an arbitrary sequence (which wraps). Most checkboxes have
-two items in that sequence, checked or not, but <tt/newt/ allows an
+two items in that sequence, checked or not, but <literal remap="tt">newt</literal> allows an
arbitrary number of value. This is usefull when the user must pick from a
limited number of choices.
represented as a string. The checkbox comoonents displays the character
which currently represents its value the left of a text label, and returns
the same character as its current value. The default sequence for
-checkboxes is <tt/" *"/, with <tt/' '/ indicating false and <tt/'*'/ true.
+checkboxes is <literal remap="tt">" *"</literal>, with <literal remap="tt">' '</literal> indicating false and <literal remap="tt">'*'</literal> true.
-<tscreen><verb>
+
+<screen>
newtComponent newtCheckbox(int left, int top, const char * text, char defValue,
const char * seq, char * result);
char newtCheckboxGetValue(newtComponent co);
-</verb></tscreen>
+</screen></para>
+
+
-<p>
+<para>
Like most components, the position of the checkbox is the first thing
-passed to the function that creates one. The next parameter, <tt/text/, is
+passed to the function that creates one. The next parameter, <literal remap="tt">text</literal>, is
the text which is displayed to the right of the area which is checked. The
-<tt/defValue/ is the initial value for the checkbox, and <tt/seq/ is the
-sequence which the checkbox should go through (<tt/defValue/ must be
-in <tt/seq/. <tt/seq/ may be <tt/NULL/, in which case <tt/" *"/ is used.
-The final parameter, <tt/result/, should point to a character which the
-checkbox should always record it's current value in. If <tt/result/ is
-<tt/NULL/, <tt/newtCheckboxGetValue()/ must be used to get the current
+<literal remap="tt">defValue</literal> is the initial value for the checkbox, and <literal remap="tt">seq</literal> is the
+sequence which the checkbox should go through (<literal remap="tt">defValue</literal> must be
+in <literal remap="tt">seq</literal>. <literal remap="tt">seq</literal> may be <literal remap="tt">NULL</literal>, in which case <literal remap="tt">" *"</literal> is used.
+The final parameter, <literal remap="tt">result</literal>, should point to a character which the
+checkbox should always record it's current value in. If <literal remap="tt">result</literal> is
+<literal remap="tt">NULL</literal>, <literal remap="tt">newtCheckboxGetValue()</literal> must be used to get the current
value of the checkbox.
-<tt/newtCheckboxGetValue()/ is straightforward, returning the character
+<literal remap="tt">newtCheckboxGetValue()</literal> is straightforward, returning the character
in the sequence which indicates the current value of the checkboxl
If a callback is attached to a checkbox, the callback is invoked whenever
the checkbox responds to a user's keystroke. The entry box may respond by
-taking focus or giving up focus, as well as by changing its current value.
+taking focus or giving up focus, as well as by changing its current value.</para></sect2>
-<sect1>Radio Buttons
-<p>
+<sect2><title>Radio Buttons</title>
+
+<para>
Radio buttons look very similiar to checkboxes. The key difference between
the two is that radio buttons are grouped into sets, and exactly one radio
button in that set may be turned on. If another radio button is selected,
the button which was selected is automatically deselected.
-<tscreen><verb>
+
+<screen>
newtComponent newtRadiobutton(int left, int top, const char * text,
int isDefault, newtComponent prevButton);
newtComponent newtRadioGetCurrent(newtComponent setMember);
-</verb></tscreen>
+</screen>
-Each radio button is created by calling <tt/newtRadiobutton()/. After
+
+Each radio button is created by calling <literal remap="tt">newtRadiobutton()</literal>. After
the position of the radio button, the text displayed with the button
-is passed. <tt/isDefault/ should be nonzero if the radio button is to
-be turned on by default. The final paramater, <tt/prevMember/ is used
-to group radio buttons into sets. If <tt/prevMember/ is <tt/NULL/, the
+is passed. <literal remap="tt">isDefault</literal> should be nonzero if the radio button is to
+be turned on by default. The final paramater, <literal remap="tt">prevMember</literal> is used
+to group radio buttons into sets. If <literal remap="tt">prevMember</literal> is <literal remap="tt">NULL</literal>, the
radio button is assigned to a new set. If the radio button should belong
-to a preexisting set, <tt/prevMember/ must be the previous radio button
+to a preexisting set, <literal remap="tt">prevMember</literal> must be the previous radio button
added to that set.
Discovering which radio button in a set is currently selected neccesitates
-<tt/newtRadioGetCurrent()/. It may be passed any radio button in the set
+<literal remap="tt">newtRadioGetCurrent()</literal>. It may be passed any radio button in the set
you're inerested in, and it returns the radio button component currently
selected.
Here is an example of both checkboxes and radio buttons.
-<tscreen><verb>
-#include <newt.h>
-#include <stdlib.h>
-#include <stdio.h>
+
+<screen>
+#include <newt.h>
+#include <stdlib.h>
+#include <stdio.h>
void main(void) {
newtComponent form, checkbox, rb[3], button;
form = newtForm(NULL, NULL, 0);
newtFormAddComponent(form, checkbox);
- for (i = 0; i < 3; i++)
+ for (i = 0; i < 3; i++)
newtFormAddComponent(form, rb[i]);
newtFormAddComponent(form, button);
/* We cannot destroy the form until after we've found the current
radio button */
- for (i = 0; i < 3; i++)
+ for (i = 0; i < 3; i++)
if (newtRadioGetCurrent(rb[0]) == rb[i])
printf("radio button picked: %d\n", i);
newtFormDestroy(form);
/* But the checkbox's value is stored locally */
printf("checkbox value: '%c'\n", cbValue);
}
-</verb></tscreen>
+</screen></para></sect2>
+
+
-<sect1>Scales
+<sect2><title>Scales</title>
-<p>
+<para>
It's common for programs to need to display a progress meter on the
terminal while it performs somey length operation (it behaves like an
anaesthetic). The scale component is a simple way of doing this. It
displays a horizontal bar graph which the application can update as the
operation continues.
-<tscreen><verb>
+
+<screen>
newtComponent newtScale(int left, int top, int width, long long fullValue);
void newtScaleSet(newtComponent co, unsigned long long amount);
-</verb></tscreen>
+</screen>
+
-When the scale is created with <tt/newtScale/, it is given the width of the
+When the scale is created with <literal remap="tt">newtScale</literal>, it is given the width of the
scale itself as well as the value which means that the scale should be
drawn as full. When the position of the scale is set with
-<tt/newtScaleSet()/, the scale is told the amount of the scale which should
-be filled in realative to the <tt/fullAmount/. For example, if the
-application is copying a file, <tt/fullValue/ could be the number of bytes
-in the file, and when the scale is updated <tt/newtScaleSet()/ would be
-passed the number of bytes which have been copied so far.
+<literal remap="tt">newtScaleSet()</literal>, the scale is told the amount of the scale which should
+be filled in realative to the <literal remap="tt">fullAmount</literal>. For example, if the
+application is copying a file, <literal remap="tt">fullValue</literal> could be the number of bytes
+in the file, and when the scale is updated <literal remap="tt">newtScaleSet()</literal> would be
+passed the number of bytes which have been copied so far.</para></sect2>
+
-<sect1>Textboxes
+<sect2><title>Textboxes</title>
-<p>
+<para>
Textboxes display a block of text on the terminal, and is appropriate for
display large amounts of text.
-<tscreen><verb>
+
+<screen>
newtComponent newtTextbox(int left, int top, int width, int height, int flags);
void newtTextboxSetText(newtComponent co, const char * text);
-</verb></tscreen>
+</screen>
+
-<tt/newtTextbox()/ creates a new textbox, but does not fill it with data.
+<literal remap="tt">newtTextbox()</literal> creates a new textbox, but does not fill it with data.
The function is passed the location for the textbox on the screen, the
width and height of the textbox (in characters), and zero or more of the
following flags:
-<descrip>
-<tag/NEWT_FLAG_WRAP/ All text in the textbox should be wrapped to fit
+<variablelist>
+
+<varlistentry>
+<term>NEWT_FLAG_WRAP</term>
+<listitem>
+<para>All text in the textbox should be wrapped to fit
the width of the textbox. If this flag is not specified, each newline
delimited line in the text is trunctated if it is too long to fit.
-When <tt/newt/ wraps text, it tries not to break lines on spaces or tabs.
+When <literal remap="tt">newt</literal> wraps text, it tries not to break lines on spaces or tabs.
Literal newline characters are respected, and may be used to force line
-breaks.
-<tag/NEWT_FLAG_SCROLL/ The text box should be scrollable. When this option
+breaks.</para>
+<variablelist>
+
+<varlistentry>
+<term>NEWT_FLAG_SCROLL</term>
+<listitem>
+<para>The text box should be scrollable. When this option
is used, the scrollbar which is added increases the width of the area used
by the textbox by 2 characters; that is the textbox is 2 characters wider
-then the width passed to <tt/newtTextbox()/.
-</descrip>
+then the width passed to <literal remap="tt">newtTextbox()</literal>.
+</para></listitem>
+</varlistentry>
+</variablelist>
-<!-- FIXME XXX what is up with newtTextboxGetNumLines() and
- newtTextboxSetHeight()? Those seem completely unnecessary -->
-<p>
+
+<para>
After a textbox has been created, text may be added to it through
-<tt/newtTextboxSetText()/, which takes only the textbox and the new text as
+<literal remap="tt">newtTextboxSetText()</literal>, which takes only the textbox and the new text as
parameters. If the textbox already contained text, that text is replaced by
the new text. The textbox makes its own copy of the passed text, so these
-is no need to keep the original around unless it's convienent.
+is no need to keep the original around unless it's convienent.</para></listitem></varlistentry></variablelist></para>
+
-<sect2>Reflowing Text
+<sect3><title>Reflowing Text</title>
-<p>
+<para>
When applications need to display large amounts of text, it's common not to
know exactly where the linebreaks should go. While textboxes are quite
willing to scroll the text, the programmer still must know what width the
escpecially prevalent in internationalized programs, which need to make a
wide variety of message string look god on a screen.
-To help with this, <tt/newt/ provides routines to reformat text to look
+To help with this, <literal remap="tt">newt</literal> provides routines to reformat text to look
good. It tries different widths to figure out which one will look ``best''
to the user. As these commons are almost always used to format text for
-textbox components, <tt/newt/ makes it easy to construct a textbox with
+textbox components, <literal remap="tt">newt</literal> makes it easy to construct a textbox with
reflowed text.
-<tscreen><verb>
+
+<screen>
char * newtReflowText(char * text, int width, int flexDown, int flexUp,
int * actualWidth, int * actualHeight);
newtComponent newtTextboxReflowed(int left, int top, char * text, int width,
int flexDown, int flexUp, int flags);
int newtTextboxGetNumLines(newtComponent co);
-</verb></tscreen>
+</screen></para>
+
+
-<p>
-<tt/newtReflowText()/ reflows the <tt/text/ to a target width of
-<tt/width/. The actual width of the longest line in the returned string is
-between <tt/width - flexDown/ and <tt/width + flexUp/; the actual maximum
+<para>
+<literal remap="tt">newtReflowText()</literal> reflows the <literal remap="tt">text</literal> to a target width of
+<literal remap="tt">width</literal>. The actual width of the longest line in the returned string is
+between <literal remap="tt">width - flexDown</literal> and <literal remap="tt">width + flexUp</literal>; the actual maximum
line length is chosen to make the displayed check look rectuangular.
-The <tt/int/s pointed to by <tt/actualWidth/ and <tt/actualHeight/ are set
+The <literal remap="tt">int</literal>s pointed to by <literal remap="tt">actualWidth</literal> and <literal remap="tt">actualHeight</literal> are set
to the width of the longest line and the number of lines in in the
-returned text, respectively. Either one may be <tt/NULL/. The return
-value points to the reflowed text, and is allocated through <tt/malloc()/.
+returned text, respectively. Either one may be <literal remap="tt">NULL</literal>. The return
+value points to the reflowed text, and is allocated through <literal remap="tt">malloc()</literal>.
When the reflowed text is being placed in a textbox it may be easier to use
-<tt/newtTextboxReflowed()/, which creates a textbox, reflows the text, and
+<literal remap="tt">newtTextboxReflowed()</literal>, which creates a textbox, reflows the text, and
places the reflowed text in the listbox. It's parameters consist of the
position of the final textbox, the width and flex values for the text
-(which are identical to the parameters passed to <tt/newtReflowText()/,
+(which are identical to the parameters passed to <literal remap="tt">newtReflowText()</literal>,
and the flags for the textbox (which are the same as the flags for
-<tt/newtTextbox()/. This function does not let you limit the height of the
+<literal remap="tt">newtTextbox()</literal>. This function does not let you limit the height of the
textbox, however, making limiting it's use to contructing textbox's which
don't need to scroll.
-To find out how tall the textbox created by <tt/newtTextboxReflowed()/ is,
-use <tt/newtTextboxGetNumLines()/, which returns the number of lines in the
-textbox. For textboxes created by <tt/newtTextboxReflowed()/, this is
+To find out how tall the textbox created by <literal remap="tt">newtTextboxReflowed()</literal> is,
+use <literal remap="tt">newtTextboxGetNumLines()</literal>, which returns the number of lines in the
+textbox. For textboxes created by <literal remap="tt">newtTextboxReflowed()</literal>, this is
always the same as the height of the textbox.
Here's a simple program which uses a textbox to display a message.
-<tscreen><verb>
-#include <newt.h>
-#include <stdlib.h>
+
+<screen>
+#include <newt.h>
+#include <stdlib.h>
char message[] = "This is a pretty long message. It will be displayed "
"in a newt textbox, and illustrates how to construct "
newtFormDestroy(form);
newtFinished();
}
-</verb></tscreen>
+</screen></para></sect3></sect2>
+
-<sect1>Scrollbars
-<p>
-Scrollbars (which, currently, are always vertical in <tt/newt/), may be
+<sect2><title>Scrollbars</title>
+
+<para>
+Scrollbars (which, currently, are always vertical in <literal remap="tt">newt</literal>), may be
attached to forms to let them contain more data then they have space for.
While the actual process of making scrolling forms is discussed at the end
of this section, we'll go ahead and introduct scrollbars now so you'll be
ready.
-<tscreen><verb>
+
+<screen>
newtComponent newtVerticalScrollbar(int left, int top, int height,
int normalColorset, int thumbColorset);
-</verb></tscreen>
+</screen>
+
When a scrollbar is created, it is given a position on the screen, a
height, and two colors. The first color is the color used for drawing the
only place in newt where an application specifically sets colors for a
component. It's done here to let the colors a scrollbar use match the
colors of the component the scrollbar is mated too. When a scrollbar is
-being used with a form, <tt/normalColorset/ is often
-<tt/NEWT_COLORSET_WINDOW/ and <tt/thumbColorset/
-<tt/NEWT_COLORSET_ACTCHECKBOX/. Of course, feel free to puruse
-<tt/<newt.h>/ and pick your own colors.
+being used with a form, <literal remap="tt">normalColorset</literal> is often
+<literal remap="tt">NEWT_COLORSET_WINDOW</literal> and <literal remap="tt">thumbColorset</literal>
+<literal remap="tt">NEWT_COLORSET_ACTCHECKBOX</literal>. Of course, feel free to puruse
+<literal remap="tt"><newt.h></literal> and pick your own colors.
As the scrollbar is normally updated by the component it is mated with,
-there is no public interface for moving the thumb.
+there is no public interface for moving the thumb.</para></sect2>
-<sect1>Listboxes
-Listboxes are the most complicated components <tt/newt/ provides. They can
+<sect2><title>Listboxes</title>
+<para>
+Listboxes are the most complicated components
+<literal remap="tt">newt</literal> provides. They can
allow a single selection or multiple selection, and are easy to update.
-Unfortunately, their API is also the least consistent of <tt/newt/'s
-components.
-
-Each entry in a listbox is a ordered pair of the text which should be
-displayed for that item and a <bf/key/, which is a <tt/void */ that
+Unfortunately, their API is also the least consistent of <literal remap="tt">newt</literal>'s
+components. Each entry in a listbox is a ordered pair of the text which should be
+displayed for that item and a <emphasis remap="bf">key</emphasis>, which is a <literal remap="tt">void *</literal> that
uniquely identifies that listbox item. Many applications pass integers in
as keys, but using arbitrary pointers makes many applications significantly
-easier to code.
+easier to code.</para>
-<sect2>Basic Listboxes
+<sect3><title>Basic Listboxes</title>
-<p>
+<para>
Let's start off by looking at the most important listbox functions.
-<tscreen><verb>
+
+<screen>
newtComponent newtListbox(int left, int top, int height, int flags);
int newtListboxAppendEntry(newtComponent co, const char * text,
const void * data);
void newtListboxSetWidth(newtComponent co, int width);
void newtListboxSetCurrent(newtComponent co, int num);
void newtListboxSetCurrentByKey(newtComponent co, void * key);
-</verb></tscreen>
+</screen></para>
+
+
-<p>
+<para>
A listbox is created at a certain position and a given height. The
-<tt/height/ is used for two things. First of all, it is the minimum
+<literal remap="tt">height</literal> is used for two things. First of all, it is the minimum
height the listbox will use. If there are less items in the listbox then
the height, suggests the listbox will still take up that minimum amount
of space. Secondly, if the listbox is set to be scrollable (by setting
-the <tt/NEWT_FLAG_SCROLL flag/, the <tt/height/ is also the maximum height
+the <literal remap="tt">NEWT_FLAG_SCROLL flag</literal>, the <literal remap="tt">height</literal> is also the maximum height
of the listbox. If the listbox may not scroll, it increases its height to
display all of its items.
The following flags may be used when creating a listbox:
-<descrip>
-<tag/NEWT_FLAG_SCROLL/ The listbox should scroll to display all of the
-items it contains.
-<tag/NEWT_FLAG_RETURNEXIT/ When the user presses return on an item in the
-list, the form should return.
-<tag/NEWT_FLAG_BORDER/ A frame is drawn around the listbox, which can make
+<variablelist>
+
+<varlistentry>
+<term>NEWT_FLAG_SCROLL</term>
+<listitem>
+<para>The listbox should scroll to display all of the
+items it contains.</para></listitem>
+</varlistentry>
+<varlistentry>
+<term>NEWT_FLAG_RETURNEXIT</term>
+<listitem>
+<para>When the user presses return on an item in the
+list, the form should return.</para></listitem>
+</varlistentry>
+<varlistentry>
+<term>NEWT_FLAG_BORDER</term>
+<listitem>
+<para>A frame is drawn around the listbox, which can make
it easier to see which listbox has the focus when a form contains multiple
-listboxes.
-<tag/NEWT_FLAG_MULTIPLE/ By default, a listbox only lets the user select
+listboxes.</para></listitem>
+</varlistentry>
+<varlistentry>
+<term>NEWT_FLAG_MULTIPLE</term>
+<listitem>
+<para>By default, a listbox only lets the user select
one item in the list at a time. When this flag is specified, they may
-select multiple items from the list.
-</descrip>
+select multiple items from the list.</para></listitem></varlistentry>
+</variablelist></para>
-<p>
+
+<para>
Once a listbox has been created, items are added to it by invoking
-<tt/newtListboxAppendEntry()/, which adds new items to the end of the list.
-In addition to the listbox component, <tt/newtListboxAppendEntry()/ needs
+<literal remap="tt">newtListboxAppendEntry()</literal>, which adds new items to the end of the list.
+In addition to the listbox component, <literal remap="tt">newtListboxAppendEntry()</literal> needs
both elements of the (text, key) ordered pair.
-For lists which only allow a single selection, <tt/newtListboxGetCurrent()/
+For lists which only allow a single selection, <literal remap="tt">newtListboxGetCurrent()</literal>
should be used to find out which listbox item is currently selected. It
returns the key of the currently selected item.
Normally, a listbox is as wide as it's widest element, plus space for a
scrollbar if the listbox is supposed to have one. To make the listbox
-any larger then that, use <tt/newtListboxSetWidth()/, which overrides the
+any larger then that, use <literal remap="tt">newtListboxSetWidth()</literal>, which overrides the
natural lis of the listbox. Once the width has been set, it's fixed. The
listbox will no longer grow to accomodate new entries, so bad things may
happen!
An application can change the current position of the listbox (where the
-selection bar is displayed) by calling <tt/newtListboxSetCurrent()/ or
-<tt/newtListboxSetCurrentByKey()/. The first sets the current position to the
+selection bar is displayed) by calling <literal remap="tt">newtListboxSetCurrent()</literal> or
+<literal remap="tt">newtListboxSetCurrentByKey()</literal>. The first sets the current position to the
entry number which is passed as the second argument, with 0 indicating
-the first entry. <tt/newtListboxSetCurrentByKey()/ sets the current position
-to the entry whose <tt/key/ is passed into the function.
+the first entry. <literal remap="tt">newtListboxSetCurrentByKey()</literal> sets the current position
+to the entry whose <literal remap="tt">key</literal> is passed into the function.</para></sect3>
+
-<sect2>Manipulating Listbox Contents
+<sect3><title>Manipulating Listbox Contents</title>
-<p>
+<para>
While the contents of many listboxes never need to change, some applications
-need to change the contents of listboxes regularly. <tt/Newt/ includes
+need to change the contents of listboxes regularly. <literal remap="tt">Newt</literal> includes
complete support for updating listboxes. These new functions are in
-addtion to <tt/newtListboxAppendEntry()/, which was already discussed.
+addtion to <literal remap="tt">newtListboxAppendEntry()</literal>, which was already discussed.
-<tscreen><verb>
+
+<screen>
void newtListboxSetEntry(newtComponent co, void * key, const char * text);
int newtListboxInsertEntry(newtComponent co, const char * text,
const void * data, void * key);
int newtListboxDeleteEntry(newtComponent co, void * key);
void newtListboxClear(newtComponent co);
-</verb></tscreen>
+</screen></para>
+
-<p>
-The first of these, <tt/newtListboxSetEntry()/, updates the text for a
-key which is already in the listbox. The <tt/key/ specifies which listbox
-entry should be modified, and <tt/text/ becomes the new text for that entry
+
+<para>
+The first of these, <literal remap="tt">newtListboxSetEntry()</literal>, updates the text for a
+key which is already in the listbox. The <literal remap="tt">key</literal> specifies which listbox
+entry should be modified, and <literal remap="tt">text</literal> becomes the new text for that entry
in the listbox.
-<tt/newtListboxInsertEntry()/ inserts a new listbox entry <bf/after/ an
-already existing entry, which is specified by the <tt/key/ parameter.
-The <tt/text/ and <tt/data/ parameters specify the new entry which should
+<literal remap="tt">newtListboxInsertEntry()</literal> inserts a new listbox entry <emphasis remap="bf">after</emphasis> an
+already existing entry, which is specified by the <literal remap="tt">key</literal> parameter.
+The <literal remap="tt">text</literal> and <literal remap="tt">data</literal> parameters specify the new entry which should
be added.
Already-existing entries are removed from a listbox with
-<tt/newtListboxDeleteEntry()/. It removes the listbox entry with the
-specified <tt/key/. If you want to remove all of the entries from a
-listbox, use <tt/newtListboxClear()/.
+<literal remap="tt">newtListboxDeleteEntry()</literal>. It removes the listbox entry with the
+specified <literal remap="tt">key</literal>. If you want to remove all of the entries from a
+listbox, use <literal remap="tt">newtListboxClear()</literal>.</para></sect3>
+
-<sect2>Multiple Selections
+<sect3><title>Multiple Selections</title>
-<p>
-When a listbox is created with <tt/NEWT_FLAG_MULTIPLE/, the user can select
+<para>
+When a listbox is created with <literal remap="tt">NEWT_FLAG_MULTIPLE</literal>, the user can select
multiple items from the list. When this option is used, a different set of
functions must be used to manipulate the listbox selection.
-<tscreen><verb>
+
+<screen>
void newtListboxClearSelection(newtComponent co);
void **newtListboxGetSelection(newtComponent co, int *numitems);
void newtListboxSelectItem(newtComponent co, const void * key,
enum newtFlagsSense sense);
-</verb></tscreen>
+</screen>
+
-The simplest of these is <tt/newtListboxClearSelection()/, which deselects
+The simplest of these is <literal remap="tt">newtListboxClearSelection()</literal>, which deselects
all of the items in the list (listboxes which allow multiple selections
-also allow zero selections). <tt/newtListboxGetSelection()/ returns a
+also allow zero selections). <literal remap="tt">newtListboxGetSelection()</literal> returns a
pointer to an array which contains the keys for all of the items in the
-listbox currently selected. The <tt/int/ pointed to by <tt/numitems/ is
+listbox currently selected. The <literal remap="tt">int</literal> pointed to by <literal remap="tt">numitems</literal> is
set to the number of items currently selected (and hence the number of
items in the returned array). The returned array is dynamically allocated,
-and must be released through <tt/free()/.
+and must be released through <literal remap="tt">free()</literal>.
+
+<literal remap="tt">newtListboxSelectItem()</literal> lets the program select and deselect specific
+listbox entries. The <literal remap="tt">key</literal> of the listbox entry is being affected is
+passed, and <literal remap="tt">sense</literal> is one of <literal remap="tt">NEWT_FLAGS_RESET</literal>, which deselects
+the entry, <literal remap="tt">NEWT_FLAGS_SET</literal>, which selects the entry, or
+<literal remap="tt">NEWT_FLAGS_TOGGLE</literal>, which reverses the current selection status.</para></sect3></sect2>
-<tt/newtListboxSelectItem()/ lets the program select and deselect specific
-listbox entries. The <tt/key/ of the listbox entry is being affected is
-passed, and <tt/sense/ is one of <tt/NEWT_FLAGS_RESET/, which deselects
-the entry, <tt/NEWT_FLAGS_SET/, which selects the entry, or
-<tt/NEWT_FLAGS_TOGGLE/, which reverses the current selection status.
-<!-- FIXME XXX - I skipped these
-void newtListboxSetData(newtComponent co, int num, void * key);
-void newtListboxGetEntry(newtComponent co, int num, char **text, void **data);
--->
-<sect1>Advanced Forms
+<sect2><title>Advanced Forms</title>
-<p>
+<para>
Forms, which tie components together, are quite important in the world of
-<tt/newt/. While we've already discussed the basics of forms, we've omitted
-many of the details.
+<literal remap="tt">newt</literal>. While we've already discussed the basics of forms, we've omitted
+many of the details.</para>
-<sect2>Exiting From Forms
-<p>
+<sect3><title>Exiting From Forms</title>
+
+<para>
Forms return control to the application for a number of reasons:
-<itemize>
-<item>A component can force the form to exit. Buttons do this whenever they
-are pushed, and other components exit when <tt/NEWT_FLAG_RETURNEXIT/ has
-been specified.
-<item>Applications can setup hot keys which cause the form to exit when
-they are pressed.
-<item><tt/Newt/ can exit when file descriptors are ready to be read or
+
+<itemizedlist>
+<listitem>
+
+<para>
+A component can force the form to exit. Buttons do this whenever they
+are pushed, and other components exit when <literal remap="tt">NEWT_FLAG_RETURNEXIT</literal> has
+been specified.</para></listitem>
+<listitem>
+
+<para>
+Applications can setup hot keys which cause the form to exit when
+they are pressed.</para></listitem>
+<listitem>
+
+<para>
+<literal remap="tt">Newt</literal> can exit when file descriptors are ready to be read or
ready to be written to.
-</itemize>
+</para>
+</listitem></itemizedlist>
-By default, <tt/newt/ forms exit when the F12 key is pressed (F12 is setup
-as a hot key by default). <tt/Newt/ applications should treat F12 as an
+By default, <literal remap="tt">newt</literal> forms exit when the F12 key is pressed (F12 is setup
+as a hot key by default). <literal remap="tt">Newt</literal> applications should treat F12 as an
``Ok'' button. If applications don't want F12 to exit the form, they can
-specify <tt/NEWT_FLAG_NOF12/ as flag when creating the form with
-<tt/newtForm/.
+specify <literal remap="tt">NEWT_FLAG_NOF12</literal> as flag when creating the form with
+<literal remap="tt">newtForm</literal>.
+
-<tscreen><verb>
+<screen>
void newtFormAddHotKey(newtComponent co, int key);
void newtFormWatchFd(newtComponent form, int fd, int fdFlags);
-</verb></tscreen>
+</screen>
-<tscreen><verb>
+
+
+<screen>
void newtDrawForm(newtComponent form);
newtComponent newtFormGetCurrent(newtComponent co);
void newtFormSetCurrent(newtComponent co, newtComponent subco);
void newtFormRun(newtComponent co, struct newtExitStruct * es);
-</verb></tscreen>
+</screen>
+
+
-<tscreen><verb>
+<screen>
newtComponent newtForm(newtComponent vertBar, const char * help, int flags);
void newtFormSetBackground(newtComponent co, int color);
void newtFormSetHeight(newtComponent co, int height);
void newtFormSetWidth(newtComponent co, int width);
-</verb></tscreen>
-
-
-<!-- make sure we discuss this when we get to grids
- void newtFormSetSize(newtComponent co); -->
-
+</screen>
+</para>
+</sect3>
+</sect2>
+</sect1>
</article>
+