/* * gawabout.c - * This file is part of gaw Gtk Analog Wave viewer * * include LICENSE * */ #ifdef HAVE_CONFIG_H #include "config.h" #endif #include // #include #include #include // #include #include #ifdef TRACE_MEM #include #endif void gaw_show_about_dialog (GtkWidget *parent) { const gchar *authors[] = { "AUTHORS:", "Steve Tell ", "Hervé Quillévéré ", "", "CONTRIBUTORS:", "Franck Paugnat franck.paugnat at imag.fr", NULL }; const gchar *documenters[] = { "Steve Tell ", "Hervé Quillévéré ", NULL }; const gchar *translator_credits = "translator-credits"; const gchar *copyright = "Copyright \xc2\xa9 2007 2014 Hervé Quillévéré"; const gchar *comments = _("Gtk3 Analog Wave viewer"); const gchar *license = "This program is free software; you can redistribute it and/or " "modify it under the terms of the GNU General Public License as " "published by the Free Software Foundation; either version 2 of " "the License, or (at your option) any later version.\n" "\n" "This program is distributed in the hope that it will be useful, " "but WITHOUT ANY WARRANTY; without even the implied warranty of " "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU " "General Public License for more details.\n" "\n" "You should have received a copy of the GNU General Public License " "along with this program; if not, write to the Free Software " "Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA " "02111-1307, USA.\n"; g_return_if_fail (GTK_IS_WIDGET (parent)); gtk_show_about_dialog ( GTK_WINDOW (parent), "name", "Gtk Analog Wave viewer", "version", VERSION, "copyright", copyright, "comments", comments, "authors", authors, "documenters", documenters, "translator-credits", translator_credits, "logo-icon-name", "accessories-dictionary", "license", license, "wrap-license", TRUE, "screen", gtk_widget_get_screen (parent), NULL); }