Home
last modified time | relevance | path

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

/scripts/kconfig/lxdialog/
A Dyesno.c31 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()
A Dinputbox.c35 int input_x = 0, key = 0, button = -1; in dialog_inputbox() local
111 if (button == -1) { /* Input box selected */ in dialog_inputbox()
234 switch (button) { in dialog_inputbox()
236 button = 1; /* Indicates "Help" button is selected */ in dialog_inputbox()
240 button = -1; /* Indicates input box is selected */ in dialog_inputbox()
246 button = 0; /* Indicates "OK" button is selected */ in dialog_inputbox()
254 switch (button) { in dialog_inputbox()
256 button = 0; /* Indicates "OK" button is selected */ in dialog_inputbox()
260 button = 1; /* Indicates "Help" button is selected */ in dialog_inputbox()
264 button = -1; /* Indicates input box is selected */ in dialog_inputbox()
[all …]
A Dchecklist.c108 int key = 0, button = 0, choice = 0, scroll = 0, max_choice; in dialog_checklist() local
276 button = 1; in dialog_checklist()
288 return button; in dialog_checklist()
292 button = ((key == KEY_LEFT ? --button : ++button) < 0) in dialog_checklist()
293 ? 1 : (button > 1 ? 0 : button); in dialog_checklist()
295 print_buttons(dialog, height, width, button); in dialog_checklist()
A Dmenubox.c168 int key = 0, button = 0, scroll = 0, choice = 0; in dialog_menu() local
356 button = ((key == KEY_LEFT ? --button : ++button) < 0) in dialog_menu()
357 ? 4 : (button > 4 ? 0 : button); in dialog_menu()
359 print_buttons(dialog, height, width, button); in dialog_menu()
396 return button; in dialog_menu()
/scripts/kconfig/
A Dgconf.c536 static void on_back_clicked(GtkButton *button, gpointer user_data) in on_back_clicked() argument
546 static void on_load_clicked(GtkButton *button, gpointer user_data) in on_load_clicked() argument
551 static void on_save_clicked(GtkButton *button, gpointer user_data) in on_save_clicked() argument
556 static void on_single_clicked(GtkButton *button, gpointer user_data) in on_single_clicked() argument
561 static void on_split_clicked(GtkButton *button, gpointer user_data) in on_split_clicked() argument
566 static void on_full_clicked(GtkButton *button, gpointer user_data) in on_full_clicked() argument
571 static void on_collapse_clicked(GtkButton *button, gpointer user_data) in on_collapse_clicked() argument
576 static void on_expand_clicked(GtkButton *button, gpointer user_data) in on_expand_clicked() argument

Completed in 8 milliseconds