Home
last modified time | relevance | path

Searched full:dialog (Results 1 – 25 of 254) sorted by relevance

1234567891011

/openbmc/u-boot/scripts/kconfig/lxdialog/
H A Dinputbox.c9 #include "dialog.h"
16 static void print_buttons(WINDOW * dialog, int height, int width, int selected) in print_buttons() argument
21 print_button(dialog, gettext(" Ok "), y, x, selected == 0); in print_buttons()
22 print_button(dialog, gettext(" Help "), y, x + 14, selected == 1); in print_buttons()
24 wmove(dialog, y, x + 1 + 14 * selected); in print_buttons()
25 wrefresh(dialog); in print_buttons()
29 * Display a dialog box for inputing a string
38 WINDOW *dialog; in dialog_inputbox() local
51 /* center dialog box on screen */ in dialog_inputbox()
57 dialog = newwin(height, width, y, x); in dialog_inputbox()
[all …]
H A Dyesno.c9 #include "dialog.h"
14 static void print_buttons(WINDOW * dialog, int height, int width, int selected) in print_buttons() argument
19 print_button(dialog, gettext(" Yes "), y, x, selected == 0); in print_buttons()
20 print_button(dialog, gettext(" No "), y, x + 13, selected == 1); in print_buttons()
22 wmove(dialog, y, x + 1 + 13 * selected); in print_buttons()
23 wrefresh(dialog); in print_buttons()
27 * Display a dialog box with two buttons - Yes and No
32 WINDOW *dialog; in dialog_yesno() local
40 /* center dialog box on screen */ in dialog_yesno()
46 dialog = newwin(height, width, y, x); in dialog_yesno()
[all …]
H A Dtextbox.c9 #include "dialog.h"
26 static void refresh_text_box(WINDOW *dialog, WINDOW *box, int boxh, int boxw, in refresh_text_box() argument
31 print_position(dialog); in refresh_text_box()
32 wmove(dialog, cur_y, cur_x); /* Restore cursor position */ in refresh_text_box()
33 wrefresh(dialog); in refresh_text_box()
38 * Display text from a file in a dialog box.
49 WINDOW *dialog, *box; in dialog_textbox() local
87 /* center dialog box on screen */ in dialog_textbox()
93 dialog = newwin(height, width, y, x); in dialog_textbox()
94 keypad(dialog, TRUE); in dialog_textbox()
[all …]
H A Dchecklist.c11 #include "dialog.h"
88 static void print_buttons(WINDOW * dialog, int height, int width, int selected) in print_buttons() argument
93 print_button(dialog, gettext("Select"), y, x, selected == 0); in print_buttons()
94 print_button(dialog, gettext(" Help "), y, x + 14, selected == 1); in print_buttons()
96 wmove(dialog, y, x + 1 + 14 * selected); in print_buttons()
97 wrefresh(dialog); in print_buttons()
101 * Display a dialog box with a list of options that can be turned on or off
109 WINDOW *dialog, *list; in dialog_checklist() local
129 /* center dialog box on screen */ in dialog_checklist()
135 dialog = newwin(height, width, y, x); in dialog_checklist()
[all …]
H A Dmenubox.c46 #include "dialog.h"
178 WINDOW *dialog, *menu; in dialog_menu() local
192 /* center dialog box on screen */ in dialog_menu()
198 dialog = newwin(height, width, y, x); in dialog_menu()
199 keypad(dialog, TRUE); in dialog_menu()
201 draw_box(dialog, 0, 0, height, width, in dialog_menu()
202 dlg.dialog.atr, dlg.border.atr); in dialog_menu()
203 wattrset(dialog, dlg.border.atr); in dialog_menu()
204 mvwaddch(dialog, height - 3, 0, ACS_LTEE); in dialog_menu()
206 waddch(dialog, ACS_HLINE); in dialog_menu()
[all …]
H A Dutil.c11 #include "dialog.h"
22 dlg.dialog.atr = A_NORMAL; in set_mono_theme()
51 #define DLG_COLOR(dialog, f, b, h) \ argument
53 dlg.dialog.fg = (f); \
54 dlg.dialog.bg = (b); \
55 dlg.dialog.hl = (h); \
62 DLG_COLOR(dialog, COLOR_BLACK, COLOR_WHITE, false); in set_classic_theme()
95 DLG_COLOR(dialog, COLOR_WHITE, COLOR_BLACK, false); in set_blackbg_theme()
182 init_one_color(&dlg.dialog); in init_dialog_colors()
300 * Do some initialization for dialog
[all …]
/openbmc/linux/scripts/kconfig/lxdialog/
H A Dinputbox.c9 #include "dialog.h"
16 static void print_buttons(WINDOW * dialog, int height, int width, int selected) in print_buttons() argument
21 print_button(dialog, " Ok ", y, x, selected == 0); in print_buttons()
22 print_button(dialog, " Help ", y, x + 14, selected == 1); in print_buttons()
24 wmove(dialog, y, x + 1 + 14 * selected); in print_buttons()
25 wrefresh(dialog); in print_buttons()
29 * Display a dialog box for inputing a string
38 WINDOW *dialog; in dialog_inputbox() local
51 /* center dialog box on screen */ in dialog_inputbox()
57 dialog = newwin(height, width, y, x); in dialog_inputbox()
[all …]
H A Dyesno.c9 #include "dialog.h"
14 static void print_buttons(WINDOW * dialog, int height, int width, int selected) in print_buttons() argument
19 print_button(dialog, " Yes ", y, x, selected == 0); in print_buttons()
20 print_button(dialog, " No ", y, x + 13, selected == 1); in print_buttons()
22 wmove(dialog, y, x + 1 + 13 * selected); in print_buttons()
23 wrefresh(dialog); in print_buttons()
27 * Display a dialog box with two buttons - Yes and No
32 WINDOW *dialog; in dialog_yesno() local
40 /* center dialog box on screen */ in dialog_yesno()
46 dialog = newwin(height, width, y, x); in dialog_yesno()
[all …]
H A Dtextbox.c9 #include "dialog.h"
133 static void refresh_text_box(WINDOW *dialog, WINDOW *box, int boxh, int boxw, in refresh_text_box() argument
139 print_position(dialog); in refresh_text_box()
140 wmove(dialog, cur_y, cur_x); /* Restore cursor position */ in refresh_text_box()
141 wrefresh(dialog); in refresh_text_box()
147 * Display text from a file in a dialog box.
157 WINDOW *dialog, *box; in dialog_textbox() local
195 /* center dialog box on screen */ in dialog_textbox()
201 dialog = newwin(height, width, y, x); in dialog_textbox()
202 keypad(dialog, TRUE); in dialog_textbox()
[all …]
H A Dchecklist.c11 #include "dialog.h"
88 static void print_buttons(WINDOW * dialog, int height, int width, int selected) in print_buttons() argument
93 print_button(dialog, "Select", y, x, selected == 0); in print_buttons()
94 print_button(dialog, " Help ", y, x + 14, selected == 1); in print_buttons()
96 wmove(dialog, y, x + 1 + 14 * selected); in print_buttons()
97 wrefresh(dialog); in print_buttons()
101 * Display a dialog box with a list of options that can be turned on or off
109 WINDOW *dialog, *list; in dialog_checklist() local
129 /* center dialog box on screen */ in dialog_checklist()
135 dialog = newwin(height, width, y, x); in dialog_checklist()
[all …]
H A Dmenubox.c46 #include "dialog.h"
170 WINDOW *dialog, *menu; in dialog_menu() local
184 /* center dialog box on screen */ in dialog_menu()
190 dialog = newwin(height, width, y, x); in dialog_menu()
191 keypad(dialog, TRUE); in dialog_menu()
193 draw_box(dialog, 0, 0, height, width, in dialog_menu()
194 dlg.dialog.atr, dlg.border.atr); in dialog_menu()
195 wattrset(dialog, dlg.border.atr); in dialog_menu()
196 mvwaddch(dialog, height - 3, 0, ACS_LTEE); in dialog_menu()
198 waddch(dialog, ACS_HLINE); in dialog_menu()
[all …]
H A Dutil.c11 #include "dialog.h"
22 dlg.dialog.atr = A_NORMAL; in set_mono_theme()
51 #define DLG_COLOR(dialog, f, b, h) \ argument
53 dlg.dialog.fg = (f); \
54 dlg.dialog.bg = (b); \
55 dlg.dialog.hl = (h); \
62 DLG_COLOR(dialog, COLOR_BLACK, COLOR_WHITE, false); in set_classic_theme()
95 DLG_COLOR(dialog, COLOR_WHITE, COLOR_BLACK, false); in set_blackbg_theme()
182 init_one_color(&dlg.dialog); in init_dialog_colors()
300 * Do some initialization for dialog
[all …]
/openbmc/openbmc/meta-openembedded/meta-gnome/recipes-extended/polkit-gnome/polkit-gnome/
H A D0001-Select-the-current-user-to-authenticate-with-by-defa.patch20 create_user_combobox (PolkitGnomeAuthenticationDialog *dialog)
27 @@ -162,7 +162,7 @@ create_user_combobox (PolkitGnomeAuthenticationDialog *dialog)
31 - for (n = 0; dialog->priv->users[n] != NULL; n++)
32 + for (i = 0, n = 0; dialog->priv->users[n] != NULL; n++)
36 @@ -224,6 +224,14 @@ create_user_combobox (PolkitGnomeAuthenticationDialog *dialog)
37 USERNAME_COL, dialog->priv->users[n],
44 + g_free (dialog->priv->selected_user);
45 + dialog->priv->selected_user = g_strdup (dialog->priv->users[n]);
51 @@ -252,8 +260,8 @@ create_user_combobox (PolkitGnomeAuthenticationDialog *dialog)
68 + if (have_user_combobox && gtk_combo_box_get_active (GTK_COMBO_BOX (dialog->priv->user_combobox))…
[all …]
H A D0004-Use-fresh-X11-timestamps-when-displaying-authenticat.patch3 Subject: Use fresh X11 timestamps when displaying authentication dialog
32 gtk_widget_show_all (GTK_WIDGET (authenticator->dialog));
33 - gtk_window_present (GTK_WINDOW (authenticator->dialog));
34 + GdkWindow *window = gtk_widget_get_window (GTK_WIDGET (authenticator->dialog));
38 + gtk_window_present_with_time (GTK_WINDOW (authenticator->dialog), gdk_x11_get_server_time (win…
42 + gtk_window_present (GTK_WINDOW (authenticator->dialog));
45 …n_dialog_run_until_response_for_prompt (POLKIT_GNOME_AUTHENTICATION_DIALOG (authenticator->dialog),
/openbmc/linux/tools/perf/ui/gtk/
H A Dprogress.c7 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()
H A Dutil.c34 GtkWidget *dialog; in perf_gtk__error() local
44 dialog = gtk_message_dialog_new_with_markup(GTK_WINDOW(pgctx->main_window), in perf_gtk__error()
49 gtk_dialog_run(GTK_DIALOG(dialog)); in perf_gtk__error()
51 gtk_widget_destroy(dialog); in perf_gtk__error()
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/dialog/
H A Ddialog_1.3-20250116.bb1 SUMMARY = "display dialog boxes from shell scripts"
2 DESCRIPTION = "Dialog lets you to present a variety of questions \
3 or display messages using dialog boxes from a shell \
5 HOMEPAGE = "http://invisible-island.net/dialog/"
14 # hardcoded here for use in dialog-static recipe
15 S = "${WORKDIR}/dialog-${PV}"
/openbmc/openbmc/poky/meta/recipes-connectivity/connman/connman-gnome/
H A D0001-Port-to-Gtk3.patch28 gtk_window_set_position(GTK_WINDOW(dialog), GTK_WIN_POS_CENTER);
29 gtk_window_set_keep_above(GTK_WINDOW(dialog), TRUE);
30 gtk_window_set_urgency_hint(GTK_WINDOW(dialog), TRUE);
31 - gtk_dialog_set_has_separator(GTK_DIALOG(dialog), FALSE);
32 input->dialog = dialog;
34 gtk_dialog_add_button(GTK_DIALOG(dialog),
39 - gtk_container_add(GTK_CONTAINER(GTK_DIALOG(dialog)->vbox), table);
40 + gtk_container_add(GTK_CONTAINER(gtk_dialog_get_content_area (GTK_DIALOG(dialog))), table);
54 - GtkWidget *dialog;
65 - dialog = gtk_message_dialog_new(parent,
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-graphics/fontforge/fontforge/
H A D0001-Fix-Translations-containing-invalid-directives-hs.patch38 - _("The %1$s in the search dialog contains a reference to %2$.20hs which does not exist in t…
39 + _("The %1$s in the search dialog contains a reference to %2$.20s which does not exist in th…
51 -"The %1$s in the search dialog contains a reference to %2$.20hs which does "
52 +"The %1$s in the search dialog contains a reference to %2$.20s which does "
69 -"The %1$s in the search dialog contains a reference to %2$.20hs which does "
70 +"The %1$s in the search dialog contains a reference to %2$.20s which does "
87 -"The %1$s in the search dialog contains a reference to %2$.20hs which does "
88 +"The %1$s in the search dialog contains a reference to %2$.20s which does "
132 -"The %1$s in the search dialog contains a reference to %2$.20hs which does "
133 +"The %1$s in the search dialog contains a reference to %2$.20s which does "
[all …]
/openbmc/linux/Documentation/devicetree/bindings/regulator/
H A Ddlg,da9121.yaml7 title: Dialog Semiconductor DA9121 voltage regulator
13 Dialog Semiconductor DA9121 Single-channel 10A double-phase buck converter
14 Dialog Semiconductor DA9122 Double-channel 5A single-phase buck converter
15 Dialog Semiconductor DA9220 Double-channel 3A single-phase buck converter
16 Dialog Semiconductor DA9217 Single-channel 6A double-phase buck converter
17 Dialog Semiconductor DA9130 Single-channel 10A double-phase buck converter
18 Dialog Semiconductor DA9131 Double-channel 5A single-phase buck converter
19 Dialog Semiconductor DA9132 Double-channel 3A single-phase buck converter
20 Dialog Semiconductor DA9141 Single-channel 40A quad-phase buck converter
21 Dialog Semiconductor DA9142 Single-channel 20A double-phase buck converter
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/templates/
H A Dbasetable_top.html7 // pop-up dialog and actions. the idea is that there are 2 types
8 // of actions: immediate - performed while the dialog is still
10 // dialog becomes invisible - any resorting if necessary.
12 // When the dialog is open, an interval timer is set up to
13 // determine if the dialog is still visible. when the dialog
26 // check to see if the dialog is visible. if the dialog
67 // when the dialog box goes invisible
123 // items in edit columns dialog
132 // getting initialized - no dialog visible,
152 // save the action to be taken when the dialog closes
/openbmc/linux/sound/pcmcia/vx/
H A Dvxp_ops.c32 [VX_DIALOG] = 0x0d, // DIALOG
146 vx_outb(chip, DIALOG, chip->regDIALOG); in vxp_load_xilinx_binary()
208 vx_outb(chip, DIALOG, chip->regDIALOG); in vxp_load_xilinx_binary()
209 vx_inb(chip, DIALOG); in vxp_load_xilinx_binary()
212 vx_outb(chip, DIALOG, chip->regDIALOG); in vxp_load_xilinx_binary()
213 vx_inb(chip, DIALOG); in vxp_load_xilinx_binary()
225 vx_outb(chip, DIALOG, chip->regDIALOG); in vxp_load_xilinx_binary()
278 if (! (vx_inb(chip, DIALOG) & VXP_DLG_MEMIRQ_MASK)) in vxp_test_and_ack()
283 vx_outb(chip, DIALOG, chip->regDIALOG | VXP_DLG_ACK_MEMIRQ_MASK); in vxp_test_and_ack()
287 vx_inb(chip, DIALOG); in vxp_test_and_ack()
[all …]
/openbmc/openbmc-tools/dbus-vis/
H A Dmain.js2 const {app, BrowserWindow, dialog, ipcMain } = require('electron');
6 // Open-file dialog
11 const x = dialog.showOpenDialogSync(options) + ''; // Convert to string
22 true, // For opening file dialog from the renderer process
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/static/html/
H A Dlayer_deps_modal.html1 <div id="dependencies-modal" class="modal fade" tabindex="-1" role="dialog" aria-hidden="false">
2 <div class="modal-dialog">
20 </div><!-- /.modal-dialog -->
/openbmc/linux/drivers/mfd/
H A Dda9063-core.c3 * Device access for Dialog DA9063 modules
5 * Copyright 2012 Dialog Semiconductors Ltd.
8 * Author: Krystian Garbaciak, Dialog Semiconductor
9 * Author: Michal Hajduk, Dialog Semiconductor
203 MODULE_DESCRIPTION("PMIC driver for Dialog DA9063");

1234567891011