Searched refs:dialog (Results 1 - 25 of 146) sorted by relevance

123456

/freebsd-11-stable/contrib/dialog/
H A Dpause.c4 * pause.c -- implements the pause dialog
27 #include <dialog.h>
71 WINDOW *dialog; local
109 /* center dialog box on screen */
113 dialog = dlg_new_window(height, width, y, x);
114 dlg_register_window(dialog, "pause", binding);
115 dlg_register_buttons(dialog, "pause", buttons);
118 nodelay(dialog, TRUE);
122 (void) werase(dialog);
123 dlg_draw_box2(dialog,
[all...]
H A Dyesno.c27 #include <dialog.h>
31 * Display a dialog box with two buttons - Yes and No.
50 WINDOW *dialog = 0; local
74 if (dialog != 0)
75 dlg_move_window(dialog, height, width, y, x);
79 dialog = dlg_new_window(height, width, y, x);
80 dlg_register_window(dialog, "yesno", binding);
81 dlg_register_buttons(dialog, "yesno", buttons);
84 dlg_draw_box2(dialog, 0, 0, height, width, dialog_attr, border_attr, border2_attr);
85 dlg_draw_bottom_box2(dialog, border_att
[all...]
H A Dmsgbox.c27 #include <dialog.h>
52 WINDOW *dialog = 0; local
87 if (dialog != 0)
88 dlg_move_window(dialog, height, width, y, x);
92 dialog = dlg_new_window(height, width, y, x);
93 dlg_register_window(dialog, "msgbox", binding);
94 dlg_register_buttons(dialog, "msgbox", buttons);
100 dlg_draw_box2(dialog, 0, 0, height, width, dialog_attr, border_attr, border2_attr);
101 dlg_draw_title(dialog, title);
103 (void) wattrset(dialog, dialog_att
[all...]
H A Dprogressbox.c26 #include <dialog.h>
112 pause_for_ok(WINDOW *dialog, int height, int width) argument
134 dlg_register_window(dialog, "progressbox", binding);
135 dlg_register_buttons(dialog, "progressbox", buttons);
137 dlg_draw_bottom_box2(dialog, border_attr, border2_attr, dialog_attr);
145 dlg_draw_buttons(dialog,
151 key = dlg_mouse_wgetch(dialog, &fkey);
188 dlg_unregister_window(dialog);
204 WINDOW *dialog, *text; local
218 dialog
[all...]
H A Dversion.c4 * version.c -- dialog's version string
23 #include <dialog.h>
H A Dtimebox.c4 * timebox.c -- implements the timebox dialog
24 #include <dialog.h>
122 CleanupResult(int code, WINDOW *dialog, char *prompt, DIALOG_VARS * save_vars) argument
124 dlg_del_window(dialog);
135 * Display a dialog box for entering a date
182 WINDOW *dialog; local
211 dialog = dlg_new_window(height, width,
216 return CleanupResult(DLG_EXIT_ERROR, dialog, prompt, &save_vars);
219 dlg_register_window(dialog, "timebox", binding);
220 dlg_register_buttons(dialog, "timebo
[all...]
H A Dinputbox.c27 #include <dialog.h>
41 * Display a dialog box for entering a string
78 WINDOW *dialog; local
115 dialog = dlg_new_window(height, width, yorg, xorg);
116 dlg_register_window(dialog, "inputbox", binding);
117 dlg_register_buttons(dialog, "inputbox", buttons);
121 dlg_draw_box2(dialog, 0, 0, height, width, dialog_attr, border_attr, border2_attr);
122 dlg_draw_bottom_box2(dialog, border_attr, border2_attr, dialog_attr);
123 dlg_draw_title(dialog, title);
125 (void) wattrset(dialog, dialog_att
[all...]
H A Dmixedgauge.c4 * mixedgauge.c -- implements the mixedgauge dialog
27 #include <dialog.h>
38 WINDOW *dialog; member in struct:__anon952
109 WINDOW *win = dlg->dialog;
210 * Update mixed-gauge dialog (may be from pipe, may be via direct calls).
222 (void) wmove(dlg->dialog, dlg->height - 3, 4);
223 (void) wattrset(dlg->dialog, gauge_attr);
226 (void) waddch(dlg->dialog, ' ');
228 (void) wmove(dlg->dialog, dlg->height - 3, (dlg->width / 2) - 2);
229 (void) wprintw(dlg->dialog, "
[all...]
H A Dguage.c4 * guage.c -- implements the gauge dialog
27 #include <dialog.h>
121 WINDOW *dialog = obj->obj.win; local
124 if (dialog != 0 && obj->obj.input != 0) {
125 (void) werase(dialog);
126 dlg_draw_box2(dialog, 0, 0, obj->height, obj->width, dialog_attr,
129 dlg_draw_title(dialog, obj->title);
131 (void) wattrset(dialog, dialog_attr);
132 dlg_draw_helpline(dialog, FALSE);
133 dlg_print_autowrap(dialog, ob
323 WINDOW *dialog = dlg_new_window(height, width, y, x); local
[all...]
/freebsd-11-stable/gnu/usr.bin/dialog/
H A DMakefile3 DIALOG= ${.CURDIR}/../../../contrib/dialog
4 PROG= dialog
6 LIBADD= dialog ncursesw m
/freebsd-11-stable/crypto/openssh/contrib/
H A Dgnome-ssh-askpass1.c73 GtkWidget *dialog, *entry, *label; local
78 dialog = gnome_dialog_new("OpenSSH", GNOME_STOCK_BUTTON_OK,
85 gtk_box_pack_start(GTK_BOX(GNOME_DIALOG(dialog)->vbox),
90 gtk_box_pack_start(GTK_BOX(GNOME_DIALOG(dialog)->vbox), entry, FALSE,
96 gtk_object_set(GTK_OBJECT(dialog), "type", GTK_WINDOW_POPUP, NULL);
97 gnome_dialog_set_default(GNOME_DIALOG(dialog), 0);
98 gtk_window_set_position (GTK_WINDOW(dialog), GTK_WIN_POS_CENTER);
99 gtk_window_set_policy(GTK_WINDOW(dialog), FALSE, FALSE, TRUE);
100 gnome_dialog_close_hides(GNOME_DIALOG(dialog), TRUE);
101 gtk_container_set_border_width(GTK_CONTAINER(GNOME_DIALOG(dialog)
[all...]
H A Dgnome-ssh-askpass2.c78 ok_dialog(GtkWidget *entry, gpointer dialog) argument
80 g_return_if_fail(GTK_IS_DIALOG(dialog));
81 gtk_dialog_response(GTK_DIALOG(dialog), GTK_RESPONSE_OK);
90 GtkWidget *parent_window, *dialog, *entry; local
101 dialog = gtk_message_dialog_new(GTK_WINDOW(parent_window), 0,
109 GTK_BOX(gtk_dialog_get_content_area(GTK_DIALOG(dialog))), entry,
115 gtk_window_set_title(GTK_WINDOW(dialog), "OpenSSH");
116 gtk_window_set_position (GTK_WINDOW(dialog), GTK_WIN_POS_CENTER);
117 gtk_window_set_keep_above(GTK_WINDOW(dialog), TRUE);
119 /* Make <enter> close dialog */
122 G_CALLBACK(ok_dialog), dialog); local
[all...]
/freebsd-11-stable/usr.bin/dpv/
H A DMakefile7 LIBADD= dpv dialog
/freebsd-11-stable/contrib/dialog/samples/
H A Dmsgbox-utf89 ${DIALOG-dialog} "$@" \
H A Dsetup-vars7 # exported, they would also be visible in the dialog program (a subprocess).
9 : ${DIALOG=dialog}
/freebsd-11-stable/usr.sbin/tzsetup/
H A DMakefile12 CFLAGS+= -I${SRCTOP}/contrib/dialog -DHAVE_DIALOG
13 LIBADD= dialog ncursesw
/freebsd-11-stable/usr.sbin/bsdinstall/scripts/
H A Dnetconfig_ipv435 f_include $BSDCFG_SHARE/dialog.subr
43 "") dialog --backtitle 'FreeBSD Installer' --title 'Network Configuration' \
49 dialog --backtitle 'FreeBSD Installer' --title 'Network Configuration' --yesno 'Would you like to use DHCP to configure this interface?' 0 0
52 dialog --backtitle 'FreeBSD Installer' --infobox "Acquiring DHCP lease..." 0 0
56 dialog --backtitle 'FreeBSD Installer' --msgbox "DHCP lease acquisition failed." 0 0
69 IF_CONFIG=$(dialog --backtitle 'FreeBSD Installer' --title 'Network Configuration' --form 'Static Network Interface Configuration' 0 0 0 \
H A Dnetconfig_ipv639 f_include $BSDCFG_SHARE/dialog.subr
50 "") dialog --backtitle 'FreeBSD Installer' --title 'Network Configuration' \
59 dialog --backtitle 'FreeBSD Installer' --title 'Network Configuration' \
63 dialog --backtitle 'FreeBSD Installer' \
69 dialog --backtitle 'FreeBSD Installer' --msgbox "SLAAC failed." 0 0
109 IF_CONFIG=$(echo ${ADDRS} | xargs dialog --backtitle 'FreeBSD Installer' \
H A Dchecksum40 dialog --backtitle "FreeBSD Installer" --title "Checksum Verification" \
67 dialog --backtitle "FreeBSD Installer" --title "Error" \
71 dialog --backtitle "FreeBSD Installer" --title "Error" \
H A Dhostname38 HOSTNAME=`dialog --backtitle 'FreeBSD Installer' --title 'Set Hostname' --nocancel --inputbox \
/freebsd-11-stable/usr.sbin/bsdinstall/distextract/
H A DMakefile5 LIBADD= archive dpv figpar ncursesw dialog m
/freebsd-11-stable/usr.sbin/bsdinstall/distfetch/
H A DMakefile5 LIBADD= fetch ncursesw dialog m
/freebsd-11-stable/usr.sbin/bsdinstall/partedit/
H A Ddiskeditor.c34 #include <dialog.h>
67 WINDOW *dialog, *partitions; local
134 dialog = dlg_new_window(height, width, y, x);
135 dlg_register_window(dialog, "diskeditorbox", binding);
136 dlg_register_buttons(dialog, "diskeditorbox", buttons);
138 dlg_draw_box(dialog, 0, 0, height, width, dialog_attr, border_attr);
139 dlg_draw_bottom_box(dialog);
140 dlg_draw_title(dialog, title);
141 wattrset(dialog, dialog_attr);
144 partitions = dlg_sub_window(dialog, partlist_heigh
[all...]
/freebsd-11-stable/contrib/binutils/binutils/
H A Drcparse.y45 static rc_dialog dialog;
181 | input dialog
349 dialog: label
353 memset (&dialog, 0, sizeof dialog);
354 dialog.x = $5;
355 dialog.y = $6;
356 dialog.width = $7;
357 dialog.height = $8;
358 dialog
[all...]
/freebsd-11-stable/gnu/lib/libdialog/
H A DMakefile3 DIALOG= ${.CURDIR}/../../../contrib/dialog
5 LIB= dialog
13 INCS= dialog.h dlg_colors.h dlg_config.h dlg_keys.h
14 MAN= dialog.3

Completed in 133 milliseconds

123456