Lines Matching refs:panel
41 top_panel(PANEL *panel) in top_panel() argument
46 if (!panel || panel == panel -> below) in top_panel()
51 if (_Top_panel == panel) in top_panel()
59 if ((obs = panel -> obscured) != 0) { in top_panel()
69 prev_obs -> panel_p = panel; in top_panel()
71 while (obs != panel -> obscured); in top_panel()
72 panel -> obscured = 0; in top_panel()
77 if (panel == _Bottom_panel) in top_panel()
78 (_Bottom_panel = panel -> above) -> below = 0; in top_panel()
80 panel -> above -> below = panel -> below; in top_panel()
81 panel -> below -> above = panel -> above; in top_panel()
84 panel -> above = 0; in top_panel()
85 panel -> below = _Top_panel; in top_panel()
86 _Top_panel = _Top_panel -> above = panel; in top_panel()
87 (void) touchwin(panel -> win); in top_panel()