Searched defs:box (Results 1 - 2 of 2) sorted by relevance

/scripts/kconfig/lxdialog/
H A Dtextbox.c2 * textbox.c -- implements the text box
38 static void refresh_text_box(WINDOW *dialog, WINDOW *box, int boxh, int boxw, argument
41 print_page(box, boxh, boxw);
49 * Display text from a file in a dialog box.
57 WINDOW *dialog, *box; local
85 /* center dialog box on screen */
94 /* Create window for box region, used for scrolling text */
97 box = subwin(dialog, boxh, boxw, y + 1, x + 1);
98 wattrset(box, dlg.dialog.atr);
99 wbkgdset(box, dl
[all...]
H A Dutil.c418 * Draw a rectangular box with line drawing characters
422 chtype box, chtype border)
435 waddch(win, box | ACS_URCORNER);
437 waddch(win, box | ACS_LRCORNER);
441 waddch(win, box | ACS_HLINE);
445 waddch(win, box | ACS_VLINE);
447 waddch(win, box | ' ');
421 draw_box(WINDOW * win, int y, int x, int height, int width, chtype box, chtype border) argument

Completed in 35 milliseconds