Curses Library Functions panelnew(3CURSES)
NAME
panelnew, newpanel, delpanel - create and destroy panels
SYNOPSIS
cc [ flag ... ] file ... -lpanel -lcurses [ library .. ]
#include
PANEL *newpanel(WINDOW *win);
int delpanel(PANEL *panel);
DESCRIPTION
newpanel() creates a new panel associated with win and
returns the panel pointer. The new panel is placed on top of
the panel deck.
delpanel() destroys panel, but not its associated window.
RETURN VALUES
newpanel() returns NUL if an error occurs.
delwin() returns OK if successful, ER otherwise.
ATRIBUTES
See attributes(5) for descriptions of the following attri-
butes:
ATRIBUTE TYPE ATRIBUTE VALUE
MT-Level Unsafe
SEE ALSO
curses(3CURSES), panelupdate(3CURSES), panels(3CURSES),
attributes(5)
NOTES
The header automatically includes the header
.
SunOS 5.11 Last change: 31 Dec 1996 1
|