1 /* PSPPIRE - a graphical user interface for PSPP.
2 Copyright (C) 2006, 2007 Free Software Foundation
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>. */
22 #include <libpspp/copyleft.h>
23 #include <libpspp/version.h>
28 #define _(msgid) gettext (msgid)
29 #define N_(msgid) msgid
32 static const gchar *artists[] = { "Patrick Brunier", "Dondi Bogusky", NULL};
35 about_new (GtkMenuItem *m, GtkWindow *parent)
37 GtkWidget *about = gtk_about_dialog_new ();
40 gdk_pixbuf_new_from_file_at_size (relocate (PKGDATADIR "/pspplogo.png"),
43 gtk_about_dialog_set_logo (GTK_ABOUT_DIALOG (about), pb);
46 gtk_window_set_icon_name (GTK_WINDOW (about), "psppicon");
48 gtk_about_dialog_set_website (GTK_ABOUT_DIALOG (about),
49 "http://www.gnu.org/software/pspp");
51 gtk_about_dialog_set_version (GTK_ABOUT_DIALOG (about),
54 gtk_about_dialog_set_authors (GTK_ABOUT_DIALOG (about),
55 (const gchar **) authors);
57 gtk_about_dialog_set_artists (GTK_ABOUT_DIALOG (about),
60 gtk_about_dialog_set_license (GTK_ABOUT_DIALOG (about),
63 gtk_about_dialog_set_comments (GTK_ABOUT_DIALOG (about),
64 _("A program for the analysis of sampled data"));
66 gtk_about_dialog_set_copyright (GTK_ABOUT_DIALOG (about),
67 "Free Software Foundation");
69 gtk_about_dialog_set_translator_credits
71 GTK_ABOUT_DIALOG (about),
72 /* TRANSLATORS: Use this string to list the people who have helped with
73 translation to your language. */
74 _("translator-credits")
77 gtk_window_set_transient_for (GTK_WINDOW (about), parent);
79 gtk_window_set_modal (GTK_WINDOW (about), TRUE);
81 gtk_dialog_run (GTK_DIALOG (about));
83 gtk_widget_hide (about);