Home | History | Annotate | Download | only in extensions

Lines Matching defs:dialog

42 void OnResponse(GtkWidget* dialog, int response_id,
50 gtk_widget_destroy(dialog);
59 // Build the dialog.
60 GtkWidget* dialog = gtk_dialog_new_with_buttons(
65 GtkWidget* close_button = gtk_dialog_add_button(GTK_DIALOG(dialog),
68 GTK_DIALOG(dialog),
71 gtk_dialog_set_has_separator(GTK_DIALOG(dialog), FALSE);
74 GtkWidget* content_area = GTK_DIALOG(dialog)->vbox;
162 g_signal_connect(dialog, "response", G_CALLBACK(OnResponse), delegate);
163 gtk_window_set_resizable(GTK_WINDOW(dialog), FALSE);
165 gtk_dialog_set_default_response(GTK_DIALOG(dialog), GTK_RESPONSE_CLOSE);
166 gtk_widget_show_all(dialog);