Add menushell initialiser to output viewer
[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 <argp.h>
26 #include <ui/command-line.h>
27 #include "relocatable.h"
28
29 #include "psppire-data-window.h"
30 #include "psppire.h"
31
32 #include <libpspp/getl.h>
33 #include <unistd.h>
34 #include <data/casereader.h>
35 #include <data/datasheet.h>
36 #include <data/file-handle-def.h>
37 #include <data/settings.h>
38 #include <data/file-name.h>
39 #include <data/procedure.h>
40 #include <libpspp/getl.h>
41 #include <language/lexer/lexer.h>
42 #include <libpspp/version.h>
43 #include <output/output.h>
44 #include <output/journal.h>
45 #include <language/syntax-string-source.h>
46
47 #include <gtk/gtk.h>
48 #include <glade/glade.h>
49 #include "psppire-dict.h"
50 #include "psppire-var-store.h"
51 #include "psppire-data-store.h"
52 #include "helper.h"
53 #include "message-dialog.h"
54 #include <ui/syntax-gen.h>
55
56
57 #include "psppire-output-window.h"
58
59 #include <data/sys-file-reader.h>
60 #include <data/por-file-reader.h>
61
62 #include <ui/source-init-opts.h>
63
64 PsppireDataStore *the_data_store = 0;
65 PsppireVarStore *the_var_store = 0;
66
67 static void create_icon_factory (void);
68
69 struct source_stream *the_source_stream ;
70 struct dataset * the_dataset = NULL;
71
72 static GtkWidget *the_data_window;
73
74 static void
75 replace_casereader (struct casereader *s)
76 {
77   psppire_data_store_set_reader (the_data_store, s);
78 }
79
80 #define _(msgid) gettext (msgid)
81 #define N_(msgid) msgid
82
83 void
84 initialize (struct command_line_processor *clp, int argc, char **argv)
85 {
86   PsppireDict *dictionary = 0;
87
88   /* gtk_init messes with the locale.
89      So unset the bits we want to control ourselves */
90   setlocale (LC_NUMERIC, "C");
91
92   bindtextdomain (PACKAGE, locale_dir);
93
94
95   glade_init ();
96
97   gsl_set_error_handler_off ();
98   fn_init ();
99   outp_init ();
100   settings_init (&viewer_width, &viewer_length);
101   fh_init ();
102   the_source_stream =
103     create_source_stream (
104                           fn_getenv_default ("STAT_INCLUDE_PATH", include_path)
105                           );
106
107   the_dataset = create_dataset ();
108
109
110   message_dialog_init (the_source_stream);
111
112   dictionary = psppire_dict_new_from_dict (dataset_dict (the_dataset));
113
114   bind_textdomain_codeset (PACKAGE, "UTF-8");
115
116   /* Create the model for the var_sheet */
117   the_var_store = psppire_var_store_new (dictionary);
118
119   the_data_store = psppire_data_store_new (dictionary);
120   replace_casereader (NULL);
121
122   create_icon_factory ();
123
124   outp_configure_driver_line (
125     ss_cstr ("gui:ascii:screen:squeeze=on headers=off top-margin=0 "
126              "bottom-margin=0 paginate=off length=auto width=auto "
127              "emphasis=none "
128              "output-file=\"" OUTPUT_FILE_NAME "\" append=yes"));
129
130   unlink (OUTPUT_FILE_NAME);
131
132   journal_enable ();
133   textdomain (PACKAGE);
134
135   /* Ignore alarm clock signals */
136   signal (SIGALRM, SIG_IGN);
137
138   the_data_window = psppire_data_window_new ();
139
140   command_line_processor_replace_aux (clp, &post_init_argp, the_source_stream);
141   command_line_processor_replace_aux (clp, &non_option_argp, the_source_stream);
142
143   command_line_processor_parse (clp, argc, argv);
144
145   execute_syntax (create_syntax_string_source (""));
146
147   gtk_widget_show (the_data_window);
148 }
149
150
151 void
152 de_initialize (void)
153 {
154   destroy_source_stream (the_source_stream);
155   message_dialog_done ();
156   settings_done ();
157   outp_done ();
158 }
159
160
161
162 struct icon_info
163 {
164   const char *file_name;
165   const gchar *id;
166 };
167
168
169 static const struct icon_info icons[] =
170   {
171     {PKGDATADIR "/value-labels.png",    "pspp-value-labels"},
172     {PKGDATADIR "/weight-cases.png",    "pspp-weight-cases"},
173     {PKGDATADIR "/goto-variable.png",   "pspp-goto-variable"},
174     {PKGDATADIR "/insert-variable.png", "pspp-insert-variable"},
175     {PKGDATADIR "/insert-case.png",     "pspp-insert-case"},
176     {PKGDATADIR "/split-file.png",      "pspp-split-file"},
177     {PKGDATADIR "/select-cases.png",    "pspp-select-cases"},
178     {PKGDATADIR "/recent-dialogs.png",  "pspp-recent-dialogs"},
179     {PKGDATADIR "/nominal.png",         "var-nominal"},
180     {PKGDATADIR "/ordinal.png",         "var-ordinal"},
181     {PKGDATADIR "/scale.png",           "var-scale"},
182     {PKGDATADIR "/string.png",          "var-string"},
183     {PKGDATADIR "/date-scale.png",      "var-date-scale"}
184   };
185
186 static void
187 create_icon_factory (void)
188 {
189   gint i;
190   GtkIconFactory *factory = gtk_icon_factory_new ();
191
192   for (i = 0 ; i < sizeof (icons) / sizeof(icons[0]); ++i)
193     {
194       GError *err = NULL;
195       GdkPixbuf *pixbuf =
196         gdk_pixbuf_new_from_file (relocate (icons[i].file_name), &err);
197
198       if ( pixbuf )
199         {
200           GtkIconSet *icon_set = gtk_icon_set_new_from_pixbuf (pixbuf);
201           g_object_unref (pixbuf);
202           gtk_icon_factory_add ( factory, icons[i].id, icon_set);
203         }
204       else
205         {
206           g_warning ("Cannot create icon: %s", err->message);
207           g_clear_error (&err);
208         }
209     }
210
211   {
212     /* Create our own "pspp-stock-reset" item, using the
213        GTK_STOCK_REFRESH icon set */
214
215     GtkStockItem items[] = {
216       {"pspp-stock-reset", N_("_Reset"), 0, 0, PACKAGE},
217       {"pspp-stock-select", N_("_Select"), 0, 0, PACKAGE}
218     };
219
220
221     gtk_stock_add (items, 2);
222     gtk_icon_factory_add (factory, "pspp-stock-reset",
223                           gtk_icon_factory_lookup_default (GTK_STOCK_REFRESH)
224                           );
225
226     gtk_icon_factory_add (factory, "pspp-stock-select",
227                           gtk_icon_factory_lookup_default (GTK_STOCK_INDEX)
228                           );
229   }
230
231   gtk_icon_factory_add_default (factory);
232 }
233
234 \f
235
236 static error_t
237 parse_non_options (int key, char *arg, struct argp_state *state)
238 {
239   struct source_stream *ss = state->input;
240
241   if ( NULL == ss )
242     return 0;
243
244   switch (key)
245     {
246     case ARGP_KEY_ARG:
247       {
248         struct string syntax;
249         FILE *fp = fopen (arg, "r");
250         if (NULL == fp)
251           {
252             const int errnum = errno;
253             fprintf (state->err_stream, _("Cannot open %s: %s.\n"),
254                      arg, strerror (errnum));
255             return 0;
256           }
257         if ( sfm_detect (fp))
258           {
259             ds_init_cstr (&syntax, "GET FILE=");
260             goto close;
261           }
262         rewind (fp);
263         if (pfm_detect (fp))
264           {
265             ds_init_cstr (&syntax, "IMPORT FILE=");
266             goto close;
267           }
268
269         fclose (fp);
270         msg (ME, _("%s is neither a system nor portable file"), arg);
271         break;
272
273       close:
274         fclose (fp);
275
276         syntax_gen_string (&syntax, ss_cstr (arg));
277         ds_put_cstr (&syntax, ".");
278
279         getl_append_source (ss,
280                             create_syntax_string_source (ds_cstr (&syntax)),
281                             GETL_BATCH,
282                             ERRMODE_CONTINUE);
283
284         ds_destroy (&syntax);
285
286         psppire_window_set_filename (the_data_window, arg);
287
288         break;
289       }
290     default:
291       return ARGP_ERR_UNKNOWN;
292     }
293   return 0;
294 }
295
296
297 const struct argp non_option_argp = {NULL, parse_non_options, 0, 0, 0, 0, 0};