Put unique dictionary indexes into internal variables
[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 "data-editor.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 #include "output-viewer.h"
57
58 #include <data/sys-file-reader.h>
59 #include <data/por-file-reader.h>
60
61 #include <ui/source-init-opts.h>
62
63 PsppireDataStore *the_data_store = 0;
64 PsppireVarStore *the_var_store = 0;
65
66 static void create_icon_factory (void);
67
68 struct source_stream *the_source_stream ;
69 struct dataset * the_dataset = NULL;
70
71
72 static void
73 replace_casereader (struct casereader *s)
74 {
75   psppire_data_store_set_reader (the_data_store, s);
76 }
77
78 #define _(msgid) gettext (msgid)
79 #define N_(msgid) msgid
80
81 void
82 initialize (struct command_line_processor *clp, int argc, char **argv)
83 {
84   PsppireDict *dictionary = 0;
85
86   /* gtk_init messes with the locale.
87      So unset the bits we want to control ourselves */
88   setlocale (LC_NUMERIC, "C");
89
90   bindtextdomain (PACKAGE, locale_dir);
91
92
93   glade_init ();
94
95   gsl_set_error_handler_off ();
96   fn_init ();
97   outp_init ();
98   settings_init (&viewer_width, &viewer_length);
99   fh_init ();
100   the_source_stream =
101     create_source_stream (
102                           fn_getenv_default ("STAT_INCLUDE_PATH", include_path)
103                           );
104
105   the_dataset = create_dataset ();
106
107
108   message_dialog_init (the_source_stream);
109
110   dictionary = psppire_dict_new_from_dict (dataset_dict (the_dataset));
111
112   bind_textdomain_codeset (PACKAGE, "UTF-8");
113
114   /* Create the model for the var_sheet */
115   the_var_store = psppire_var_store_new (dictionary);
116
117   the_data_store = psppire_data_store_new (dictionary);
118   replace_casereader (NULL);
119
120
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   command_line_processor_replace_aux (clp, &post_init_argp, the_source_stream);
139   command_line_processor_replace_aux (clp, &non_option_argp, the_source_stream);
140
141   command_line_processor_parse (clp, argc, argv);
142
143   new_data_window (NULL, NULL);
144
145   execute_syntax (create_syntax_string_source (""));
146 }
147
148
149 void
150 de_initialize (void)
151 {
152   destroy_source_stream (the_source_stream);
153   message_dialog_done ();
154   settings_done ();
155   outp_done ();
156 }
157
158
159
160 struct icon_info
161 {
162   const char *file_name;
163   const gchar *id;
164 };
165
166
167 static const struct icon_info icons[] =
168   {
169     {PKGDATADIR "/value-labels.png",    "pspp-value-labels"},
170     {PKGDATADIR "/weight-cases.png",    "pspp-weight-cases"},
171     {PKGDATADIR "/goto-variable.png",   "pspp-goto-variable"},
172     {PKGDATADIR "/insert-variable.png", "pspp-insert-variable"},
173     {PKGDATADIR "/insert-case.png",     "pspp-insert-case"},
174     {PKGDATADIR "/split-file.png",      "pspp-split-file"},
175     {PKGDATADIR "/select-cases.png",    "pspp-select-cases"},
176     {PKGDATADIR "/recent-dialogs.png",  "pspp-recent-dialogs"},
177     {PKGDATADIR "/nominal.png",         "var-nominal"},
178     {PKGDATADIR "/ordinal.png",         "var-ordinal"},
179     {PKGDATADIR "/scale.png",           "var-scale"},
180     {PKGDATADIR "/string.png",          "var-string"},
181     {PKGDATADIR "/date-scale.png",      "var-date-scale"}
182   };
183
184 static void
185 create_icon_factory (void)
186 {
187   gint i;
188   GtkIconFactory *factory = gtk_icon_factory_new ();
189
190   for (i = 0 ; i < sizeof (icons) / sizeof(icons[0]); ++i)
191     {
192       GError *err = NULL;
193       GdkPixbuf *pixbuf =
194         gdk_pixbuf_new_from_file (relocate (icons[i].file_name), &err);
195
196       if ( pixbuf )
197         {
198           GtkIconSet *icon_set = gtk_icon_set_new_from_pixbuf (pixbuf);
199           g_object_unref (pixbuf);
200           gtk_icon_factory_add ( factory, icons[i].id, icon_set);
201         }
202       else
203         {
204           g_warning ("Cannot create icon: %s", err->message);
205           g_clear_error (&err);
206         }
207     }
208
209   {
210     /* Create our own "pspp-stock-reset" item, using the
211        GTK_STOCK_REFRESH icon set */
212
213     GtkStockItem items[] = {
214       {"pspp-stock-reset", N_("_Reset"), 0, 0, PACKAGE},
215       {"pspp-stock-select", N_("_Select"), 0, 0, PACKAGE}
216     };
217
218
219     gtk_stock_add (items, 2);
220     gtk_icon_factory_add (factory, "pspp-stock-reset",
221                           gtk_icon_factory_lookup_default (GTK_STOCK_REFRESH)
222                           );
223
224     gtk_icon_factory_add (factory, "pspp-stock-select",
225                           gtk_icon_factory_lookup_default (GTK_STOCK_INDEX)
226                           );
227   }
228
229   gtk_icon_factory_add_default (factory);
230 }
231
232 \f
233
234 static error_t
235 parse_non_options (int key, char *arg, struct argp_state *state)
236 {
237   struct source_stream *ss = state->input;
238
239   if ( NULL == ss )
240     return 0;
241
242   switch (key)
243     {
244     case ARGP_KEY_ARG:
245       {
246         struct string syntax;
247         FILE *fp = fopen (arg, "r");
248         if (NULL == fp)
249           {
250             const int errnum = errno;
251             fprintf (state->err_stream, _("Cannot open %s: %s.\n"),
252                      arg, strerror (errnum));
253             return 0;
254           }
255         if ( sfm_detect (fp))
256           {
257             ds_init_cstr (&syntax, "GET FILE=");
258             goto close;
259           }
260         rewind (fp);
261         if (pfm_detect (fp))
262           {
263             ds_init_cstr (&syntax, "IMPORT FILE=");
264             goto close;
265           }
266
267         fclose (fp);
268         msg (ME, _("%s is neither a system nor portable file"), arg);
269         break;
270
271       close:
272         fclose (fp);
273
274         syntax_gen_string (&syntax, ss_cstr (arg));
275         ds_put_cstr (&syntax, ".");
276
277         getl_append_source (ss,
278                             create_syntax_string_source (ds_cstr (&syntax)),
279                             GETL_BATCH,
280                             ERRMODE_CONTINUE);
281
282         ds_destroy (&syntax);
283         break;
284       }
285     default:
286       return ARGP_ERR_UNKNOWN;
287     }
288   return 0;
289 }
290
291
292 const struct argp non_option_argp = {NULL, parse_non_options, 0, 0, 0, 0, 0};