Lines Matching refs:height
66 int y, int x, int height) in print_arrows() argument
82 y = y + height + 1; in print_arrows()
85 if ((height < item_no) && (scroll + choice < item_no - 1)) { in print_arrows()
101 static void print_buttons(WINDOW * dialog, int height, int width, int selected) in print_buttons() argument
104 int y = height - 2; in print_buttons()
117 int dialog_checklist(const char *title, const char *prompt, int height, in dialog_checklist() argument
135 if (getmaxy(stdscr) < (height + CHECKLIST_HEIGTH_MIN)) in dialog_checklist()
144 y = (getmaxy(stdscr) - height) / 2; in dialog_checklist()
146 draw_shadow(stdscr, y, x, height, width); in dialog_checklist()
148 dialog = newwin(height, width, y, x); in dialog_checklist()
151 draw_box(dialog, 0, 0, height, width, in dialog_checklist()
154 mvwaddch(dialog, height - 3, 0, ACS_LTEE); in dialog_checklist()
166 box_y = height - list_height - 5; in dialog_checklist()
202 print_buttons(dialog, height, width, 0); in dialog_checklist()
309 print_buttons(dialog, height, width, button); in dialog_checklist()