| /rk3399_rockchip-uboot/scripts/kconfig/lxdialog/ |
| H A D | inputbox.c | 17 static void print_buttons(WINDOW * dialog, int height, int width, int selected) in print_buttons() argument 22 print_button(dialog, gettext(" Ok "), y, x, selected == 0); in print_buttons() 23 print_button(dialog, gettext(" Help "), y, x + 14, selected == 1); in print_buttons() 25 wmove(dialog, y, x + 1 + 14 * selected); in print_buttons() 26 wrefresh(dialog); in print_buttons() 39 WINDOW *dialog; in dialog_inputbox() local 58 dialog = newwin(height, width, y, x); in dialog_inputbox() 59 keypad(dialog, TRUE); in dialog_inputbox() 61 draw_box(dialog, 0, 0, height, width, in dialog_inputbox() 62 dlg.dialog.atr, dlg.border.atr); in dialog_inputbox() [all …]
|
| H A D | yesno.c | 15 static void print_buttons(WINDOW * dialog, int height, int width, int selected) in print_buttons() argument 20 print_button(dialog, gettext(" Yes "), y, x, selected == 0); in print_buttons() 21 print_button(dialog, gettext(" No "), y, x + 13, selected == 1); in print_buttons() 23 wmove(dialog, y, x + 1 + 13 * selected); in print_buttons() 24 wrefresh(dialog); in print_buttons() 33 WINDOW *dialog; in dialog_yesno() local 47 dialog = newwin(height, width, y, x); in dialog_yesno() 48 keypad(dialog, TRUE); in dialog_yesno() 50 draw_box(dialog, 0, 0, height, width, in dialog_yesno() 51 dlg.dialog.atr, dlg.border.atr); in dialog_yesno() [all …]
|
| H A D | textbox.c | 27 static void refresh_text_box(WINDOW *dialog, WINDOW *box, int boxh, int boxw, in refresh_text_box() argument 32 print_position(dialog); in refresh_text_box() 33 wmove(dialog, cur_y, cur_x); /* Restore cursor position */ in refresh_text_box() 34 wrefresh(dialog); in refresh_text_box() 50 WINDOW *dialog, *box; in dialog_textbox() local 94 dialog = newwin(height, width, y, x); in dialog_textbox() 95 keypad(dialog, TRUE); in dialog_textbox() 100 box = subwin(dialog, boxh, boxw, y + 1, x + 1); in dialog_textbox() 101 wattrset(box, dlg.dialog.atr); in dialog_textbox() 102 wbkgdset(box, dlg.dialog.atr & A_COLOR); in dialog_textbox() [all …]
|
| H A D | checklist.c | 89 static void print_buttons(WINDOW * dialog, int height, int width, int selected) in print_buttons() argument 94 print_button(dialog, gettext("Select"), y, x, selected == 0); in print_buttons() 95 print_button(dialog, gettext(" Help "), y, x + 14, selected == 1); in print_buttons() 97 wmove(dialog, y, x + 1 + 14 * selected); in print_buttons() 98 wrefresh(dialog); in print_buttons() 110 WINDOW *dialog, *list; in dialog_checklist() local 136 dialog = newwin(height, width, y, x); in dialog_checklist() 137 keypad(dialog, TRUE); in dialog_checklist() 139 draw_box(dialog, 0, 0, height, width, in dialog_checklist() 140 dlg.dialog.atr, dlg.border.atr); in dialog_checklist() [all …]
|
| H A D | menubox.c | 179 WINDOW *dialog, *menu; in dialog_menu() local 199 dialog = newwin(height, width, y, x); in dialog_menu() 200 keypad(dialog, TRUE); in dialog_menu() 202 draw_box(dialog, 0, 0, height, width, in dialog_menu() 203 dlg.dialog.atr, dlg.border.atr); in dialog_menu() 204 wattrset(dialog, dlg.border.atr); in dialog_menu() 205 mvwaddch(dialog, height - 3, 0, ACS_LTEE); in dialog_menu() 207 waddch(dialog, ACS_HLINE); in dialog_menu() 208 wattrset(dialog, dlg.dialog.atr); in dialog_menu() 209 wbkgdset(dialog, dlg.dialog.atr & A_COLOR); in dialog_menu() [all …]
|
| H A D | util.c | 23 dlg.dialog.atr = A_NORMAL; in set_mono_theme() 52 #define DLG_COLOR(dialog, f, b, h) \ argument 54 dlg.dialog.fg = (f); \ 55 dlg.dialog.bg = (b); \ 56 dlg.dialog.hl = (h); \ 63 DLG_COLOR(dialog, COLOR_BLACK, COLOR_WHITE, false); in set_classic_theme() 96 DLG_COLOR(dialog, COLOR_WHITE, COLOR_BLACK, false); in set_blackbg_theme() 183 init_one_color(&dlg.dialog); in init_dialog_colors() 353 void print_title(WINDOW *dialog, const char *title, int width) in print_title() argument 357 wattrset(dialog, dlg.title.atr); in print_title() [all …]
|
| H A D | BIG.FAT.WARNING | 1 This is NOT the official version of dialog. This version has been
|
| H A D | dialog.h | 107 struct dialog_color dialog; member 213 void print_title(WINDOW *dialog, const char *title, int width);
|
| /rk3399_rockchip-uboot/scripts/kconfig/ |
| H A D | gconf.c | 419 GtkWidget *dialog, *label; in on_window1_delete_event() local 425 dialog = gtk_dialog_new_with_buttons(_("Warning !"), in on_window1_delete_event() 436 gtk_dialog_set_default_response(GTK_DIALOG(dialog), in on_window1_delete_event() 440 gtk_container_add(GTK_CONTAINER(GTK_DIALOG(dialog)->vbox), label); in on_window1_delete_event() 443 result = gtk_dialog_run(GTK_DIALOG(dialog)); in on_window1_delete_event() 453 gtk_widget_destroy(dialog); in on_window1_delete_event() 641 GtkWidget *dialog; in on_introduction1_activate() local 659 dialog = gtk_message_dialog_new(GTK_WINDOW(main_wnd), in on_introduction1_activate() 663 g_signal_connect_swapped(GTK_OBJECT(dialog), "response", in on_introduction1_activate() 665 GTK_OBJECT(dialog)); in on_introduction1_activate() [all …]
|
| /rk3399_rockchip-uboot/doc/ |
| H A D | README.socfpga | 80 4.1 In the Open dialog, select '<project_name>.qsys' 81 4.2 In the Open System dialog, wait until completion and press 'Close' 84 4.3.2 In the 'Generate' dialog, wait until completion and click 'Close'
|