man pages section 3: Curses Library Functions

Exit Print View

Updated: July 2014
 
 

panel_above(3CURSES)

Name

panel_above, panel_below - panels deck traversal primitives

Synopsis

cc [ flag ... ] file ... –lpanel –lcurses [ library .. ]
#include <panel.h>



PANEL *panel_above(PANEL *panel);
PANEL *panel_below(PANEL *panel);

Description

panel_above() returns a pointer to the panel just above panel, or NULL if panel is the top panel. panel_below() returns a pointer to the panel just below panel , or NULL if panel is the bottom panel.

If NULL is passed for panel, panel_above() returns a pointer to the bottom panel in the deck, and panel_below() returns a pointer to the top panel in the deck.

Return Values

NULL is returned if an error occurs.

Attributes

See attributes(5) for descriptions of the following attributes:

ATTRIBUTE TYPE
ATTRIBUTE VALUE
MT-Level
Unsafe

See also

curses(3CURSES), panels(3CURSES), attributes(5)

Notes

These routines allow traversal of the deck of currently visible panels.

The header <panel.h> automatically includes the header <curses.h>.