Lines Matching full:panel
38 * Creation of a new panel
40 #include "panel.priv.h"
48 static PANEL *
51 PANEL *result = typeMalloc(PANEL, 1); in AllocPanel()
62 #define AllocPanel(name) typeMalloc(PANEL, 1)
68 Get root (i.e. stdscr's) panel.
69 Establish the pseudo panel for stdscr if necessary.
71 static PANEL *
81 if (_nc_stdscr_pseudo_panel == (PANEL *)0) in root_panel()
91 PANEL *pan = _nc_stdscr_pseudo_panel; in root_panel()
95 pan->below = (PANEL *)0; in root_panel()
96 pan->above = (PANEL *)0; in root_panel()
104 PANEL_EXPORT(PANEL *)
107 PANEL *pan = (PANEL *)0; in new_panel()
123 pan->above = (PANEL *)0; in new_panel()
124 pan->below = (PANEL *)0; in new_panel()