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