Lines Matching refs:height
53 int y, int x, int height) in print_arrows() argument
69 y = y + height + 1; in print_arrows()
72 if ((height < item_no) && (scroll + choice < item_no - 1)) { in print_arrows()
88 static void print_buttons(WINDOW * dialog, int height, int width, int selected) in print_buttons() argument
91 int y = height - 2; in print_buttons()
104 int dialog_checklist(const char *title, const char *prompt, int height, in dialog_checklist() argument
122 if (getmaxy(stdscr) < (height + CHECKLIST_HEIGTH_MIN)) in dialog_checklist()
131 y = (getmaxy(stdscr) - height) / 2; in dialog_checklist()
133 draw_shadow(stdscr, y, x, height, width); in dialog_checklist()
135 dialog = newwin(height, width, y, x); in dialog_checklist()
138 draw_box(dialog, 0, 0, height, width, in dialog_checklist()
141 mvwaddch(dialog, height - 3, 0, ACS_LTEE); in dialog_checklist()
153 box_y = height - list_height - 5; in dialog_checklist()
189 print_buttons(dialog, height, width, 0); in dialog_checklist()
296 print_buttons(dialog, height, width, button); in dialog_checklist()