tag | line | file | source code |
button | 121 | scripts/lxdialog/checklist.c | int key = 0, button = 0, choice = 0, scroll = 0, max_choice, *status; |
button | 290 | scripts/lxdialog/checklist.c | button = ((key == KEY_LEFT ? --button : ++button) < 0) |
button | 291 | scripts/lxdialog/checklist.c | ? 1 : (button > 1 ? 0 : button); |
button | 293 | scripts/lxdialog/checklist.c | print_buttons(dialog, height, width, button); |
button | 300 | scripts/lxdialog/checklist.c | if (!button) { |
button | 332 | scripts/lxdialog/checklist.c | return button; |
button | 50 | scripts/lxdialog/inputbox.c | int input_x = 0, scroll = 0, key = 0, button = -1; |
button | 118 | scripts/lxdialog/inputbox.c | if (button == -1) { /* Input box selected */ |
button | 181 | scripts/lxdialog/inputbox.c | switch (button) { |
button | 183 | scripts/lxdialog/inputbox.c | button = 1; /* Indicates "Cancel" button is selected */ |
button | 187 | scripts/lxdialog/inputbox.c | button = -1; /* Indicates input box is selected */ |
button | 193 | scripts/lxdialog/inputbox.c | button = 0; /* Indicates "OK" button is selected */ |
button | 201 | scripts/lxdialog/inputbox.c | switch (button) { |
button | 203 | scripts/lxdialog/inputbox.c | button = 0; /* Indicates "OK" button is selected */ |
button | 207 | scripts/lxdialog/inputbox.c | button = 1; /* Indicates "Cancel" button is selected */ |
button | 211 | scripts/lxdialog/inputbox.c | button = -1; /* Indicates input box is selected */ |
button | 221 | scripts/lxdialog/inputbox.c | return (button == -1 ? 0 : button); |
button | 124 | scripts/lxdialog/menubox.c | int key = 0, button = 0, scroll = 0, choice = 0, first_item = 0, max_choice; |
button | 305 | scripts/lxdialog/menubox.c | button = ((key == KEY_LEFT ? --button : ++button) < 0) |
button | 306 | scripts/lxdialog/menubox.c | ? 2 : (button > 2 ? 0 : button); |
button | 308 | scripts/lxdialog/menubox.c | print_buttons(dialog, height, width, button); |
button | 323 | scripts/lxdialog/menubox.c | button = 2; |
button | 326 | scripts/lxdialog/menubox.c | if (button == 2) |
button | 334 | scripts/lxdialog/menubox.c | return button; |
button | 46 | scripts/lxdialog/yesno.c | int i, x, y, key = 0, button = 0; |
button | 93 | scripts/lxdialog/yesno.c | button = ((key == KEY_LEFT ? --button : ++button) < 0) |
button | 94 | scripts/lxdialog/yesno.c | ? 1 : (button > 1 ? 0 : button); |
button | 96 | scripts/lxdialog/yesno.c | print_buttons(dialog, height, width, button); |
button | 102 | scripts/lxdialog/yesno.c | return button; |