Lines Matching refs:obs_pnl
85 std_touch_top(int line, PANEL *obs_pnl, int start_x, int end_x)
90 next_obs = obs_pnl -> below;
92 if (line >= obs_pnl->wstarty && line <= obs_pnl->wendy &&
93 obs_pnl->wstartx <= end_x && obs_pnl->wendx >= start_x) {
94 (void) touchline(obs_pnl->win,
95 line - obs_pnl->wstarty, 1);
96 if (obs_pnl->wstartx > start_x &&
97 obs_pnl->wendx < end_x) {
100 obs_pnl->wendx+1, end_x);
101 end_x = obs_pnl -> wstartx - 1;
103 if (obs_pnl->wstartx <= start_x)
104 start_x = obs_pnl -> wendx + 1;
105 if (obs_pnl->wendx >= end_x)
106 end_x = obs_pnl -> wstartx - 1;
112 while ((obs_pnl = next_obs) != 0);