Lines Matching full:selected
22 * *) Formerly if I selected something my scrolling would be broken because
37 * lxdialog, it sets the scrolling so that the selected item is in the
55 int selected, int hotkey) in do_print_item() argument
76 wattrset(win, selected ? dlg.item_selected.atr : dlg.item.atr); in do_print_item()
79 wattrset(win, selected ? dlg.tag_key_selected.atr in do_print_item()
83 if (selected) { in do_print_item()
90 #define print_item(index, choice, selected) \ argument
93 do_print_item(menu, item_str(), choice, selected, !item_is_tag(':')); \
143 static void print_buttons(WINDOW * win, int height, int width, int selected) in print_buttons() argument
148 print_button(win, gettext("Select"), y, x, selected == 0); in print_buttons()
149 print_button(win, gettext(" Exit "), y, x + 12, selected == 1); in print_buttons()
150 print_button(win, gettext(" Help "), y, x + 24, selected == 2); in print_buttons()
151 print_button(win, gettext(" Save "), y, x + 36, selected == 3); in print_buttons()
152 print_button(win, gettext(" Load "), y, x + 48, selected == 4); in print_buttons()
154 wmove(win, y, x + 1 + 12 * selected); in print_buttons()
173 const void *selected, int *s_scroll) in dialog_menu() argument
237 if (selected && (selected == item_data())) in dialog_menu()