X-Git-Url: http://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=doc%2Fhtml%2Fman%2Fpanel.3x.html;h=2d44419f087ac783a068a302ec4c46efe038a883;hp=a8ba3393648d8aa254390b0c2c762b2ea4b7d781;hb=47d2fb4537d9ad5bb14f4810561a327930ca4280;hpb=cccf831ed7c83410c7f6cec2a43e71e9c4278b4c diff --git a/doc/html/man/panel.3x.html b/doc/html/man/panel.3x.html index a8ba3393..2d44419f 100644 --- a/doc/html/man/panel.3x.html +++ b/doc/html/man/panel.3x.html @@ -1,6 +1,7 @@ @@ -34,7 +35,7 @@ panel 3x - + @@ -58,7 +59,7 @@ int bottom_panel(PANEL *pan); int top_panel(PANEL *pan); int show_panel(PANEL *pan); - void update_panels(); + void update_panels(void); int hide_panel(PANEL *pan); WINDOW *panel_window(const PANEL *pan); int replace_panel(PANEL *pan, WINDOW *window); @@ -79,7 +80,7 @@ currently visible panels is the stack of panels. The stdscr window is beneath all panels, and is not considered part of the stack. - A window is associated with every panel. The panel routines enable you + A window is associated with every panel. The panel routines enable you to create, move, hide, and show panels, as well as position a panel at any desired location in the stack. @@ -94,12 +95,12 @@ above any other panel) and returns a pointer to the new panel. update_panels - refreshes the virtual screen to reflect the relations between + refreshes the virtual screen to reflect the relations between the panels in the stack, but does not call doupdate to refresh - the physical screen. Use this function and not wrefresh or + the physical screen. Use this function and not wrefresh or wnoutrefresh. update_panels may be called more than once before a call to doupdate, but doupdate is the function responsible for - updating the physical screen. + updating the physical screen. del_panel(pan) removes the given panel from the stack and deallocates the @@ -107,7 +108,7 @@ hide_panel(pan) removes the given panel from the panel stack and thus hides it - from view. The PANEL structure is not lost, merely removed from + from view. The PANEL structure is not lost, merely removed from the stack. panel_hidden(pan) @@ -116,7 +117,7 @@ show_panel(pan) makes a hidden panel visible by placing it on top of the panels - in the panel stack. See COMPATIBILITY below. + in the panel stack. See COMPATIBILITY below. top_panel(pan) puts the given visible panel on top of all panels in the stack. @@ -167,16 +168,16 @@ Reasonable care has been taken to ensure compatibility with the native panel facility introduced in System V (inspection of the SVr4 manual pages suggests the programming interface is unchanged). The - PANEL data structures are merely similar. The programmer is cautioned - not to directly use PANEL fields. + PANEL data structures are merely similar. The programmer is cau- + tioned not to directly use PANEL fields. The functions show_panel and top_panel are identical in this implemen- tation, and work equally well with displayed or hidden panels. In the native System V implementation, show_panel is intended for making a hidden panel visible (at the top of the stack) and top_panel is intended for making an already-visible panel move to the top of the - stack. You are cautioned to use the correct function to ensure compati- - bility with native panel libraries. + stack. You are cautioned to use the correct function to ensure compat- + ibility with native panel libraries.

NOTE

@@ -204,7 +205,7 @@
 

SEE ALSO

        curses(3x), curs_variables(3x),
 
-       This describes ncurses version 6.1 (patch 20180519).
+       This describes ncurses version 6.2 (patch 20200212).
 
 
 

AUTHOR