Lines Matching refs:height
112 int height)
132 y = y + height + 1;
136 if ((height < item_no) && (scroll + height < item_no)) {
155 static void print_buttons(WINDOW * win, int height, int width, int selected)
158 int y = height - 2;
186 int height, width, menu_height;
192 height = getmaxy(stdscr);
194 if (height < 15 || width < 65)
197 height -= 4;
199 menu_height = height - 10;
205 y = (LINES - height) / 2;
207 draw_shadow(stdscr, y, x, height, width);
209 dialog = newwin(height, width, y, x);
212 draw_box(dialog, 0, 0, height, width,
215 mvwaddch(dialog, height - 3, 0, ACS_LTEE);
228 box_y = height - menu_height - 5;
276 print_buttons(dialog, height, width, 0);
377 print_buttons(dialog, height, width, button);