Lines Matching defs:dialog
552 WINDOW *dialog;
556 /* figure out dialog size: */
573 /* scrolling offset, if dialog is too small for all the choices: */
576 dialog = newwin(dh, dw, (h - dh) / 2, (w - dw) / 2);
577 box(dialog, 0, 0);
578 wrefresh(dialog);
579 keypad(dialog, TRUE);
593 wmove(dialog, i + 1, 1);
597 wattron(dialog, COLOR_PAIR(COLOR_INVERSE));
600 waddstr(dialog, group->group->countables[n].name);
601 whline(dialog, ' ', dw - getcurx(dialog) - 1);
603 wattroff(dialog, COLOR_PAIR(COLOR_INVERSE));
608 switch (wgetch(dialog)) {
633 wborder(dialog, ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ');
634 delwin(dialog);