NAME


form - curses extension for programming forms

SYNOPSIS


#include <form.h>

DESCRIPTION


The form library provides terminal-independent facilities for composing form screens on character-cell terminals. The library includes: field routines, which create and modify form fields; and form routines, which group fields into forms, display forms on the screen, and handle interaction with the user.

The form library uses the curses libraries, and a curses initialization routine such as initscr must be called before using any of these functions. To use the form library, link with the options -lform -lcurses.

Current Default Values for Field Attributes

The form library maintains a default value for field attributes. You can get or set this default by calling the appropriate set_ or retrieval routine with a NULL field pointer. Changing this default with a set_ function affects future field creations, but does not change the rendering of fields already created.

Routine Name Index

The following table lists each form routine and the name of the manual page on which it is described.
curses Routine NameManual Page Name
current_fieldpage(3FORM)
data_aheaddata(3FORM)
data_behinddata(3FORM)
dup_fieldfield_new(3FORM)
dynamic_field_infofield_info(3FORM)
field_argfield_validation(3FORM)
field_backfield_attributes(3FORM)
field_bufferfield_buffer(3FORM)
field_countfield(3FORM)
field_forefield_attributes(3FORM)
field_indexpage(3FORM)
field_infofield_info(3FORM)
field_inithook(3FORM)
field_justfield_just(3FORM)
field_optsfield_opts(3FORM)
field_opts_offfield_opts(3FORM)
field_opts_onfield_opts(3FORM)
field_padfield_attributes(3FORM)
field_statusfield_buffer(3FORM)
field_termhook(3FORM)
field_typefield_validation(3FORM)
field_userptrfield_userptr(3FORM)
form_driverdriver(3FORM)
form_fieldsfield(3FORM)
form_inithook(3FORM)
form_optsopts(3FORM)
form_opts_offopts(3FORM)
form_opts_onopts(3FORM)
form_pagepage(3FORM)
form_request_by_namerequestname(3FORM)
form_request_namerequestname(3FORM)
form_subwin(3FORM)
form_termhook(3FORM)
form_userptruserptr(3FORM)
form_winwin(3FORM)
free_fieldfield_new(3FORM)
free_fieldtypefieldtype(3FORM)
free_formnew(3FORM)
link_fieldfield_new(3FORM)
link_fieldtypefieldtype(3FORM)
move_fieldfield(3FORM)
new_fieldfield_new(3FORM)
new_fieldtypefieldtype(3FORM)
new_formnew(3FORM)
new_pagenew_page(3FORM)
pos_form_cursorcursor(3FORM)
post_formpost(3FORM)
scale_formwin(3FORM)
set_current_fieldpage(3FORM)
set_field_backfield_attributes(3FORM)
set_field_bufferfield_buffer(3FORM)
set_field_forefield_attributes(3FORM)
set_field_inithook(3FORM)
set_field_justfield_just(3FORM)
set_field_optsfield_opts(3FORM)
set_field_padfield_attributes(3FORM)
set_field_statusfield_buffer(3FORM)
set_field_termhook(3FORM)
set_field_typefield_validation(3FORM)
set_field_userptrfield_userptr(3FORM)
set_fieldtype_argfieldtype(3FORM)
set_fieldtype_choicefieldtype(3FORM)
set_form_fieldsfield(3FORM)
set_form_inithook(3FORM)
set_form_optsfield_opts(3FORM)
set_form_pagepage(3FORM)
set_form_subwin(3FORM)
set_form_termhook(3FORM)
set_form_userptruserptr(3FORM)
set_form_winwin(3FORM)
set_max_fieldfield_buffer(3FORM)
set_new_pagenew_page(3FORM)
unpost_formpost(3FORM)

RETURN VALUE


Routines that return pointers return NULL on error, and set errno to the corresponding error-code returned by functions returning an integer. Routines that return an integer return one of the following error codes:
E_OK The routine succeeded.
E_BAD_ARGUMENT
 Routine detected an incorrect or out-of-range argument.
E_BAD_STATE
 Routine was called from an initialization or termination function.
E_CONNECTED
 The field is already connected to a form.
E_INVALID_FIELD
 Contents of a field are not valid.
E_NOT_CONNECTED
 No fields are connected to the form.
E_NOT_POSTED
 The form has not been posted.
E_NO_ROOM
 Form is too large for its window.
E_POSTED
 The form is already posted.
E_REQUEST_DENIED
 The form driver could not process the request.
E_SYSTEM_ERROR
 System error occurred (see errno).
E_UNKNOWN_COMMAND
 The form driver code saw an unknown request code.

SEE ALSO


ncurses(3NCURSES) and related pages whose names begin "form_" for detailed descriptions of the entry points.

NOTES


The header file <form.h> automatically includes the header files <curses.h> and <eti.h>.

In your library list, libform.a should be before libncurses.a; that is, you want to say ‘-lform -lncurses’, not the other way around (which would give you a link error using most linkers).

PORTABILITY


These routines emulate the System V forms library. They were not supported on Version 7 or BSD versions.

AUTHORS


Juergen Pfeifer. Manual pages and adaptation for ncurses by Eric S. Raymond.

SEE ALSO


This describes ncurses version 5.6 (patch 20080804).

openSUSE Logo

Contents