X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=doc%2Fhtml%2Fman%2Fpanel.3x.html;h=43c9b6787915d5342ce5c1169c99609b1a3c613a;hp=3afd9bad3582d28bde21919da5c585e91e9e7143;hb=e2e9c09c48b19b24979cafb2d4864f538b5ddd1c;hpb=db5f7f4f146a91ba8ec7f1df8e9d7f9d2d7c74fd diff --git a/doc/html/man/panel.3x.html b/doc/html/man/panel.3x.html index 3afd9bad..43c9b678 100644 --- a/doc/html/man/panel.3x.html +++ b/doc/html/man/panel.3x.html @@ -1,6 +1,6 @@ @@ -45,36 +45,33 @@ - -

NAME

+

NAME

        panel - panel stack extension for curses
 
 
-
-

SYNOPSIS

+

SYNOPSIS

        #include <panel.h>
 
        cc [flags] sourcefiles -lpanel -lncurses
 
-       PANEL *new_panel(WINDOW *win)
-       int bottom_panel(PANEL *pan)
-       int top_panel(PANEL *pan)
-       int show_panel(PANEL *pan)
+       PANEL *new_panel(WINDOW *win);
+       int bottom_panel(PANEL *pan);
+       int top_panel(PANEL *pan);
+       int show_panel(PANEL *pan);
        void update_panels();
-       int hide_panel(PANEL *pan)
-       WINDOW *panel_window(const PANEL *pan)
-       int replace_panel(PANEL *pan, WINDOW *window)
-       int move_panel(PANEL *pan, int starty, int startx)
-       int panel_hidden(const PANEL *pan)
-       PANEL *panel_above(const PANEL *pan)
-       PANEL *panel_below(const PANEL *pan)
-       int set_panel_userptr(PANEL *pan, const void *ptr)
-       const void *panel_userptr(const PANEL *pan)
-       int del_panel(PANEL *pan)
-
-
-
-

DESCRIPTION

+       int hide_panel(PANEL *pan);
+       WINDOW *panel_window(const PANEL *pan);
+       int replace_panel(PANEL *pan, WINDOW *window);
+       int move_panel(PANEL *pan, int starty, int startx);
+       int panel_hidden(const PANEL *pan);
+       PANEL *panel_above(const PANEL *pan);
+       PANEL *panel_below(const PANEL *pan);
+       int set_panel_userptr(PANEL *pan, const void *ptr);
+       const void *panel_userptr(const PANEL *pan);
+       int del_panel(PANEL *pan);
+
+
+

DESCRIPTION

        Panels  are  curses(3x)  windows with the added feature of
        depth.  Panel functions allow the use of  stacked  windows
        and  ensure  the  proper  portions  of each window and the
@@ -94,8 +91,7 @@
        minfo curses does.
 
 
-
-

FUNCTIONS

+

FUNCTIONS

        new_panel(win)
               allocates   a   PANEL structure, associates it with
               win, places the panel  on  the  top  of  the  stack
@@ -172,15 +168,13 @@
               returns a pointer to the window of the given panel.
 
 
-
-

DIAGNOSTICS

+

DIAGNOSTICS

        Each  routine  that  returns  a pointer returns NULL if an
        error occurs. Each  routine  that  returns  an  int  value
        returns OK if it executes successfully and ERR if not.
 
 
-
-

COMPATIBILITY

+

COMPATIBILITY

        Reasonable  care  has been taken to  ensure  compatibility
        with  the  native  panel  facility  introduced  in  SVr3.2
        (inspection of the SVr4 manual pages suggests the program-
@@ -199,30 +193,26 @@
        libraries.
 
 
-
-

NOTE

+

NOTE

        In your library list, libpanel.a should  be  before  libn-
        curses.a;  that  is,  you want to say `-lpanel -lncurses',
        not the other way around (which would usually give a link-
        error).
 
 
-
-

FILES

+

FILES

        panel.h interface for the panels library
 
        libpanel.a the panels library itself
 
 
-
-

SEE ALSO

+

SEE ALSO

        curses(3x), curs_variables(3x),
 
-       This describes ncurses version 6.0 (patch 20150606).
+       This describes ncurses version 6.0 (patch 20160910).
 
 
-
-

AUTHOR

+

AUTHOR

        Originally   written   by   Warren  Tucker  <wht@n4hgf.mt-
        park.ga.us>, primarily to assist  in  porting  u386mon  to
        systems  without  a native panels library.  Repackaged for