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
75 wattrset(win, selected ? dlg.item_selected.atr : dlg.item.atr); in do_print_item()
78 wattrset(win, selected ? dlg.tag_key_selected.atr in do_print_item()
82 if (selected) { in do_print_item()
89 #define print_item(index, choice, selected) \ argument
92 do_print_item(menu, item_str(), choice, selected, !item_is_tag(':')); \
142 static void print_buttons(WINDOW * win, int height, int width, int selected) in print_buttons() argument
147 print_button(win, "Select", y, x, selected == 0); in print_buttons()
148 print_button(win, " Exit ", y, x + 12, selected == 1); in print_buttons()
149 print_button(win, " Help ", y, x + 24, selected == 2); in print_buttons()
150 print_button(win, " Save ", y, x + 36, selected == 3); in print_buttons()
151 print_button(win, " Load ", y, x + 48, selected == 4); in print_buttons()
153 wmove(win, y, x + 1 + 12 * selected); in print_buttons()
172 const void *selected, int *s_scroll) in dialog_menu() argument
236 if (selected && (selected == item_data())) in dialog_menu()