Help menu now uses "version" instead of "bare version".
[pspp] / src / ui / gui / help-menu.c
1 /* PSPPIRE - a graphical user interface for PSPP.
2    Copyright (C) 2006, 2007, 2010, 2011, 2012, 2013, 2015  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 "help-menu.h"
25 #include <libpspp/message.h>
26
27 #include "gl/configmake.h"
28 #include "gl/relocatable.h"
29
30 #include <gettext.h>
31 #define _(msgid) gettext (msgid)
32 #define N_(msgid) msgid
33
34
35 static const gchar *artists[] = { "Bastián Díaz", "Hugo Alejandro", NULL};
36
37 static void
38 about_new (GtkMenuItem *mmm, GtkWindow *parent)
39 {
40   GtkWidget *about =  gtk_about_dialog_new ();
41
42   gtk_about_dialog_set_logo_icon_name (GTK_ABOUT_DIALOG (about), "pspp");
43
44   gtk_window_set_icon_name (GTK_WINDOW (about), "pspp");
45
46   gtk_about_dialog_set_website (GTK_ABOUT_DIALOG (about), PACKAGE_URL);
47
48   gtk_about_dialog_set_version (GTK_ABOUT_DIALOG (about),
49                                 version);
50
51   gtk_about_dialog_set_authors (GTK_ABOUT_DIALOG (about),
52                                 (const gchar **) authors);
53
54   gtk_about_dialog_set_artists (GTK_ABOUT_DIALOG (about),
55                                 artists);
56
57   gtk_about_dialog_set_license (GTK_ABOUT_DIALOG (about),
58                                 copyleft);
59
60   gtk_about_dialog_set_comments (GTK_ABOUT_DIALOG (about),
61                                  _("A program for the analysis of sampled data"));
62
63   gtk_about_dialog_set_copyright (GTK_ABOUT_DIALOG (about),
64                                   "Free Software Foundation");
65
66   gtk_about_dialog_set_translator_credits 
67     (
68      GTK_ABOUT_DIALOG (about),
69      /* TRANSLATORS: Do not translate this string.  Instead, put the names of the people
70         who have helped in the translation. */
71      _("translator-credits")
72      );
73
74   gtk_window_set_transient_for (GTK_WINDOW (about), parent);
75
76   gtk_window_set_modal (GTK_WINDOW (about), TRUE);
77
78   gtk_dialog_run (GTK_DIALOG (about));
79
80   gtk_widget_hide (about);
81 }
82
83 /* Open the manual at PAGE */
84 void
85 online_help (const char *page)
86 {
87   GError *err = NULL;
88   gchar *cmd = NULL;
89
90   gchar *argv[3] = { "yelp", 0, 0};
91
92   if (page == NULL)
93     argv[1] = g_strdup_printf ("file://%s", relocate (DOCDIR "/pspp.xml"));
94   else
95     argv[1] = g_strdup_printf ("file://%s#%s", relocate (DOCDIR "/pspp.xml"), page);
96
97   if (! g_spawn_async (NULL, argv,
98                        NULL, G_SPAWN_SEARCH_PATH,
99                        NULL, NULL,   NULL,   &err))
100     {
101       msg (ME, _("Cannot open reference manual: %s.  The PSPP user manual is "
102                  "also available at %s"),
103                   err->message,
104                   PACKAGE_URL "documentation.html");
105     }
106
107   g_free (cmd);
108   g_clear_error (&err);
109 }
110
111 static void
112 reference_manual (GtkMenuItem *menu, gpointer data)
113 {
114   online_help (NULL);
115 }
116
117 GtkWidget *
118 create_help_menu (GtkWindow *toplevel)
119 {
120   GtkWidget *menuitem = gtk_menu_item_new_with_mnemonic (_("_Help"));
121   GtkWidget *menu = gtk_menu_new ();
122
123   GtkWidget *help_about = gtk_menu_item_new_with_mnemonic (_("_About"));
124   GtkWidget *help_ref = gtk_menu_item_new_with_mnemonic (_("_Reference Manual"));
125
126   GtkAccelGroup *accel_group = gtk_accel_group_new ();
127   
128   gtk_window_add_accel_group (toplevel, accel_group);
129
130   gtk_widget_add_accelerator (help_ref,
131                               "activate", accel_group,
132                               GDK_KEY_F1, 0,
133                               GTK_ACCEL_VISIBLE);
134
135   gtk_menu_attach (GTK_MENU (menu), help_ref, 0, 1, 0, 1);
136   gtk_menu_attach (GTK_MENU (menu), help_about, 0, 1, 1, 2);
137
138   g_signal_connect (help_about, "activate", G_CALLBACK (about_new), toplevel);
139   g_signal_connect (help_ref, "activate", G_CALLBACK (reference_manual), NULL);
140   
141   g_object_set (menuitem, "submenu", menu, NULL);
142
143   gtk_widget_show_all (menuitem);
144   
145   return menuitem;
146 }