taglinefilesource code
button121scripts/lxdialog/checklist.cint key = 0, button = 0, choice = 0, scroll = 0, max_choice, *status;
button290scripts/lxdialog/checklist.cbutton = ((key == KEY_LEFT ? --button : ++button) < 0)
button291scripts/lxdialog/checklist.c? 1 : (button > 1 ? 0 : button);
button293scripts/lxdialog/checklist.cprint_buttons(dialog, height, width, button);
button300scripts/lxdialog/checklist.cif (!button) {
button332scripts/lxdialog/checklist.creturn button;
button50scripts/lxdialog/inputbox.cint input_x = 0, scroll = 0, key = 0, button = -1;
button118scripts/lxdialog/inputbox.cif (button == -1) {  /* Input box selected */
button181scripts/lxdialog/inputbox.cswitch (button) {
button183scripts/lxdialog/inputbox.cbutton = 1;  /* Indicates "Cancel" button is selected */
button187scripts/lxdialog/inputbox.cbutton = -1;  /* Indicates input box is selected */
button193scripts/lxdialog/inputbox.cbutton = 0;  /* Indicates "OK" button is selected */
button201scripts/lxdialog/inputbox.cswitch (button) {
button203scripts/lxdialog/inputbox.cbutton = 0;  /* Indicates "OK" button is selected */
button207scripts/lxdialog/inputbox.cbutton = 1;  /* Indicates "Cancel" button is selected */
button211scripts/lxdialog/inputbox.cbutton = -1;  /* Indicates input box is selected */
button221scripts/lxdialog/inputbox.creturn (button == -1 ? 0 : button);
button124scripts/lxdialog/menubox.cint key = 0, button = 0, scroll = 0, choice = 0, first_item = 0, max_choice;
button305scripts/lxdialog/menubox.cbutton = ((key == KEY_LEFT ? --button : ++button) < 0)
button306scripts/lxdialog/menubox.c? 2 : (button > 2 ? 0 : button);
button308scripts/lxdialog/menubox.cprint_buttons(dialog, height, width, button);
button328scripts/lxdialog/menubox.cbutton = 2;
button331scripts/lxdialog/menubox.cif (button == 2) 
button339scripts/lxdialog/menubox.creturn button;
button46scripts/lxdialog/yesno.cint i, x, y, key = 0, button = 0;
button93scripts/lxdialog/yesno.cbutton = ((key == KEY_LEFT ? --button : ++button) < 0)
button94scripts/lxdialog/yesno.c? 1 : (button > 1 ? 0 : button);
button96scripts/lxdialog/yesno.cprint_buttons(dialog, height, width, button);
button102scripts/lxdialog/yesno.creturn button;