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_panel | panel_top3CURSES |
del_panel | panel_new3CURSES |
hide_panel | panel_show3CURSES |
move_panel | panel_move3CURSES |
new_panel | panel_new3CURSES |
panel_above | panel_above3CURSES |
panel_below | panel_above3CURSES |
panel_hidden | panel_show3CURSES |
panel_userptr | panel_userptr3CURSES |
panel_window | panel_window3CURSES |
replace_panel | panel_window3CURSES |
set_panel_userptr | panel_userptr3CURSES |
show_panel | panel_show3CURSES |
top_panel | panel_top3CURSES |
update_panels | panel_update3CURSES |
|
|