/hal_espressif-3.5.0/tools/kconfig/lxdialog/ |
D | inputbox.c | 29 static void print_buttons(WINDOW * dialog, int height, int width, int selected) in print_buttons() argument 34 print_button(dialog, gettext(" Ok "), y, x, selected == 0); in print_buttons() 35 print_button(dialog, gettext(" Help "), y, x + 14, selected == 1); in print_buttons() 37 wmove(dialog, y, x + 1 + 14 * selected); in print_buttons() 38 wrefresh(dialog); in print_buttons() 51 WINDOW *dialog; in dialog_inputbox() local 70 dialog = newwin(height, width, y, x); in dialog_inputbox() 71 keypad(dialog, TRUE); in dialog_inputbox() 73 draw_box(dialog, 0, 0, height, width, in dialog_inputbox() 74 dlg.dialog.atr, dlg.border.atr); in dialog_inputbox() [all …]
|
D | yesno.c | 27 static void print_buttons(WINDOW * dialog, int height, int width, int selected) in print_buttons() argument 32 print_button(dialog, gettext(" Yes "), y, x, selected == 0); in print_buttons() 33 print_button(dialog, gettext(" No "), y, x + 13, selected == 1); in print_buttons() 35 wmove(dialog, y, x + 1 + 13 * selected); in print_buttons() 36 wrefresh(dialog); in print_buttons() 45 WINDOW *dialog; in dialog_yesno() local 59 dialog = newwin(height, width, y, x); in dialog_yesno() 60 keypad(dialog, TRUE); in dialog_yesno() 62 draw_box(dialog, 0, 0, height, width, in dialog_yesno() 63 dlg.dialog.atr, dlg.border.atr); in dialog_yesno() [all …]
|
D | textbox.c | 39 static void refresh_text_box(WINDOW *dialog, WINDOW *box, int boxh, int boxw, in refresh_text_box() argument 44 print_position(dialog); in refresh_text_box() 45 wmove(dialog, cur_y, cur_x); /* Restore cursor position */ in refresh_text_box() 46 wrefresh(dialog); in refresh_text_box() 62 WINDOW *dialog, *box; in dialog_textbox() local 106 dialog = newwin(height, width, y, x); in dialog_textbox() 107 keypad(dialog, TRUE); in dialog_textbox() 112 box = subwin(dialog, boxh, boxw, y + 1, x + 1); in dialog_textbox() 113 wattrset(box, dlg.dialog.atr); in dialog_textbox() 114 wbkgdset(box, dlg.dialog.atr & A_COLOR); in dialog_textbox() [all …]
|
D | checklist.c | 101 static void print_buttons(WINDOW * dialog, int height, int width, int selected) in print_buttons() argument 106 print_button(dialog, gettext("Select"), y, x, selected == 0); in print_buttons() 107 print_button(dialog, gettext(" Help "), y, x + 14, selected == 1); in print_buttons() 109 wmove(dialog, y, x + 1 + 14 * selected); in print_buttons() 110 wrefresh(dialog); in print_buttons() 122 WINDOW *dialog, *list; in dialog_checklist() local 148 dialog = newwin(height, width, y, x); in dialog_checklist() 149 keypad(dialog, TRUE); in dialog_checklist() 151 draw_box(dialog, 0, 0, height, width, in dialog_checklist() 152 dlg.dialog.atr, dlg.border.atr); in dialog_checklist() [all …]
|
D | menubox.c | 191 WINDOW *dialog, *menu; in dialog_menu() local 211 dialog = newwin(height, width, y, x); in dialog_menu() 212 keypad(dialog, TRUE); in dialog_menu() 214 draw_box(dialog, 0, 0, height, width, in dialog_menu() 215 dlg.dialog.atr, dlg.border.atr); in dialog_menu() 216 wattrset(dialog, dlg.border.atr); in dialog_menu() 217 mvwaddch(dialog, height - 3, 0, ACS_LTEE); in dialog_menu() 219 waddch(dialog, ACS_HLINE); in dialog_menu() 220 wattrset(dialog, dlg.dialog.atr); in dialog_menu() 221 wbkgdset(dialog, dlg.dialog.atr & A_COLOR); in dialog_menu() [all …]
|
D | util.c | 35 dlg.dialog.atr = A_NORMAL; in set_mono_theme() 64 #define DLG_COLOR(dialog, f, b, h) \ argument 66 dlg.dialog.fg = (f); \ 67 dlg.dialog.bg = (b); \ 68 dlg.dialog.hl = (h); \ 75 DLG_COLOR(dialog, COLOR_BLACK, COLOR_WHITE, false); in set_classic_theme() 108 DLG_COLOR(dialog, COLOR_WHITE, COLOR_BLACK, false); in set_blackbg_theme() 195 init_one_color(&dlg.dialog); in init_dialog_colors() 365 void print_title(WINDOW *dialog, const char *title, int width) in print_title() argument 369 wattrset(dialog, dlg.title.atr); in print_title() [all …]
|
D | dialog.h | 119 struct dialog_color dialog; member 225 void print_title(WINDOW *dialog, const char *title, int width);
|
D | BIG.FAT.WARNING | 1 This is NOT the official version of dialog. This version has been
|
/hal_espressif-3.5.0/tools/kconfig/ |
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 …]
|
/hal_espressif-3.5.0/examples/wifi/ftm/main/ |
D | Kconfig.projbuild | 12 bool "Show dialog tokens"
|
/hal_espressif-3.5.0/docs/en/get-started-legacy/ |
D | eclipse-setup.rst | 35 * In the dialog that pops up, choose "C/C++" -> "Existing Code as Makefile Project" and click Next. 82 * Click OK to close the Properties dialog in Eclipse.
|
/hal_espressif-3.5.0/examples/bluetooth/esp_ble_mesh/aligenie_demo/tutorial/ |
D | BLE_Mesh_AliGenie_Example.md | 55 …Select a device panel in the Theme Panel tab in the Select Product Panel dialog box or design a pa…
|
/hal_espressif-3.5.0/docs/en/get-started/ |
D | windows-setup-scratch.rst | 99 Open the System control panel and navigate to the Environment Variables dialog. (On Windows 10, thi…
|
/hal_espressif-3.5.0/docs/en/api-guides/jtag-debugging/ |
D | debugging-examples.rst | 73 …`blink.c`` file. A dialog will open where you can confirm your selection by pressing "OK" button. … 160 …. Click "Memory" tab and then "Add Memory Monitor" button. Enter ``0x3FF44004`` in provided dialog.
|
/hal_espressif-3.5.0/docs/en/api-guides/ |
D | app_trace.rst | 434 3. In open dialog Press 'Add' button and select 'New Pipe/File'. 435 …4. In open dialog select 'SystemView Serializer' as Serializer and set path to PRO CPU trace file.…
|