Home | History | Annotate | Download | only in lxdialog

Lines Matching refs:height

25 static void print_page(WINDOW * win, int height, int width);
55 int height, width, boxh, boxw;
67 getmaxyx(stdscr, height, width);
68 if (height < 8 || width < 8)
71 height = initial_height;
73 if (height > 4)
74 height -= 4;
76 height = 0;
87 y = (LINES - height) / 2;
89 draw_shadow(stdscr, y, x, height, width);
91 dialog = newwin(height, width, y, x);
95 boxh = height - 4;
104 draw_box(dialog, 0, 0, height, width,
108 mvwaddch(dialog, height - 3, 0, ACS_LTEE);
117 print_button(dialog, " Exit ", height - 2, width / 2 - 4, TRUE);
255 back_lines(height);
303 static void print_page(WINDOW * win, int height, int width)
308 for (i = 0; i < height; i++) {