Lines Matching full:selected
21 * *) Formerly if I selected something my scrolling would be broken because
36 * lxdialog, it sets the scrolling so that the selected item is in the
54 int selected, int hotkey) in do_print_item() argument
67 wattrset(win, selected ? dlg.item_selected.atr : dlg.item.atr); in do_print_item()
70 wattrset(win, selected ? dlg.tag_key_selected.atr in do_print_item()
74 if (selected) { in do_print_item()
81 #define print_item(index, choice, selected) \ argument
84 do_print_item(menu, item_str(), choice, selected, !item_is_tag(':')); \
134 static void print_buttons(WINDOW * win, int height, int width, int selected) in print_buttons() argument
139 print_button(win, "Select", y, x, selected == 0); in print_buttons()
140 print_button(win, " Exit ", y, x + 12, selected == 1); in print_buttons()
141 print_button(win, " Help ", y, x + 24, selected == 2); in print_buttons()
142 print_button(win, " Save ", y, x + 36, selected == 3); in print_buttons()
143 print_button(win, " Load ", y, x + 48, selected == 4); in print_buttons()
145 wmove(win, y, x + 1 + 12 * selected); in print_buttons()
164 const void *selected, int *s_scroll) in dialog_menu() argument
228 if (selected && (selected == item_data())) in dialog_menu()