GtkApplication *application; BoilerplateWindow *window; application = GTK_APPLICATION (user_data); window = BOILERPLATE_WINDOW (gtk_application_get_active_window (application)); static const char *authors[] = { "Julian Richen ", NULL, }; static const char *artists[] = { "Julian Richen ", NULL, }; static const char *translators[] = { "Julian Richen ", NULL, }; /* gtk_window_get_default_icon_name (); GdkPixbuf *logo; GError *error = NULL; logo = gdk_pixbuf_new_from_resource ("/io/github/julianrichen/icons/logo.png", &error); if (error != NULL) { g_warning ("Error when loading the logo: %s", error->message); g_clear_error (&error); } */ gtk_show_about_dialog (window, "program-name", g_get_application_name (), "version", PACKAGE_VERSION, "copyright", "Copyright \xc2\xa9 "COPYRIGHT" Julian Richen", "comments", "Short description of application.", "authors", authors, "artists", artists, "translator-credits", translators, "website-label", "Website", "website", PACKAGE_URL, "logo-icon-name", gtk_window_get_default_icon_name (), "wrap-license", TRUE, "license-type", GTK_LICENSE_GPL_3_0, NULL);