Home
last modified time | relevance | path

Searched refs:print_button (Results 1 – 8 of 8) sorted by relevance

/busybox-1.35.0/scripts/kconfig/lxdialog/
Dyesno.c32 print_button(dialog, " Yes ", y, x, selected == 0); in print_buttons()
33 print_button(dialog, " No ", y, x + 13, selected == 1); in print_buttons()
Dmsgbox.c58 print_button(dialog, " Ok ", height - 2, width / 2 - 4, TRUE); in dialog_msgbox()
Dinputbox.c34 print_button(dialog, " Ok ", y, x, selected == 0); in print_buttons()
35 print_button(dialog, " Help ", y, x + 14, selected == 1); in print_buttons()
Dmenubox.c159 print_button(win, "Select", y, x, selected == 0); in print_buttons()
160 print_button(win, " Exit ", y, x + 12, selected == 1); in print_buttons()
161 print_button(win, " Help ", y, x + 24, selected == 2); in print_buttons()
Ddialog.h147 void print_button(WINDOW * win, const char *label, int y, int x, int selected);
Dchecklist.c100 print_button(dialog, "Select", y, x, selected == 0); in print_buttons()
101 print_button(dialog, " Help ", y, x + 14, selected == 1); in print_buttons()
Dutil.c262 void print_button(WINDOW * win, const char *label, int y, int x, int selected) in print_button() function
Dtextbox.c105 print_button(dialog, " Exit ", height - 2, width / 2 - 4, TRUE); in dialog_textbox()