X-Git-Url: https://ncurses.scripts.mit.edu/?a=blobdiff_plain;f=doc%2Fhtml%2Fman%2Fform_win.3x.html;h=2c870e095a61cb38e609c29128b8a00c50cada53;hb=81304798ee736c467839c779c9ca5dca48db7bea;hp=60b23b6ea30f40aef9cc8f26fe99ec884e682e10;hpb=17c5992a16be94247b83f2bbb9accdd9b7e7bb72;p=ncurses.git diff --git a/doc/html/man/form_win.3x.html b/doc/html/man/form_win.3x.html index 60b23b6e..2c870e09 100644 --- a/doc/html/man/form_win.3x.html +++ b/doc/html/man/form_win.3x.html @@ -1,7 +1,8 @@ - @@ -35,7 +36,7 @@ form_win 3x - + @@ -52,29 +53,32 @@

SYNOPSIS

        #include <form.h>
-       int set_form_win(FORM *form, WINDOW *win);
-       WINDOW *form_win(const FORM *form);
-       int set_form_sub(FORM *form, WINDOW *sub);
-       WINDOW *form_sub(const FORM *form);
-       int scale_form(const FORM *form, int *rows, int *columns);
+
+       int set_form_win(FORM *form, WINDOW *win);
+       WINDOW *form_win(const FORM *form);
+
+       int set_form_sub(FORM *form, WINDOW *sub);
+       WINDOW *form_sub(const FORM *form);
+
+       int scale_form(const FORM *form, int *rows, int *columns);
 
 
 

DESCRIPTION

        Every  form  has an associated pair of curses windows.  The form window
-       displays any title and border associated with the window; the form sub-
-       window  displays the items of the form that are currently available for
-       selection.
+       displays any title and border associated  with  the  window;  the  form
+       subwindow  displays  the items of the form that are currently available
+       for selection.
 
-       The first four functions get and set those windows.  It is  not  neces-
-       sary  to set either window; by default, the driver code uses stdscr for
-       both.
+       The first four  functions  get  and  set  those  windows.   It  is  not
+       necessary to set either window; by default, the driver code uses stdscr
+       for both.
 
        In the set_ functions, window argument of NULL is treated as though  it
        were stsdcr.  A form argument of NULL is treated as a request to change
        the system default form window or subwindow.
 
-       The function scale_form returns the minimum size required for the  sub-
-       window of form.
+       The function scale_form returns  the  minimum  size  required  for  the
+       subwindow of form.
 
 
 

RETURN VALUE

@@ -84,7 +88,7 @@
        E_OK The routine succeeded.
 
        E_SYSTEM_ERROR
-            System error occurred (see errno).
+            System error occurred (see errno(3)).
 
        E_BAD_ARGUMENT
             Routine detected an incorrect or out-of-range argument.
@@ -106,8 +110,8 @@
 
 
 

PORTABILITY

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

AUTHORS