You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.3 KiB
C
42 lines
1.3 KiB
C
/* Public Domain Curses */
|
|
|
|
/*----------------------------------------------------------------------*
|
|
* Panels for PDCurses *
|
|
*----------------------------------------------------------------------*/
|
|
|
|
#ifndef __PDCURSES_PANEL_H__
|
|
#define __PDCURSES_PANEL_H__ 1
|
|
|
|
#include <curses.h>
|
|
|
|
#if defined(__cplusplus) || defined(__cplusplus__) || defined(__CPLUSPLUS)
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
typedef struct panel PANEL;
|
|
|
|
PDCEX int bottom_panel(PANEL *pan);
|
|
PDCEX int del_panel(PANEL *pan);
|
|
PDCEX int hide_panel(PANEL *pan);
|
|
PDCEX int move_panel(PANEL *pan, int starty, int startx);
|
|
PDCEX PANEL *new_panel(WINDOW *win);
|
|
PDCEX PANEL *panel_above(const PANEL *pan);
|
|
PDCEX PANEL *panel_below(const PANEL *pan);
|
|
PDCEX PANEL *ground_panel(SCREEN *sp);
|
|
PDCEX PANEL *ceiling_panel(SCREEN *sp);
|
|
PDCEX int panel_hidden(const PANEL *pan);
|
|
PDCEX const void *panel_userptr(const PANEL *pan);
|
|
PDCEX WINDOW *panel_window(const PANEL *pan);
|
|
PDCEX int replace_panel(PANEL *pan, WINDOW *win);
|
|
PDCEX int set_panel_userptr(PANEL *pan, const void *uptr);
|
|
PDCEX int show_panel(PANEL *pan);
|
|
PDCEX int top_panel(PANEL *pan);
|
|
PDCEX void update_panels(void);
|
|
|
|
#if defined(__cplusplus) || defined(__cplusplus__) || defined(__CPLUSPLUS)
|
|
}
|
|
#endif
|
|
|
|
#endif /* __PDCURSES_PANEL_H__ */
|