panels(3curses)


panels -- character based panels package

Synopsis

   cc [flag . . .] file -lpanel -lcurses [library . . .] 
   

#include <panel.h>

Description

The panel library is built using the curses library, and any program using panels routines must call one of the curses initialization routines such as initscr. A program using these routines must be compiled with -lpanel and -lcurses on the cc command line.

The panels package gives the applications programmer a way to have depth relationships between curses windows; a curses window is associated with every panel. The panels routines allow curses windows to overlap without making visible the overlapped portions of underlying windows. The initial curses window, stdscr, lies beneath all panels. The set of currently visible panels is the deck of panels.

The panels package allows the applications programmer to create panels, fetch and set their associated windows, shuffle panels in the deck, and manipulate panels in other ways.

Routine name index

The following table lists each panels routine and the name of the manual page on which it is described.

panels Routine Name Manual Page Name
bottom_panelpanel_top(3curses)  
del_panelpanel_new(3curses)  
hide_panelpanel_show(3curses)  
move_panelpanel_move(3curses)  
new_panelpanel_new(3curses)  
panel_abovepanel_above(3curses)  
panel_belowpanel_above(3curses)  
panel_hiddenpanel_show(3curses)  
panel_userptrpanel_userptr(3curses)  
panel_windowpanel_window(3curses)  
replace_panelpanel_window(3curses)  
set_panel_userptrpanel_userptr(3curses)  
show_panelpanel_show(3curses)  
top_panelpanel_top(3curses)  
update_panelspanel_update(3curses)  

 
 panels Routine Name    Manual Page Name 
 panel_top(3curses) 
 panel_new(3curses) 
 panel_show(3curses) 
 panel_move(3curses) 
 panel_new(3curses) 
 panel_above(3curses) 
 panel_above(3curses) 
 panel_show(3curses) 
 panel_userptr(3curses) 
 panel_window(3curses) 
 panel_window(3curses) 
 panel_userptr(3curses) 
 panel_show(3curses) 
 panel_top(3curses) 
 panel_update(3curses) 

<Return> value

Each panels routine that returns a pointer to an object returns NULL if an error occurs. Each panel routine that returns an integer, returns OK if it executes successfully and ERR if it does not.

Notices

The header file panel.h automatically includes the header file curses.h.

References

curses(3curses), and 3curses pages whose names begin with panel_, for detailed routine descriptions
30 January 1998
© 1998 The Santa Cruz Operation, Inc. All rights reserved.