b99f2896074217beed1fc3672dd0cd0a4338019f
[pspp-builds.git] / src / ui / gui / psppire.c
1 /*
2    PSPPIRE --- A Graphical User Interface for PSPP
3    Copyright (C) 2004, 2005, 2006  Free Software Foundation
4
5    This program is free software; you can redistribute it and/or modify
6    it under the terms of the GNU General Public License as published by
7    the Free Software Foundation; either version 2 of the License, or
8    (at your option) any later version.
9
10    This program is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13    GNU General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program; if not, write to the Free Software
17    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18    02110-1301, USA. */
19
20 #include <config.h>
21
22 #include <assert.h>
23 #include <libintl.h>
24
25
26 #include "data-editor.h"
27 #include <libpspp/version.h>
28 #include <libpspp/copyleft.h>
29 #include <data/file-handle-def.h>
30 #include <data/format.h>
31 #include <data/storage-stream.h>
32 #include <data/case-source.h>
33 #include <data/settings.h>
34 #include <data/file-name.h>
35 #include <data/procedure.h>
36 #include <libpspp/getl.h>
37 #include <language/lexer/lexer.h>
38 #include <ui/flexifile.h>
39
40 #include <getopt.h>
41 #include <gtk/gtk.h>
42 #include <gtk/gtk.h>
43 #include <glade/glade.h>
44 #include "psppire-dict.h"
45 #include "psppire-var-store.h"
46 #include "psppire-data-store.h"
47 #include "helper.h"
48 #include "data-sheet.h"
49 #include "var-sheet.h"
50 #include "message-dialog.h"
51 #include "flexifile-factory.h"
52
53 PsppireDataStore *the_data_store = 0;
54
55
56 static bool parse_command_line (int *argc, char ***argv,
57                                 gchar **filename, GError **err);
58
59
60 PsppireVarStore *the_var_store = 0;
61
62 void create_icon_factory (void);
63
64 struct source_stream *the_source_stream ;
65 struct dataset * the_dataset = NULL;
66
67 static void
68 replace_dictionary (struct dictionary *d)
69 {
70   psppire_dict_replace_dictionary (the_data_store->dict,
71                                    d);
72 }
73
74
75 static void
76 replace_flexifile (struct case_source *s)
77 {
78   if ( NULL == s )
79     psppire_case_file_replace_flexifile (the_data_store->case_file,
80                                          (struct flexifile *) flexifile_create (0));
81   else
82     {
83       if ( ! case_source_is_class (s, &storage_source_class))
84         return ;
85
86       psppire_case_file_replace_flexifile (the_data_store->case_file,
87                                            (struct flexifile *)
88                                            storage_source_get_casefile (s));
89     }
90 }
91
92
93 int
94 main (int argc, char *argv[])
95 {
96   struct casefile_factory *factory;
97   PsppireDict *dictionary = 0;
98
99
100   gchar *filename=0;
101   GError *err = 0;
102   gchar *vers;
103
104   gtk_init (&argc, &argv);
105   if ( (vers = gtk_check_version (GTK_MAJOR_VERSION,
106                                  GTK_MINOR_VERSION,
107                                  GTK_MICRO_VERSION)) )
108     {
109       g_critical (vers);
110     }
111
112
113   /* gtk_init messes with the locale.
114      So unset the bits we want to control ourselves */
115   setlocale (LC_NUMERIC, "C");
116
117   bindtextdomain (PACKAGE, locale_dir);
118
119   textdomain (PACKAGE);
120
121   if ( ! parse_command_line (&argc, &argv, &filename, &err) )
122     {
123       g_clear_error (&err);
124       return 0;
125     }
126
127   glade_init ();
128
129   fmt_init ();
130   settings_init ();
131   fh_init ();
132   factory = flexifile_factory_create ();
133   the_source_stream = create_source_stream (
134                           fn_getenv_default ("STAT_INCLUDE_PATH", include_path)
135                           );
136
137   the_dataset = create_dataset (factory,
138                                 replace_flexifile,
139                                 replace_dictionary);
140
141   message_dialog_init (the_source_stream);
142
143   dictionary = psppire_dict_new_from_dict (
144                                            dataset_dict (the_dataset)
145                                            );
146
147   bind_textdomain_codeset (PACKAGE, "UTF-8");
148
149   /* Create the model for the var_sheet */
150   the_var_store = psppire_var_store_new (dictionary);
151
152
153   the_data_store = psppire_data_store_new (dictionary);
154
155   proc_set_source (the_dataset,
156                    storage_source_create (the_data_store->case_file->flexifile)
157                    );
158
159   create_icon_factory ();
160
161   new_data_window (NULL, NULL);
162
163   /* start the event loop */
164   gtk_main ();
165
166   destroy_source_stream (the_source_stream);
167   message_dialog_done ();
168
169   settings_done ();
170
171   return 0;
172 }
173
174
175 /* Parses the command line specified by ARGC and ARGV as received by
176    main ().  Returns true if normal execution should proceed,
177    false if the command-line indicates that PSPP should exit. */
178 static bool
179 parse_command_line (int *argc, char ***argv, gchar **filename, GError **err)
180 {
181   static struct option long_options[] =
182     {
183       {"help", no_argument, NULL, 'h'},
184       {"version", no_argument, NULL, 'V'},
185       {0, 0, 0, 0},
186     };
187
188   int c;
189
190   for (;;)
191     {
192       c = getopt_long (*argc, *argv, "hV", long_options, NULL);
193       if (c == -1)
194         break;
195
196       switch (c)
197         {
198         case 'h':
199           g_print ("Usage: psppire {|--help|--version}\n");
200           return false;
201         case 'V':
202           g_print (version);
203           g_print ("\n");
204           g_print (legal);
205           return false;
206         default:
207           return false;
208         }
209     }
210
211   if ( optind < *argc)
212     {
213       *filename = (*argv)[optind];
214     }
215
216   return true;
217 }
218
219
220
221 void
222 create_icon_factory (void)
223 {
224   GtkIconFactory *factory = gtk_icon_factory_new ();
225
226   GtkIconSet *icon_set;
227
228   GdkPixbuf *pixbuf;
229
230   pixbuf = gdk_pixbuf_new_from_file (PKGDATADIR "/value-labels.png", 0);
231   icon_set = gtk_icon_set_new_from_pixbuf (pixbuf);
232   g_object_unref (pixbuf);
233   gtk_icon_factory_add ( factory, "pspp-value-labels", icon_set);
234
235   pixbuf = gdk_pixbuf_new_from_file (PKGDATADIR "/weight-cases.png", 0);
236   icon_set = gtk_icon_set_new_from_pixbuf (pixbuf);
237   g_object_unref (pixbuf);
238   gtk_icon_factory_add ( factory, "pspp-weight-cases", icon_set);
239
240   pixbuf = gdk_pixbuf_new_from_file (PKGDATADIR "/goto-variable.png", 0);
241   icon_set = gtk_icon_set_new_from_pixbuf (pixbuf);
242   g_object_unref (pixbuf);
243   gtk_icon_factory_add ( factory, "pspp-goto-variable", icon_set);
244
245   pixbuf = gdk_pixbuf_new_from_file (PKGDATADIR "/insert-variable.png", 0);
246   icon_set = gtk_icon_set_new_from_pixbuf (pixbuf);
247   g_object_unref (pixbuf);
248   gtk_icon_factory_add ( factory, "pspp-insert-variable", icon_set);
249
250   pixbuf = gdk_pixbuf_new_from_file (PKGDATADIR "/insert-case.png", 0);
251   icon_set = gtk_icon_set_new_from_pixbuf (pixbuf);
252   g_object_unref (pixbuf);
253   gtk_icon_factory_add ( factory, "pspp-insert-case", icon_set);
254
255   pixbuf = gdk_pixbuf_new_from_file (PKGDATADIR "/split-file.png", 0);
256   icon_set = gtk_icon_set_new_from_pixbuf (pixbuf);
257   g_object_unref (pixbuf);
258   gtk_icon_factory_add ( factory, "pspp-split-file", icon_set);
259
260   pixbuf = gdk_pixbuf_new_from_file (PKGDATADIR "/select-cases.png", 0);
261   icon_set = gtk_icon_set_new_from_pixbuf (pixbuf);
262   g_object_unref (pixbuf);
263   gtk_icon_factory_add ( factory, "pspp-select-cases", icon_set);
264
265   gtk_icon_factory_add_default (factory);
266 }
267
268
269