Lines Matching full:height
27 static void print_buttons(WINDOW * dialog, int height, int width, int selected) in print_buttons() argument
30 int y = height - 2; in print_buttons()
42 int dialog_yesno(const char *title, const char *prompt, int height, int width) in dialog_yesno() argument
48 if (getmaxy(stdscr) < (height + 4)) in dialog_yesno()
55 y = (LINES - height) / 2; in dialog_yesno()
57 draw_shadow(stdscr, y, x, height, width); in dialog_yesno()
59 dialog = newwin(height, width, y, x); in dialog_yesno()
62 draw_box(dialog, 0, 0, height, width, in dialog_yesno()
65 mvwaddch(dialog, height - 3, 0, ACS_LTEE); in dialog_yesno()
76 print_buttons(dialog, height, width, 0); in dialog_yesno()
95 print_buttons(dialog, height, width, button); in dialog_yesno()