Lines Matching defs:height
16 static void print_buttons(WINDOW * dialog, int height, int width, int selected)
19 int y = height - 2;
31 int dialog_inputbox(const char *title, const char *prompt, int height, int width,
46 if (getmaxy(stdscr) <= (height - INPUTBOX_HEIGTH_MIN))
53 y = (getmaxy(stdscr) - height) / 2;
55 draw_shadow(stdscr, y, x, height, width);
57 dialog = newwin(height, width, y, x);
60 draw_box(dialog, 0, 0, height, width,
63 mvwaddch(dialog, height - 3, 0, ACS_LTEE);
82 print_buttons(dialog, height, width, 0);
235 print_buttons(dialog, height, width, 1);
239 print_buttons(dialog, height, width, 0);
245 print_buttons(dialog, height, width, 0);
255 print_buttons(dialog, height, width, 0);
259 print_buttons(dialog, height, width, 1);
263 print_buttons(dialog, height, width, 0);