Replaced the glade definition of about dialog with a C one.
[pspp-builds.git] / src / ui / gui / about.c
1 /* PSPPIRE - a graphical user interface for PSPP.
2    Copyright (C) 2006, 2007  Free Software Foundation
3
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.
8
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.
13
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/>. */
16
17
18 #include <config.h>
19
20 #include <gtk/gtk.h>
21
22 #include <libpspp/copyleft.h>
23 #include <libpspp/version.h>
24 #include "about.h"
25 #include "helper.h"
26
27 #include <gettext.h>
28 #define _(msgid) gettext (msgid)
29 #define N_(msgid) msgid
30
31
32 static const gchar *artists[] = { "Patrick Brunier", "Dondi Bogusky", NULL};
33
34 void
35 about_new (GtkMenuItem *m, GtkWindow *parent)
36 {
37   GtkWidget *about =  gtk_about_dialog_new ();
38
39   GdkPixbuf *pb =
40     gdk_pixbuf_new_from_file_at_size (relocate (PKGDATADIR "/pspplogo.png"),
41                                       64, 64, 0);
42
43   gtk_about_dialog_set_logo (GTK_ABOUT_DIALOG (about), pb);
44
45
46   gtk_window_set_icon_name (GTK_WINDOW (about), "psppicon");
47
48   gtk_about_dialog_set_website (GTK_ABOUT_DIALOG (about),
49                                 "http://www.gnu.org/software/pspp");
50
51   gtk_about_dialog_set_version (GTK_ABOUT_DIALOG (about),
52                                 bare_version);
53
54   gtk_about_dialog_set_authors (GTK_ABOUT_DIALOG (about),
55                                 (const gchar **) authors);
56
57   gtk_about_dialog_set_artists (GTK_ABOUT_DIALOG (about),
58                                 artists);
59
60   gtk_about_dialog_set_license (GTK_ABOUT_DIALOG (about),
61                                 copyleft);
62
63   gtk_about_dialog_set_comments (GTK_ABOUT_DIALOG (about),
64                                  _("A program for the analysis of sampled data"));
65
66   gtk_about_dialog_set_copyright (GTK_ABOUT_DIALOG (about),
67                                   "Free Software Foundation");
68
69
70   /* TRANSLATORS: Use this string to list the people who have helped with
71      translation to your language. */
72   gtk_about_dialog_set_translator_credits (GTK_ABOUT_DIALOG (about),
73                                            _("translator-credits"));
74
75   gtk_window_set_transient_for (GTK_WINDOW (about), parent);
76
77   gtk_window_set_modal (GTK_WINDOW (about), TRUE);
78
79   gtk_window_set_keep_above (GTK_WINDOW (about), TRUE);
80
81   gtk_dialog_run (GTK_DIALOG (about));
82
83   gtk_widget_hide (about);
84 }
85