Home | History | Annotate | Download | only in gtk

Lines Matching defs:dialog

44 // dialog.
53 void OnResponse(GtkWidget* dialog, int response_id) {
55 gtk_widget_destroy(dialog);
116 // Build the dialog.
117 GtkWidget* dialog = gtk_dialog_new_with_buttons(
123 // The layout of this dialog is special because the logo should be flush
125 gtk_widget_set_name(dialog, "about-dialog");
126 gtk_dialog_set_has_separator(GTK_DIALOG(dialog), FALSE);
128 GtkWidget* close_button = gtk_dialog_add_button(GTK_DIALOG(dialog),
131 GtkWidget* content_area = GTK_DIALOG(dialog)->vbox;
173 // the top of this function about using a special layout for this dialog.
283 g_signal_connect(dialog, "response", G_CALLBACK(OnResponse), NULL);
284 gtk_window_set_resizable(GTK_WINDOW(dialog), FALSE);
285 gtk_widget_show_all(dialog);