/linux-4.1.27/scripts/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 | BIG.FAT.WARNING | 1 This is NOT the official version of dialog. This version has been
|
D | dialog.h | 119 struct dialog_color dialog; member 225 void print_title(WINDOW *dialog, const char *title, int width);
|
/linux-4.1.27/tools/perf/ui/gtk/ |
D | progress.c | 7 static GtkWidget *dialog; variable 15 if (dialog == NULL) { in gtk_ui_progress__update() 19 dialog = gtk_window_new(GTK_WINDOW_TOPLEVEL); in gtk_ui_progress__update() 25 gtk_container_add(GTK_CONTAINER(dialog), vbox); in gtk_ui_progress__update() 27 gtk_window_set_title(GTK_WINDOW(dialog), "perf"); in gtk_ui_progress__update() 28 gtk_window_resize(GTK_WINDOW(dialog), 300, 80); in gtk_ui_progress__update() 29 gtk_window_set_position(GTK_WINDOW(dialog), GTK_WIN_POS_CENTER); in gtk_ui_progress__update() 31 gtk_widget_show_all(dialog); in gtk_ui_progress__update() 46 gtk_widget_destroy(dialog); in gtk_ui_progress__finish() 48 dialog = NULL; in gtk_ui_progress__finish()
|
D | util.c | 33 GtkWidget *dialog; in perf_gtk__error() local 43 dialog = gtk_message_dialog_new_with_markup(GTK_WINDOW(pgctx->main_window), in perf_gtk__error() 48 gtk_dialog_run(GTK_DIALOG(dialog)); in perf_gtk__error() 50 gtk_widget_destroy(dialog); in perf_gtk__error()
|
/linux-4.1.27/scripts/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 …]
|
/linux-4.1.27/Documentation/devicetree/bindings/mfd/ |
D | da9052-i2c.txt | 34 pmic: dialog@48 {
|
/linux-4.1.27/arch/arm/boot/dts/ |
D | imx53-qsb.dts | 22 pmic: dialog@48 {
|
D | imx53-smd.dts | 267 pmic: dialog@48 {
|
D | imx53-voipac-dmm-668.dtsi | 150 pmic: dialog@48 {
|
/linux-4.1.27/Documentation/networking/ |
D | ltpc.txt | 9 configuration dialog. You can also compile it as a module.
|
D | ppp_generic.txt | 103 modem commands, and then going through some sort of dialog with the
|
/linux-4.1.27/Documentation/kbuild/ |
D | kconfig.txt | 221 the symbol name. In this Search dialog, you may change the
|
/linux-4.1.27/Documentation/sound/oss/ |
D | PAS16 | 27 The sound driver configuration dialog
|
D | Introduction | 106 or make xconfig (to start the command line, dialog, or x-based 109 2. Select the Sound option and a dialog will be displayed.
|
D | README.OSS | 728 The sound driver configuration dialog 742 So here is the beginning of the config dialog. Answer 'y' or 'n' to these
|
/linux-4.1.27/Documentation/ |
D | email-clients.txt | 220 Compose dialog.
|
D | initrd.txt | 299 dialog and it can also perform some sanity checks (or even some form of
|
/linux-4.1.27/Documentation/video4linux/ |
D | v4l2-controls.txt | 727 A fully featured GUI can make a dialog with multiple tabs with each tab
|
/linux-4.1.27/drivers/staging/speakup/ |
D | spkguide.txt | 764 This is useful when moving through various menus and dialog boxes.
|
/linux-4.1.27/ |
D | CREDITS | 2079 D: Author of the dialog utility, foundation
|
D | MAINTAINERS | 3164 W: http://www.dialog-semiconductor.com/products
|