Lines Matching refs:width
90 print_line(MY_OBJ * obj, WINDOW *win, int row, int width) in print_line() argument
98 (void) waddnstr(win, line, MIN((int) strlen(line), width - 2)); in print_line()
100 line[MIN((int) strlen(line), width - 2)] = '\0'; in print_line()
107 for (i = 0; i < width - x; i++) in print_line()
112 pause_for_ok(WINDOW *dialog, int height, int width) in pause_for_ok() argument
138 mouse_mkbutton(height - 2, width / 2 - 4, 6, '\n'); in pause_for_ok()
148 FALSE, width); in pause_for_ok()
198 int width, in dlg_progressbox() argument
210 dlg_auto_size(title, prompt, &height, &width, MIN_HIGH, MIN_WIDE); in dlg_progressbox()
211 dlg_print_size(height, width); in dlg_progressbox()
212 dlg_ctl_size(height, width); in dlg_progressbox()
214 x = dlg_box_x_ordinate(width); in dlg_progressbox()
218 dialog = dlg_new_window(height, width, y, x); in dlg_progressbox()
220 dlg_draw_box2(dialog, 0, 0, height, width, dialog_attr, border_attr, border2_attr); in dlg_progressbox()
228 dlg_print_autowrap(dialog, prompt, height, width); in dlg_progressbox()
242 width - (2 * MARGIN), in dlg_progressbox()
261 print_line(obj, text, i, width - (2 * MARGIN)); in dlg_progressbox()
266 print_line(obj, text, thigh - 1, width - (2 * MARGIN)); in dlg_progressbox()
278 result = pause_for_ok(dialog, height, width); in dlg_progressbox()
295 dialog_progressbox(const char *title, const char *cprompt, int height, int width) in dialog_progressbox() argument
301 width, in dialog_progressbox()