Added the /WILCOXON subcommand to NPAR TESTS
[pspp-builds.git] / src / ui / gui / psppire.c
1 /* PSPPIRE - a graphical user interface for PSPP.
2    Copyright (C) 2004, 2005, 2006  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 #include <config.h>
18
19 #include <locale.h>
20 #include <assert.h>
21 #include <libintl.h>
22 #include <gsl/gsl_errno.h>
23 #include <signal.h>
24
25 #include "relocatable.h"
26
27 #include "data-editor.h"
28 #include "psppire.h"
29
30 #include <unistd.h>
31 #include <data/casereader.h>
32 #include <data/datasheet.h>
33 #include <data/file-handle-def.h>
34 #include <data/settings.h>
35 #include <data/file-name.h>
36 #include <data/procedure.h>
37 #include <libpspp/getl.h>
38 #include <language/lexer/lexer.h>
39 #include <libpspp/version.h>
40 #include <output/output.h>
41 #include <output/journal.h>
42
43 #include <gtk/gtk.h>
44 #include <glade/glade.h>
45 #include "psppire-dict.h"
46 #include "psppire-var-store.h"
47 #include "psppire-data-store.h"
48 #include "helper.h"
49 #include "message-dialog.h"
50
51 #include "output-viewer.h"
52
53 PsppireDataStore *the_data_store = 0;
54 PsppireVarStore *the_var_store = 0;
55
56 static void create_icon_factory (void);
57
58 struct source_stream *the_source_stream ;
59 struct dataset * the_dataset = NULL;
60
61
62 static void
63 replace_casereader (struct casereader *s)
64 {
65   PsppireCaseFile *pcf = psppire_case_file_new (s);
66
67   psppire_data_store_set_case_file (the_data_store, pcf);
68 }
69
70 #define _(msgid) gettext (msgid)
71 #define N_(msgid) msgid
72
73
74 void
75 initialize (void)
76 {
77   PsppireDict *dictionary = 0;
78
79   /* gtk_init messes with the locale.
80      So unset the bits we want to control ourselves */
81   setlocale (LC_NUMERIC, "C");
82
83   bindtextdomain (PACKAGE, locale_dir);
84
85
86   glade_init ();
87
88   gsl_set_error_handler_off ();
89   fn_init ();
90   outp_init ();
91   settings_init (&viewer_width, &viewer_length);
92   fh_init ();
93   the_source_stream =
94     create_source_stream (
95                           fn_getenv_default ("STAT_INCLUDE_PATH", include_path)
96                           );
97
98   the_dataset = create_dataset ();
99
100
101   message_dialog_init (the_source_stream);
102
103   dictionary = psppire_dict_new_from_dict (dataset_dict (the_dataset));
104
105   bind_textdomain_codeset (PACKAGE, "UTF-8");
106
107   /* Create the model for the var_sheet */
108   the_var_store = psppire_var_store_new (dictionary);
109
110   the_data_store = psppire_data_store_new (dictionary);
111   replace_casereader (NULL);
112
113   create_icon_factory ();
114
115   outp_configure_driver_line (
116     ss_cstr ("gui:ascii:screen:squeeze=on headers=off top-margin=0 "
117              "bottom-margin=0 paginate=off length=auto width=auto "
118              "emphasis=none "
119              "output-file=\"" OUTPUT_FILE_NAME "\" append=yes"));
120
121   unlink (OUTPUT_FILE_NAME);
122
123   journal_enable ();
124   textdomain (PACKAGE);
125
126   /* Ignore alarm clock signals */
127   signal (SIGALRM, SIG_IGN);
128
129   new_data_window (NULL, NULL);
130 }
131
132
133 void
134 de_initialize (void)
135 {
136   destroy_source_stream (the_source_stream);
137   message_dialog_done ();
138   settings_done ();
139   outp_done ();
140 }
141
142
143
144 struct icon_info
145 {
146   const char *file_name;
147   const gchar *id;
148 };
149
150
151 static const struct icon_info icons[] =
152   {
153     {PKGDATADIR "/value-labels.png",    "pspp-value-labels"},
154     {PKGDATADIR "/weight-cases.png",    "pspp-weight-cases"},
155     {PKGDATADIR "/goto-variable.png",   "pspp-goto-variable"},
156     {PKGDATADIR "/insert-variable.png", "pspp-insert-variable"},
157     {PKGDATADIR "/insert-case.png",     "pspp-insert-case"},
158     {PKGDATADIR "/split-file.png",      "pspp-split-file"},
159     {PKGDATADIR "/select-cases.png",    "pspp-select-cases"},
160     {PKGDATADIR "/recent-dialogs.png",  "pspp-recent-dialogs"},
161     {PKGDATADIR "/nominal.png",         "var-nominal"},
162     {PKGDATADIR "/ordinal.png",         "var-ordinal"},
163     {PKGDATADIR "/scale.png",           "var-scale"},
164     {PKGDATADIR "/string.png",          "var-string"},
165     {PKGDATADIR "/date-scale.png",      "var-date-scale"}
166   };
167
168 static void
169 create_icon_factory (void)
170 {
171   gint i;
172   GtkIconFactory *factory = gtk_icon_factory_new ();
173
174   for (i = 0 ; i < sizeof (icons) / sizeof(icons[0]); ++i)
175     {
176       GError *err = NULL;
177       GdkPixbuf *pixbuf =
178         gdk_pixbuf_new_from_file (relocate (icons[i].file_name), &err);
179
180       if ( pixbuf )
181         {
182           GtkIconSet *icon_set = gtk_icon_set_new_from_pixbuf (pixbuf);
183           g_object_unref (pixbuf);
184           gtk_icon_factory_add ( factory, icons[i].id, icon_set);
185         }
186       else
187         {
188           g_warning ("Cannot create icon: %s", err->message);
189           g_clear_error (&err);
190         }
191     }
192
193   {
194     /* Create our own "pspp-stock-reset" item, using the
195        GTK_STOCK_REFRESH icon set */
196
197     GtkStockItem items[] = {
198       {"pspp-stock-reset", N_("_Reset"), 0, 0, PACKAGE},
199       {"pspp-stock-select", N_("_Select"), 0, 0, PACKAGE}
200     };
201
202
203     gtk_stock_add (items, 2);
204     gtk_icon_factory_add (factory, "pspp-stock-reset", 
205                           gtk_icon_factory_lookup_default (GTK_STOCK_REFRESH)
206                           );
207
208     gtk_icon_factory_add (factory, "pspp-stock-select", 
209                           gtk_icon_factory_lookup_default (GTK_STOCK_INDEX)
210                           );
211   }
212
213   gtk_icon_factory_add_default (factory);
214 }
215