Searched refs:button (Results 1 – 5 of 5) sorted by relevance
/scripts/kconfig/lxdialog/ |
D | yesno.c | 31 int i, x, y, key = 0, button = 0; in dialog_yesno() local 80 button = ((key == KEY_LEFT ? --button : ++button) < 0) ? 1 : (button > 1 ? 0 : button); in dialog_yesno() 82 print_buttons(dialog, height, width, button); in dialog_yesno() 88 return button; in dialog_yesno()
|
D | inputbox.c | 35 int input_x = 0, key = 0, button = -1; in dialog_inputbox() local 109 if (button == -1) { /* Input box selected */ in dialog_inputbox() 232 switch (button) { in dialog_inputbox() 234 button = 1; /* Indicates "Help" button is selected */ in dialog_inputbox() 238 button = -1; /* Indicates input box is selected */ in dialog_inputbox() 244 button = 0; /* Indicates "OK" button is selected */ in dialog_inputbox() 252 switch (button) { in dialog_inputbox() 254 button = 0; /* Indicates "OK" button is selected */ in dialog_inputbox() 258 button = 1; /* Indicates "Help" button is selected */ in dialog_inputbox() 262 button = -1; /* Indicates input box is selected */ in dialog_inputbox() [all …]
|
D | checklist.c | 108 int key = 0, button = 0, choice = 0, scroll = 0, max_choice; in dialog_checklist() local 277 button = 1; in dialog_checklist() 289 return button; in dialog_checklist() 293 button = ((key == KEY_LEFT ? --button : ++button) < 0) in dialog_checklist() 294 ? 1 : (button > 1 ? 0 : button); in dialog_checklist() 296 print_buttons(dialog, height, width, button); in dialog_checklist()
|
D | menubox.c | 176 int key = 0, button = 0, scroll = 0, choice = 0; in dialog_menu() local 364 button = ((key == KEY_LEFT ? --button : ++button) < 0) in dialog_menu() 365 ? 4 : (button > 4 ? 0 : button); in dialog_menu() 367 print_buttons(dialog, height, width, button); in dialog_menu() 404 return button; in dialog_menu()
|
/scripts/kconfig/ |
D | gconf.c | 116 GtkToolButton *button; in replace_button_icon() local 123 button = GTK_TOOL_BUTTON(glade_xml_get_widget(xml, btn_name)); in replace_button_icon() 126 gtk_tool_button_set_icon_widget(button, image); in replace_button_icon() 707 void on_back_clicked(GtkButton * button, gpointer user_data) in on_back_clicked() argument 722 void on_load_clicked(GtkButton * button, gpointer user_data) in on_load_clicked() argument 728 void on_single_clicked(GtkButton * button, gpointer user_data) in on_single_clicked() argument 737 void on_split_clicked(GtkButton * button, gpointer user_data) in on_split_clicked() argument 753 void on_full_clicked(GtkButton * button, gpointer user_data) in on_full_clicked() argument 764 void on_collapse_clicked(GtkButton * button, gpointer user_data) in on_collapse_clicked() argument 770 void on_expand_clicked(GtkButton * button, gpointer user_data) in on_expand_clicked() argument
|