Searched defs:selected (Results 1 - 7 of 7) sorted by relevance

/scripts/kconfig/lxdialog/
H A Dyesno.c27 static void print_buttons(WINDOW * dialog, int height, int width, int selected) argument
32 print_button(dialog, gettext(" Yes "), y, x, selected == 0);
33 print_button(dialog, gettext(" No "), y, x + 13, selected == 1);
35 wmove(dialog, y, x + 1 + 13 * selected);
H A Dinputbox.c29 static void print_buttons(WINDOW * dialog, int height, int width, int selected) argument
34 print_button(dialog, gettext(" Ok "), y, x, selected == 0);
35 print_button(dialog, gettext(" Help "), y, x + 14, selected == 1);
37 wmove(dialog, y, x + 1 + 14 * selected);
118 if (button == -1) { /* Input box selected */
183 button = 1; /* Indicates "Help" button is selected */
187 button = -1; /* Indicates input box is selected */
193 button = 0; /* Indicates "OK" button is selected */
203 button = 0; /* Indicates "OK" button is selected */
207 button = 1; /* Indicates "Help" button is selected */
[all...]
H A Dchecklist.c31 static void print_item(WINDOW * win, int choice, int selected) argument
46 wattrset(win, selected ? dlg.check_selected.atr
51 wattrset(win, selected ? dlg.tag_selected.atr : dlg.tag.atr);
53 wattrset(win, selected ? dlg.item_selected.atr : dlg.item.atr);
55 if (selected) {
101 static void print_buttons(WINDOW * dialog, int height, int width, int selected) argument
106 print_button(dialog, gettext("Select"), y, x, selected == 0);
107 print_button(dialog, gettext(" Help "), y, x + 14, selected == 1);
109 wmove(dialog, y, x + 1 + 14 * selected);
H A Dmenubox.c34 * *) Formerly if I selected something my scrolling would be broken because
49 * lxdialog, it sets the scrolling so that the selected item is in the
67 int selected, int hotkey)
88 wattrset(win, selected ? dlg.item_selected.atr : dlg.item.atr);
91 wattrset(win, selected ? dlg.tag_key_selected.atr
95 if (selected) {
102 #define print_item(index, choice, selected) \
105 do_print_item(menu, item_str(), choice, selected, !item_is_tag(':')); \
155 static void print_buttons(WINDOW * win, int height, int width, int selected) argument
160 print_button(win, gettext("Select"), y, x, selected
66 do_print_item(WINDOW * win, const char *item, int line_y, int selected, int hotkey) argument
182 dialog_menu(const char *title, const char *prompt, const void *selected, int *s_scroll) argument
[all...]
H A Ddialog.h169 int selected; /* Set to 1 by dialog_*() function if selected. */ member in struct:dialog_item
202 void print_button(WINDOW * win, const char *label, int y, int x, int selected);
214 const void *selected, int *s_scroll);
H A Dutil.c391 void print_button(WINDOW * win, const char *label, int y, int x, int selected) argument
396 wattrset(win, selected ? dlg.button_active.atr
401 wattrset(win, selected ? dlg.button_label_active.atr
405 wattrset(win, selected ? dlg.button_key_active.atr
408 wattrset(win, selected ? dlg.button_label_active.atr
411 wattrset(win, selected ? dlg.button_active.atr
592 item_cur->node.selected = val;
651 return (item_cur->node.selected != 0);
/scripts/kconfig/
H A Dmconf.c35 " { } can be built in or modularized (selected by other feature)\n"
36 " - - are selected by other feature,\n"
227 "configuration options you have selected at that time.\n"
260 " selected if this symbol is selected (y or m)\n"
261 "o The 'Selected by' line tell what symbol has selected this symbol\n"
653 int selected; local
676 selected = item_activate_selected();
679 if (selected) {
688 if (selected) {
[all...]

Completed in 35 milliseconds