Lines Matching refs:panel
45 touch_top(PANEL *panel, int line, _obscured_list *obs, int start_x, int end_x) in touch_top() argument
52 if ((next_obs = obs->next) == panel -> obscured -> next) in touch_top()
60 touch_top(panel, line, next_obs, in touch_top()
115 touchup(PANEL *panel) in touchup() argument
124 screen_y = panel->wendy; in touchup()
126 for (i = panel->wendy - panel->wstarty; i >= 0; screen_y--, i--) { in touchup()
127 if (is_linetouched(panel -> win, i) == TRUE) in touchup()
128 touch_top(panel, screen_y, panel->obscured->next, in touchup()
129 panel->wstartx, panel->wendx); in touchup()
159 PANEL *panel; in update_panels() local
179 for (panel = _Bottom_panel; panel; panel = panel -> above) { in update_panels()
180 if (is_wintouched(panel -> win)) { in update_panels()
181 if (panel -> obscured) in update_panels()
182 touchup(panel); in update_panels()
183 (void) wnoutrefresh(panel -> win); in update_panels()