Lines Matching refs:height
54 int y, int x, int height) in print_arrows() argument
70 y = y + height + 1; in print_arrows()
73 if ((height < item_no) && (scroll + choice < item_no - 1)) { in print_arrows()
89 static void print_buttons(WINDOW * dialog, int height, int width, int selected) in print_buttons() argument
92 int y = height - 2; in print_buttons()
105 int dialog_checklist(const char *title, const char *prompt, int height, in dialog_checklist() argument
123 if (getmaxy(stdscr) < (height + CHECKLIST_HEIGTH_MIN)) in dialog_checklist()
132 y = (getmaxy(stdscr) - height) / 2; in dialog_checklist()
134 draw_shadow(stdscr, y, x, height, width); in dialog_checklist()
136 dialog = newwin(height, width, y, x); in dialog_checklist()
139 draw_box(dialog, 0, 0, height, width, in dialog_checklist()
142 mvwaddch(dialog, height - 3, 0, ACS_LTEE); in dialog_checklist()
154 box_y = height - list_height - 5; in dialog_checklist()
190 print_buttons(dialog, height, width, 0); in dialog_checklist()
297 print_buttons(dialog, height, width, button); in dialog_checklist()