Lines Matching refs:dialog
533 WINDOW *dialog;
537 /* figure out dialog size: */
554 /* scrolling offset, if dialog is too small for all the choices: */
557 dialog = newwin(dh, dw, (h - dh) / 2, (w - dw) / 2);
558 box(dialog, 0, 0);
559 wrefresh(dialog);
560 keypad(dialog, TRUE);
574 wmove(dialog, i + 1, 1);
578 wattron(dialog, COLOR_PAIR(COLOR_INVERSE));
581 waddstr(dialog, group->group->countables[n].name);
582 whline(dialog, ' ', dw - getcurx(dialog) - 1);
584 wattroff(dialog, COLOR_PAIR(COLOR_INVERSE));
589 switch (wgetch(dialog)) {
614 wborder(dialog, ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ');
615 delwin(dialog);