Searched refs:print_button (Results 1 – 7 of 7) sorted by relevance
/external/toybox/kconfig/lxdialog/ |
D | yesno.c | 32 print_button(dialog, " Yes ", y, x, selected == 0); in print_buttons() 33 print_button(dialog, " No ", y, x + 13, selected == 1); in print_buttons()
|
D | menubox.c | 160 print_button(win, "Select", y, x, selected == 0); in print_buttons() 161 print_button(win, " Exit ", y, x + 12, selected == 1); in print_buttons() 162 print_button(win, " Help ", y, x + 24, selected == 2); in print_buttons()
|
D | inputbox.c | 34 print_button(dialog, " Ok ", y, x, selected == 0); in print_buttons() 35 print_button(dialog, " Help ", y, x + 14, selected == 1); in print_buttons()
|
D | checklist.c | 100 print_button(dialog, "Select", y, x, selected == 0); in print_buttons() 101 print_button(dialog, " Help ", y, x + 14, selected == 1); in print_buttons()
|
D | dialog.h | 196 void print_button(WINDOW * win, const char *label, int y, int x, int selected);
|
D | textbox.c | 117 print_button(dialog, " Exit ", height - 2, width / 2 - 4, TRUE); in dialog_textbox()
|
D | util.c | 376 void print_button(WINDOW * win, const char *label, int y, int x, int selected) in print_button() function
|