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

123456

/freebsd-current/gnu/usr.bin/dialog/
H A DMakefile2 DIALOG= ${SRCTOP}/contrib/dialog
3 PROG= dialog
5 LIBADD= dialog tinfow ncursesw m
/freebsd-current/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.c82 ok_dialog(GtkWidget *entry, gpointer dialog) argument
84 g_return_if_fail(GTK_IS_DIALOG(dialog));
85 gtk_dialog_response(GTK_DIALOG(dialog), GTK_RESPONSE_OK);
89 check_none(GtkWidget *widget, GdkEventKey *event, gpointer dialog) argument
93 /* esc -> close dialog */
94 gtk_dialog_response(GTK_DIALOG(dialog), GTK_RESPONSE_CLOSE);
99 dialog, GTK_RESPONSE_CLOSE));
156 GtkWidget *parent_window, *dialog, *entry; local
187 dialog = gtk_message_dialog_new(GTK_WINDOW(parent_window), 0,
190 gtk_window_set_title(GTK_WINDOW(dialog), "OpenSS
216 G_CALLBACK(ok_dialog), dialog); local
226 G_CALLBACK(check_none), dialog); local
[all...]
H A Dgnome-ssh-askpass3.c66 ok_dialog(GtkWidget *entry, gpointer dialog) argument
68 g_return_if_fail(GTK_IS_DIALOG(dialog));
69 gtk_dialog_response(GTK_DIALOG(dialog), GTK_RESPONSE_OK);
73 check_none(GtkWidget *widget, GdkEventKey *event, gpointer dialog) argument
77 /* esc -> close dialog */
78 gtk_dialog_response(GTK_DIALOG(dialog), GTK_RESPONSE_CLOSE);
83 dialog, GTK_RESPONSE_CLOSE));
140 GtkWidget *parent_window, *dialog, *entry, *err; local
174 dialog = gtk_message_dialog_new(GTK_WINDOW(parent_window), 0,
177 gtk_window_set_title(GTK_WINDOW(dialog), "OpenSS
203 G_CALLBACK(ok_dialog), dialog); local
213 G_CALLBACK(check_none), dialog); local
[all...]
/freebsd-current/usr.bin/dpv/
H A DMakefile8 LIBADD= dpv dialog
/freebsd-current/contrib/dialog/
H A Dmsgbox.c27 #include <dialog.h>
52 WINDOW *dialog = 0; local
93 dialog = dlg_new_window(height, width, y, x);
94 dlg_register_window(dialog, "msgbox", binding);
95 dlg_register_buttons(dialog, "msgbox", buttons);
101 dlg_draw_box2(dialog, 0, 0, height, width, dialog_attr, border_attr, border2_attr);
102 dlg_draw_title(dialog, title);
104 dlg_attrset(dialog, dialog_attr);
109 dlg_draw_bottom_box2(dialog, border_attr, border2_attr, dialog_attr);
111 dlg_draw_buttons(dialog, heigh
[all...]
H A Dpause.c4 * pause.c -- implements the pause dialog
27 #include <dialog.h>
71 WINDOW *dialog; local
116 /* center dialog box on screen */
120 dialog = dlg_new_window(height, width, y, x);
121 dlg_register_window(dialog, "pause", binding);
122 dlg_register_buttons(dialog, "pause", buttons);
125 nodelay(dialog, TRUE);
129 (void) werase(dialog);
130 dlg_draw_box2(dialog,
[all...]
H A Dyesno.c27 #include <dialog.h>
31 * Display a dialog box with two buttons - Yes and No.
49 WINDOW *dialog = 0; local
81 dialog = dlg_new_window(height, width, y, x);
82 dlg_register_window(dialog, "yesno", binding);
83 dlg_register_buttons(dialog, "yesno", buttons);
85 dlg_draw_box2(dialog, 0, 0, height, width, dialog_attr, border_attr, border2_attr);
86 dlg_draw_bottom_box2(dialog, border_attr, border2_attr, dialog_attr);
87 dlg_draw_title(dialog, title);
88 dlg_draw_helpline(dialog, FALS
[all...]
H A Dversion.c4 * version.c -- dialog's version string
23 #include <dialog.h>
H A Dinputbox.c46 * Display a dialog box for entering a string
85 WINDOW *dialog; local
130 dialog = dlg_new_window(height, width, yorg, xorg);
131 dlg_register_window(dialog, "inputbox", binding);
132 dlg_register_buttons(dialog, "inputbox", buttons);
136 dlg_draw_box2(dialog, 0, 0, height, width, dialog_attr, border_attr, border2_attr);
137 dlg_draw_bottom_box2(dialog, border_attr, border2_attr, dialog_attr);
138 dlg_draw_title(dialog, title);
140 dlg_attrset(dialog, dialog_attr);
141 dlg_draw_helpline(dialog, FALS
[all...]
H A Ddlg_internals.h4 * dlg_internals.h -- runtime binding support for dialog
27 #include <dialog.h>
H A Dtimebox.c4 * timebox.c -- implements the timebox dialog
121 CleanupResult(int code, WINDOW *dialog, char *prompt, DIALOG_VARS * save_vars) argument
123 dlg_del_window(dialog);
134 * Display a dialog box for entering a date
181 WINDOW *dialog; local
218 dialog = dlg_new_window(height, width,
223 return CleanupResult(DLG_EXIT_ERROR, dialog, prompt, &save_vars);
226 dlg_register_window(dialog, "timebox", binding);
227 dlg_register_buttons(dialog, "timebox", buttons);
229 dlg_draw_box2(dialog,
[all...]
H A Drangebox.c4 * rangebox.c -- implements the rangebox dialog
202 WINDOW *dialog; local
241 dialog = dlg_new_window(height, width,
245 data.window = dialog;
263 * The slider is scaled, to try to use the width of the dialog.
280 dlg_register_window(dialog, "rangebox", binding);
281 dlg_register_buttons(dialog, "rangebox", buttons);
283 dlg_draw_box2(dialog, 0, 0, height, width, dialog_attr, border_attr, border2_attr);
286 dlg_draw_box2(dialog,
292 dlg_draw_bottom_box2(dialog, border_att
[all...]
H A Dmixedgauge.c4 * mixedgauge.c -- implements the mixedgauge dialog
27 #include <dialog.h>
38 WINDOW *dialog; member in struct:__anon464
109 WINDOW *win = dlg->dialog;
213 * Update mixed-gauge dialog (may be from pipe, may be via direct calls).
225 (void) wmove(dlg->dialog, dlg->height - 3, 4);
226 dlg_attrset(dlg->dialog, gauge_attr);
229 (void) waddch(dlg->dialog, ' ');
231 (void) wmove(dlg->dialog, dlg->height - 3, (dlg->width / 2) - 2);
232 (void) wprintw(dlg->dialog, "
[all...]
H A Dtailbox.c27 #include <dialog.h>
304 * Display text from a file in a dialog box, like in a "tail -f".
335 WINDOW *dialog, *text; local
363 dialog = dlg_new_window(height, width, y, x);
368 text = dlg_sub_window(dialog,
374 dlg_draw_box2(dialog, 0, 0, height, width, dialog_attr, border_attr, border2_attr);
375 dlg_draw_bottom_box2(dialog, border_attr, border2_attr, dialog_attr);
376 dlg_draw_title(dialog, title);
377 dlg_draw_helpline(dialog, FALSE);
382 dlg_draw_buttons(dialog, heigh
[all...]
H A Dchecklist.c29 #include <dialog.h>
36 WINDOW *dialog; member in struct:__anon442
106 getyx(data->dialog, cur_y, cur_x);
116 dlg_draw_scrollbar(data->dialog,
128 (void) wmove(data->dialog, cur_y, cur_x);
203 WINDOW *dialog; local
283 dialog = dlg_new_window(height, width, y, x);
284 all.dialog = dialog;
285 dlg_register_window(dialog, widget_nam
[all...]
H A Dguage.c4 * guage.c -- implements the gauge dialog
27 #include <dialog.h>
121 WINDOW *dialog = obj->obj.win; local
123 if (dialog != 0) {
126 (void) werase(dialog);
127 dlg_draw_box2(dialog, 0, 0, obj->height, obj->width, dialog_attr,
130 dlg_draw_title(dialog, obj->title);
132 dlg_attrset(dialog, dialog_attr);
133 dlg_draw_helpline(dialog, FALSE);
134 dlg_print_autowrap(dialog, ob
331 WINDOW *dialog = dlg_new_window(height, width, y, x); local
[all...]
/freebsd-current/contrib/dialog/samples/
H A Dmsgbox-utf89 ${DIALOG-dialog} "$@" \
/freebsd-current/gnu/usr.bin/
H A DMakefile4 SUBDIR.${MK_DIALOG}+= dialog
/freebsd-current/contrib/bsddialog/lib/
H A Dtheme.c63 .dialog.delimtitle = true,
64 .dialog.titlecolor = WHITE,
65 .dialog.lineraisecolor = WHITE,
66 .dialog.linelowercolor = WHITE,
67 .dialog.color = WHITE,
68 .dialog.bottomtitlecolor = WHITE,
69 .dialog.arrowcolor = WHITE,
112 .dialog.delimtitle = true,
113 .dialog.titlecolor = GET_COLOR(COLOR_BLUE, COLOR_WHITE) | A_BOLD,
114 .dialog
[all...]
H A Dlib_util.h98 struct dialog { struct
124 set_buttons(struct dialog *d, bool shortcut, const char *oklabel,
126 void draw_buttons(struct dialog *d);
130 int hide_dialog(struct dialog *d);
141 rtextpad(struct dialog *d, int ytext, int xtext, int upnotext, int downnotext);
158 int dialog_size_position(struct dialog *d, int hnotext, int minw, int *htext);
160 /* dialog */
161 void end_dialog(struct dialog *d);
162 int draw_dialog(struct dialog *d);
166 int cols, struct dialog *
[all...]
/freebsd-current/gnu/lib/libdialog/
H A DMakefile2 DIALOG= ${SRCTOP}/contrib/dialog
4 LIB= dialog
12 INCS= dialog.h dlg_colors.h dlg_config.h dlg_keys.h
13 MAN= dialog.3
/freebsd-current/usr.sbin/bsdconfig/share/
H A DMakefile5 FILES= common.subr device.subr dialog.subr geom.subr keymap.subr \
/freebsd-current/contrib/dialog/package/
H A Ddialog.spec1 Summary: dialog - display dialog boxes from shell scripts
2 %define AppProgram dialog
6 # $XTermId: dialog.spec,v 1.146 2021/01/16 16:21:23 tom Exp $
17 Summary: Development headers/library for the dialog package.
22 display messages using dialog boxes from a shell script. These types
23 of dialog boxes are implemented (though not all are necessarily compiled
24 into dialog):
45 cp -v package/dialog.map package/%{ActualProg}.map
/freebsd-current/lib/libdpv/
H A DMakefile9 LIBADD= dialog figpar util tinfow ncursesw

Completed in 325 milliseconds

123456