Lines Matching defs:box
3 * textbox.c -- implements the text box
26 static void refresh_text_box(WINDOW *dialog, WINDOW *box, int boxh, int boxw,
30 print_page(box, boxh, boxw, update_text, data);
38 * Display text from a file in a dialog box.
49 WINDOW *dialog, *box;
87 /* center dialog box on screen */
96 /* Create window for box region, used for scrolling text */
99 box = subwin(dialog, boxh, boxw, y + 1, x + 1);
100 wattrset(box, dlg.dialog.atr);
101 wbkgdset(box, dlg.dialog.atr & A_COLOR);
103 keypad(box, TRUE);
124 attr_clear(box, boxh, boxw, dlg.dialog.atr);
125 refresh_text_box(dialog, box, boxh, boxw, cur_y, cur_x, update_text,
144 refresh_text_box(dialog, box, boxh, boxw,
156 refresh_text_box(dialog, box, boxh, boxw, cur_y,
166 refresh_text_box(dialog, box, boxh, boxw, cur_y,
176 refresh_text_box(dialog, box, boxh, boxw, cur_y,
186 refresh_text_box(dialog, box, boxh, boxw, cur_y,
196 refresh_text_box(dialog, box, boxh, boxw, cur_y,
212 refresh_text_box(dialog, box, boxh, boxw, cur_y,
223 refresh_text_box(dialog, box, boxh, boxw, cur_y,
232 delwin(box);
245 delwin(box);