Lines Matching full:pad
58 WINDOW *pad; /* pad for the private items */
59 int ypad; /* start pad line */
60 int ys, ye, xs, xe; /* pad pos */
308 wattron(m->pad, t.menu.desccolor);
310 mvwhline(m->pad, i, 0, '-', m->line);
312 mvwhline_set(m->pad, i, 0, WACS_HLINE, m->line);
313 wattroff(m->pad, t.menu.desccolor);
319 wmove(m->pad, i, (labellen < realw) ? realw/2 - labellen/2 : 0);
320 wattron(m->pad, t.menu.sepnamecolor);
321 waddstr(m->pad, name);
322 wattroff(m->pad, t.menu.sepnamecolor);
324 waddch(m->pad, ' ');
325 wattron(m->pad, t.menu.sepdesccolor);
326 waddstr(m->pad, desc);
327 wattroff(m->pad, t.menu.sepdesccolor);
340 wattron(m->pad, focus ? t.menu.f_prefixcolor : t.menu.prefixcolor);
341 mvwaddstr(m->pad, y, 0, pritem->prefix);
342 wattroff(m->pad, focus ? t.menu.f_prefixcolor : t.menu.prefixcolor);
345 wmove(m->pad, y, m->xselector);
346 wattron(m->pad, focus ? t.menu.f_selectorcolor : t.menu.selectorcolor);
348 wprintw(m->pad, "[%c]", pritem->on ? 'X' : ' ');
350 wprintw(m->pad, "(%c)", pritem->on ? '*' : ' ');
351 wattroff(m->pad, focus ? t.menu.f_selectorcolor : t.menu.selectorcolor);
356 wattron(m->pad, colorname);
357 mvwaddstr(m->pad, y, m->xname + pritem->depth, pritem->name);
358 wattroff(m->pad, colorname);
368 wattron(m->pad, colordesc);
370 mvwaddstr(m->pad, y, m->xname + pritem->depth,
373 mvwaddstr(m->pad, y, m->xdesc, pritem->desc);
374 wattroff(m->pad, colordesc);
381 wattron(m->pad, colorshortcut);
382 mvwaddwch(m->pad, y, m->xname + pritem->depth, pritem->shortcut);
383 wattroff(m->pad, colorshortcut);
477 /* lower pad after a terminal expansion */
496 pnoutrefresh(m->pad, m->ypad, 0, m->ys, m->xs, m->ye, m->xe);
524 m.pad = newpad(m.nitems, m.line);
525 wbkgd(m.pad, t.dialog.color);
639 pnoutrefresh(m.pad, m.ypad, 0, m.ys, m.xs, m.ye, m.xe);
670 pnoutrefresh(m.pad, m.ypad, 0, m.ys, m.xs, m.ye, m.xe);
686 delwin(m.pad);