X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=doc%2Fhtml%2Fman%2Fpanel.3x.html;h=0a199d109bc5aadfc12ead49e4e67555149c0cf8;hp=5c36528c7eda9a3740acd494670f836036c2241c;hb=8f6d94b8d6211a2323caef53fa4c96c475ec9a62;hpb=8d3ea9021573747ecd129228ba7782a03243f62c diff --git a/doc/html/man/panel.3x.html b/doc/html/man/panel.3x.html index 5c36528c..0a199d10 100644 --- a/doc/html/man/panel.3x.html +++ b/doc/html/man/panel.3x.html @@ -1,6 +1,6 @@ - + panel 3x - + @@ -58,7 +58,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 +79,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 +94,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 +107,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 +116,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 +167,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 +204,7 @@
 

SEE ALSO

        curses(3x), curs_variables(3x),
 
-       This describes ncurses version 6.0 (patch 20171125).
+       This describes ncurses version 6.1 (patch 20190518).
 
 
 

AUTHOR