man.bsd.lv manual page server

Manual Page Search Parameters

NEW_PANEL(3) Library Functions Manual NEW_PANEL(3)

new_panel, panel_window, replace_panel, del_panelpanel routines

library “libpanel”

#include <panel.h>

PANEL *
new_panel(WINDOW *win);

WINDOW *
panel_window(PANEL *p);

int
replace_panel(PANEL *p, WINDOW *win);

int
del_panel(PANEL *p);

The function () creates a new panel associated with the curses window win. The new panel is visible and is placed at the top of the deck.

The curses window associated with a panel may be obtained with () and changed with ().

The function () hides the panel and deletes it. Note that the curses window associated with the panel is not deleted.

Functions returning pointers will return NULL if an error is detected. The functions that return an int will return one of the following values:

The function completed successfully.
An error occurred in the function.

panel(3)

October 28, 2015 NetBSD-9.2