Searched refs:PANEL (Results 1 - 20 of 20) sorted by relevance

/freebsd-11-stable/contrib/ncurses/panel/
H A Dpanel.h50 } PANEL; typedef in typeref:struct:panel
56 extern NCURSES_EXPORT(WINDOW*) panel_window (const PANEL *);
58 extern NCURSES_EXPORT(int) hide_panel (PANEL *);
59 extern NCURSES_EXPORT(int) show_panel (PANEL *);
60 extern NCURSES_EXPORT(int) del_panel (PANEL *);
61 extern NCURSES_EXPORT(int) top_panel (PANEL *);
62 extern NCURSES_EXPORT(int) bottom_panel (PANEL *);
63 extern NCURSES_EXPORT(PANEL*) new_panel (WINDOW *);
64 extern NCURSES_EXPORT(PANEL*) panel_above (const PANEL *);
[all...]
H A Dp_below.c42 NCURSES_EXPORT(PANEL *)
51 returnPanel(EMPTY_STACK()? (PANEL *) 0 : _nc_top_panel);
63 NCURSES_EXPORT(PANEL *)
64 panel_below(const PANEL * pan)
66 PANEL *result;
73 result = Is_Pseudo(pan->below) ? (PANEL *) 0 : pan->below;
81 result = EMPTY_STACK()? (PANEL *) 0 : _nc_top_panel;
H A Dp_new.c52 static PANEL *
62 if (_nc_stdscr_pseudo_panel == (PANEL *) 0)
69 _nc_stdscr_pseudo_panel = typeMalloc(PANEL, 1);
72 PANEL *pan = _nc_stdscr_pseudo_panel;
76 pan->below = (PANEL *) 0;
77 pan->above = (PANEL *) 0;
91 NCURSES_EXPORT(PANEL *)
94 PANEL *pan = (PANEL *) 0;
107 if (!(win->_flags & _ISPAD) && (pan = typeMalloc(PANEL,
[all...]
H A Dp_above.c42 NCURSES_EXPORT(PANEL *)
65 NCURSES_EXPORT(PANEL *)
66 panel_above(const PANEL * pan)
68 PANEL *result;
80 result = EMPTY_STACK()? (PANEL *) 0 : _nc_bottom_panel->above;
H A Dp_top.c42 top_panel(PANEL * pan)
H A Dp_win.c42 panel_window(const PANEL * pan)
H A Dp_move.c43 move_panel(PANEL * pan, int starty, int startx)
55 PANEL_UPDATE(pan, (PANEL *) 0);
H A Dp_replace.c42 replace_panel(PANEL * pan, WINDOW *win)
54 PANEL_UPDATE(pan, (PANEL *) 0);
H A Dp_hidden.c43 panel_hidden(const PANEL * pan)
H A Dp_user.c42 set_panel_userptr(PANEL * pan, NCURSES_CONST void *uptr)
52 panel_userptr(const PANEL * pan)
H A Dpanel.c45 NCURSES_EXPORT(PANEL *)
46 _nc_retrace_panel(PANEL * pan)
77 _nc_dPanel(const char *text, const PANEL * pan)
92 _nc_dStack(const char *fmt, int num, const PANEL * pan)
118 _nc_Wnoutrefresh(const PANEL * pan)
130 _nc_Touchpan(const PANEL * pan)
142 _nc_Touchline(const PANEL * pan, int start, int count)
H A Dp_show.c42 show_panel(PANEL * pan)
64 pan->above = (PANEL *) 0;
H A Dp_delete.c43 del_panel(PANEL * pan)
H A Dp_hide.c42 hide_panel(register PANEL * pan)
H A Dpanel.priv.h65 extern NCURSES_EXPORT(PANEL *) _nc_retrace_panel (PANEL *);
66 extern NCURSES_EXPORT(void) _nc_dPanel (const char*, const PANEL*);
67 extern NCURSES_EXPORT(void) _nc_dStack (const char*, int, const PANEL*);
68 extern NCURSES_EXPORT(void) _nc_Wnoutrefresh (const PANEL*);
69 extern NCURSES_EXPORT(void) _nc_Touchpan (const PANEL*);
70 extern NCURSES_EXPORT(void) _nc_Touchline (const PANEL*, int, int);
117 #define Is_Bottom(p) (((p) != (PANEL*)0) && !EMPTY_STACK() && (_nc_bottom_panel->above == (p)))
118 #define Is_Top(p) (((p) != (PANEL*)0) && !EMPTY_STACK() && (_nc_top_panel == (p)))
119 #define Is_Pseudo(p) (((p) != (PANEL*)
[all...]
H A Dp_update.c45 PANEL *pan;
H A Dp_bottom.c43 bottom_panel(PANEL * pan)
/freebsd-11-stable/contrib/gcc/
H A Dsys-protos.h134 extern int bottom_panel(PANEL *);
216 extern int del_panel(PANEL *);
535 extern int hide_panel(PANEL *);
739 extern int move_panel(PANEL *, int, int);
767 extern PANEL * new_panel(WINDOW *);
809 extern PANEL * panel_above(PANEL *);
810 extern PANEL * panel_below(PANEL *);
811 extern char * panel_userptr(PANEL *);
[all...]
H A Dsys-types.h197 typedef int PANEL; typedef
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DIOHandlerCursesGUI.cpp735 PANEL *m_panel;

Completed in 140 milliseconds