Home
last modified time | relevance | path

Searched refs:button (Results 1 – 5 of 5) sorted by relevance

/scripts/kconfig/lxdialog/
Dyesno.c44 int i, x, y, key = 0, button = 0; in dialog_yesno() local
93 button = ((key == KEY_LEFT ? --button : ++button) < 0) ? 1 : (button > 1 ? 0 : button); in dialog_yesno()
95 print_buttons(dialog, height, width, button); in dialog_yesno()
101 return button; in dialog_yesno()
Dinputbox.c48 int input_x = 0, scroll = 0, key = 0, button = -1; in dialog_inputbox() local
118 if (button == -1) { /* Input box selected */ in dialog_inputbox()
181 switch (button) { in dialog_inputbox()
183 button = 1; /* Indicates "Cancel" button is selected */ in dialog_inputbox()
187 button = -1; /* Indicates input box is selected */ in dialog_inputbox()
193 button = 0; /* Indicates "OK" button is selected */ in dialog_inputbox()
201 switch (button) { in dialog_inputbox()
203 button = 0; /* Indicates "OK" button is selected */ in dialog_inputbox()
207 button = 1; /* Indicates "Cancel" button is selected */ in dialog_inputbox()
211 button = -1; /* Indicates input box is selected */ in dialog_inputbox()
[all …]
Dchecklist.c115 int key = 0, button = 0, choice = 0, scroll = 0, max_choice; in dialog_checklist() local
283 button = 1; in dialog_checklist()
295 return button; in dialog_checklist()
299 button = ((key == KEY_LEFT ? --button : ++button) < 0) in dialog_checklist()
300 ? 1 : (button > 1 ? 0 : button); in dialog_checklist()
302 print_buttons(dialog, height, width, button); in dialog_checklist()
Dmenubox.c187 int key = 0, button = 0, scroll = 0, choice = 0; in dialog_menu() local
374 button = ((key == KEY_LEFT ? --button : ++button) < 0) in dialog_menu()
375 ? 2 : (button > 2 ? 0 : button); in dialog_menu()
377 print_buttons(dialog, height, width, button); in dialog_menu()
409 button = 2; in dialog_menu()
416 return button; in dialog_menu()
/scripts/kconfig/
Dgconf.c173 GtkToolButton *button; in replace_button_icon() local
180 button = GTK_TOOL_BUTTON(glade_xml_get_widget(xml, btn_name)); in replace_button_icon()
183 gtk_tool_button_set_icon_widget(button, image); in replace_button_icon()
799 void on_back_clicked(GtkButton * button, gpointer user_data) in on_back_clicked() argument
814 void on_load_clicked(GtkButton * button, gpointer user_data) in on_load_clicked() argument
820 void on_single_clicked(GtkButton * button, gpointer user_data) in on_single_clicked() argument
830 void on_split_clicked(GtkButton * button, gpointer user_data) in on_split_clicked() argument
846 void on_full_clicked(GtkButton * button, gpointer user_data) in on_full_clicked() argument
858 void on_collapse_clicked(GtkButton * button, gpointer user_data) in on_collapse_clicked() argument
864 void on_expand_clicked(GtkButton * button, gpointer user_data) in on_expand_clicked() argument