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

/linux-master/scripts/kconfig/lxdialog/
H A Dyesno.c9 #include "dialog.h"
14 static void print_buttons(WINDOW * dialog, int height, int width, int selected) argument
19 print_button(dialog, " Yes ", y, x, selected == 0);
20 print_button(dialog, " No ", y, x + 13, selected == 1);
22 wmove(dialog, y, x + 1 + 13 * selected);
23 wrefresh(dialog);
27 * Display a dialog box with two buttons - Yes and No
32 WINDOW *dialog; local
40 /* center dialog box on screen */
46 dialog
[all...]
H A Dinputbox.c9 #include "dialog.h"
16 static void print_buttons(WINDOW * dialog, int height, int width, int selected) argument
21 print_button(dialog, " Ok ", y, x, selected == 0);
22 print_button(dialog, " Help ", y, x + 14, selected == 1);
24 wmove(dialog, y, x + 1 + 14 * selected);
25 wrefresh(dialog);
29 * Display a dialog box for inputing a string
38 WINDOW *dialog; local
51 /* center dialog box on screen */
57 dialog
[all...]
H A Dtextbox.c9 #include "dialog.h"
133 static void refresh_text_box(WINDOW *dialog, WINDOW *box, int boxh, int boxw, argument
139 print_position(dialog);
140 wmove(dialog, cur_y, cur_x); /* Restore cursor position */
141 wrefresh(dialog);
147 * Display text from a file in a dialog box.
157 WINDOW *dialog, *box; local
195 /* center dialog box on screen */
201 dialog = newwin(height, width, y, x);
202 keypad(dialog, TRU
[all...]
H A Dchecklist.c11 #include "dialog.h"
88 static void print_buttons(WINDOW * dialog, int height, int width, int selected) argument
93 print_button(dialog, "Select", y, x, selected == 0);
94 print_button(dialog, " Help ", y, x + 14, selected == 1);
96 wmove(dialog, y, x + 1 + 14 * selected);
97 wrefresh(dialog);
101 * Display a dialog box with a list of options that can be turned on or off
109 WINDOW *dialog, *list; local
129 /* center dialog box on screen */
135 dialog
[all...]
H A Dmenubox.c46 #include "dialog.h"
170 WINDOW *dialog, *menu; local
184 /* center dialog box on screen */
190 dialog = newwin(height, width, y, x);
191 keypad(dialog, TRUE);
193 draw_box(dialog, 0, 0, height, width,
194 dlg.dialog.atr, dlg.border.atr);
195 wattrset(dialog, dlg.border.atr);
196 mvwaddch(dialog, height - 3, 0, ACS_LTEE);
198 waddch(dialog, ACS_HLIN
[all...]
H A Dutil.c11 #include "dialog.h"
22 dlg.dialog.atr = A_NORMAL;
47 #define DLG_COLOR(dialog, f, b, h) \
49 dlg.dialog.fg = (f); \
50 dlg.dialog.bg = (b); \
51 dlg.dialog.hl = (h); \
58 DLG_COLOR(dialog, COLOR_BLACK, COLOR_WHITE, false);
87 DLG_COLOR(dialog, COLOR_WHITE, COLOR_BLACK, false);
168 init_one_color(&dlg.dialog);
282 * Do some initialization for dialog
334 print_title(WINDOW *dialog, const char *title, int width) argument
[all...]
H A Ddialog.h3 * dialog.h -- common declarations for all dialog modules
84 struct dialog_color dialog; member in struct:dialog_info
186 void print_title(WINDOW *dialog, const char *title, int width);
/linux-master/tools/perf/ui/gtk/
H A Dprogress.c7 static GtkWidget *dialog; variable
15 if (dialog == NULL) {
19 dialog = gtk_window_new(GTK_WINDOW_TOPLEVEL);
25 gtk_container_add(GTK_CONTAINER(dialog), vbox);
27 gtk_window_set_title(GTK_WINDOW(dialog), "perf");
28 gtk_window_resize(GTK_WINDOW(dialog), 300, 80);
29 gtk_window_set_position(GTK_WINDOW(dialog), GTK_WIN_POS_CENTER);
31 gtk_widget_show_all(dialog);
46 gtk_widget_destroy(dialog);
48 dialog
[all...]
H A Dutil.c34 GtkWidget *dialog; local
44 dialog = gtk_message_dialog_new_with_markup(GTK_WINDOW(pgctx->main_window),
49 gtk_dialog_run(GTK_DIALOG(dialog));
51 gtk_widget_destroy(dialog);
/linux-master/scripts/kconfig/
H A Dgconf.c414 GtkWidget *dialog, *label; local
420 dialog = gtk_dialog_new_with_buttons("Warning !",
431 gtk_dialog_set_default_response(GTK_DIALOG(dialog),
435 gtk_container_add(GTK_CONTAINER(GTK_DIALOG(dialog)->vbox), label);
438 result = gtk_dialog_run(GTK_DIALOG(dialog));
448 gtk_widget_destroy(dialog);
637 GtkWidget *dialog; local
652 dialog = gtk_message_dialog_new(GTK_WINDOW(main_wnd),
656 g_signal_connect_swapped(GTK_OBJECT(dialog), "response",
658 GTK_OBJECT(dialog));
665 GtkWidget *dialog; local
683 GtkWidget *dialog; local
[all...]
/linux-master/tools/perf/scripts/python/
H A Dexported-sql-viewer.py3355 # Non-negative integer ranges dialog data item
3382 # Positive integer dialog data item
3431 # Sample time ranges dialog data item converted and validated using 'samples' SQL table
3631 # Selected branch report creation dialog
4174 # Top Calls report creation dialog
4414 by various selection criteria. A dialog box displays available criteria which are AND'ed together.
4428 The data is reduced by various selection criteria. A dialog box displays available criteria which are AND'ed together.
4525 # About dialog
4727 dialog = TopCallsDialog(self.glb, self)
4728 ret = dialog
[all...]

Completed in 158 milliseconds