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 static const gchar *artists[] = { "Patrick Brunier", "Dondi Bogusky", NULL};
31 about_new (GtkMenuItem *m, GtkWindow *parent)
33 GtkBuilder *xml = builder_new ("psppire.ui");
35 GtkWidget *about = get_widget_assert (xml, "aboutdialog1");
38 gdk_pixbuf_new_from_file_at_size (relocate (PKGDATADIR "/pspplogo.png"),
41 gtk_about_dialog_set_logo (GTK_ABOUT_DIALOG (about), pb);
44 gtk_window_set_icon_name (GTK_WINDOW (about), "psppicon");
46 gtk_about_dialog_set_website (GTK_ABOUT_DIALOG (about),
47 "http://www.gnu.org/software/pspp");
49 gtk_about_dialog_set_version (GTK_ABOUT_DIALOG (about),
52 gtk_about_dialog_set_authors (GTK_ABOUT_DIALOG (about),
53 (const gchar **) authors);
55 gtk_about_dialog_set_artists (GTK_ABOUT_DIALOG (about),
58 gtk_about_dialog_set_license (GTK_ABOUT_DIALOG (about),
62 gtk_window_set_transient_for (GTK_WINDOW (about), parent);
64 gtk_window_set_modal (GTK_WINDOW (about), TRUE);
66 gtk_window_set_keep_above (GTK_WINDOW (about), TRUE);
68 gtk_dialog_run (GTK_DIALOG (about));
70 gtk_widget_hide (about);