Applied patch #5611
[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    Written by John Darrington
5
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 2 of the License, or
9    (at your option) any later version.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, write to the Free Software
18    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19    02110-1301, USA. */
20
21 #include <config.h>
22
23 #include <assert.h>
24 #include <libintl.h>
25
26 #include <libpspp/version.h>
27 #include <libpspp/copyleft.h>
28 #include <data/format.h>
29 #include <data/settings.h>
30 #include <libpspp/getl.h>
31
32 #include <getopt.h>
33 #include <gtk/gtk.h>
34 #include <gtk/gtk.h>
35 #include <glade/glade.h>
36 #include "menu-actions.h"
37 #include "psppire-dict.h"
38 #include "psppire-var-store.h"
39 #include "psppire-data-store.h"
40 #include "helper.h"
41 #include "data-sheet.h"
42 #include "var-sheet.h"
43 #include "message-dialog.h"
44
45 GladeXML *xml;
46
47
48 PsppireDict *the_dictionary = 0;
49
50 PsppireDataStore *data_store = 0;
51
52
53 static bool parse_command_line (int *argc, char ***argv, 
54                                 gchar **filename, GError **err);
55
56
57 #define _(msgid) gettext (msgid)
58 #define N_(msgid) msgid
59
60 static void
61 give_help(void)
62 {
63   static struct msg m = {
64     MSG_GENERAL, 
65     MSG_NOTE,
66     {0, -1},
67     0, 
68   };
69
70   if (! m.text) 
71     m.text=g_strdup(_("Sorry. The help system hasn't yet been implemented."));
72
73   popup_message(&m);
74 }
75
76 PsppireVarStore *var_store = 0;
77
78 void create_icon_factory (void);
79
80 static struct source_stream *the_source_stream ;
81
82 int 
83 main(int argc, char *argv[]) 
84 {
85
86   GtkWidget *data_editor ;
87   GtkSheet *var_sheet ; 
88   GtkSheet *data_sheet ;
89
90   gchar *filename=0;
91   GError *err = 0;
92   gchar *vers;
93
94   gtk_init(&argc, &argv);
95   if ( (vers = gtk_check_version(GTK_MAJOR_VERSION, 
96                                  GTK_MINOR_VERSION, 
97                                  GTK_MICRO_VERSION)) )
98     {
99       g_critical(vers);
100     }
101         
102
103   /* gtk_init messes with the locale. 
104      So unset the bits we want to control ourselves */
105   setlocale (LC_NUMERIC, "C");
106
107   bindtextdomain (PACKAGE, locale_dir);
108
109   textdomain (PACKAGE);
110
111   if ( ! parse_command_line(&argc, &argv, &filename, &err) ) 
112     {
113       g_clear_error(&err);
114       return 0;
115     }
116
117   glade_init();
118
119   fmt_init();
120   settings_init();
121   the_source_stream = create_source_stream ();
122   message_dialog_init (the_source_stream);
123
124   the_dictionary = psppire_dict_new();
125
126   bind_textdomain_codeset(PACKAGE, "UTF-8");
127
128   /* Create the model for the var_sheet */
129   var_store = psppire_var_store_new(the_dictionary);
130
131   data_store = psppire_data_store_new(the_dictionary);
132
133   create_icon_factory();
134
135   /* load the interface */
136   xml = glade_xml_new(PKGDATADIR "/psppire.glade", NULL, NULL);
137
138   if ( !xml ) return 1;
139
140   data_editor = get_widget_assert(xml, "data_editor");
141   gtk_window_set_icon_from_file(GTK_WINDOW(data_editor), 
142                                 PKGDATADIR "/psppicon.png",0);
143
144   /* connect the signals in the interface */
145   glade_xml_signal_autoconnect(xml);
146
147   var_sheet  = GTK_SHEET(get_widget_assert(xml, "variable_sheet"));
148   data_sheet = GTK_SHEET(get_widget_assert(xml, "data_sheet"));
149
150   gtk_sheet_set_model(var_sheet, G_SHEET_MODEL(var_store));
151   
152   gtk_sheet_set_model(data_sheet, G_SHEET_MODEL(data_store));
153
154   if (filename)
155     gtk_init_add((GtkFunction)load_system_file, filename);
156   else
157     gtk_init_add((GtkFunction)clear_file, 0);
158
159   var_data_selection_init();
160
161   {
162   GList *helps = glade_xml_get_widget_prefix(xml, "help_button_");
163
164   GList *i;
165   for ( i = g_list_first(helps); i ; i = g_list_next(i))
166       g_signal_connect(GTK_WIDGET(i->data), "clicked", give_help, 0);
167   }
168
169
170   /* start the event loop */
171   gtk_main();
172
173   destroy_source_stream (the_source_stream);
174   message_dialog_done();
175
176   settings_done();
177
178   return 0;
179 }
180
181
182 /* Parses the command line specified by ARGC and ARGV as received by
183    main().  Returns true if normal execution should proceed,
184    false if the command-line indicates that PSPP should exit. */
185 static bool
186 parse_command_line (int *argc, char ***argv, gchar **filename, GError **err)
187 {
188   static struct option long_options[] =
189     {
190       {"help", no_argument, NULL, 'h'},
191       {"version", no_argument, NULL, 'V'},
192       {0, 0, 0, 0},
193     };
194
195   int c;
196
197   for (;;)
198     {
199       c = getopt_long (*argc, *argv, "hV", long_options, NULL);
200       if (c == -1)
201         break;
202
203       switch (c)
204         {
205         case 'h':
206           g_print ("Usage: psppire {|--help|--version}\n");
207           return false;
208         case 'V':
209           g_print (version);
210           g_print ("\n");
211           g_print (legal);
212           return false;
213         default:
214           return false;
215         }
216     }
217
218   if ( optind < *argc) 
219     {
220       *filename = (*argv)[optind];
221     }
222
223   return true;
224 }
225
226
227
228 void 
229 create_icon_factory (void)
230 {
231   GtkIconFactory *factory = gtk_icon_factory_new();
232
233   GtkIconSet *icon_set;
234   
235   GdkPixbuf *pixbuf;
236
237   pixbuf = gdk_pixbuf_new_from_file (PKGDATADIR "/value-labels.png", 0);
238   icon_set = gtk_icon_set_new_from_pixbuf (pixbuf);
239   g_object_unref (pixbuf);
240   gtk_icon_factory_add ( factory, "pspp-value-labels", icon_set);
241
242   pixbuf = gdk_pixbuf_new_from_file (PKGDATADIR "/weight-cases.png", 0);
243   icon_set = gtk_icon_set_new_from_pixbuf (pixbuf);
244   g_object_unref (pixbuf);
245   gtk_icon_factory_add ( factory, "pspp-weight-cases", icon_set);
246
247   pixbuf = gdk_pixbuf_new_from_file (PKGDATADIR "/goto-variable.png", 0);
248   icon_set = gtk_icon_set_new_from_pixbuf (pixbuf);
249   g_object_unref (pixbuf);
250   gtk_icon_factory_add ( factory, "pspp-goto-variable", icon_set);
251
252   pixbuf = gdk_pixbuf_new_from_file (PKGDATADIR "/insert-variable.png", 0);
253   icon_set = gtk_icon_set_new_from_pixbuf (pixbuf);
254   g_object_unref (pixbuf);
255   gtk_icon_factory_add ( factory, "pspp-insert-variable", icon_set);
256
257   pixbuf = gdk_pixbuf_new_from_file (PKGDATADIR "/insert-case.png", 0);
258   icon_set = gtk_icon_set_new_from_pixbuf (pixbuf);
259   g_object_unref (pixbuf);
260   gtk_icon_factory_add ( factory, "pspp-insert-case", icon_set);
261
262   pixbuf = gdk_pixbuf_new_from_file (PKGDATADIR "/split-file.png", 0);
263   icon_set = gtk_icon_set_new_from_pixbuf (pixbuf);
264   g_object_unref (pixbuf);
265   gtk_icon_factory_add ( factory, "pspp-split-file", icon_set);
266
267   pixbuf = gdk_pixbuf_new_from_file (PKGDATADIR "/select-cases.png", 0);
268   icon_set = gtk_icon_set_new_from_pixbuf (pixbuf);
269   g_object_unref (pixbuf);
270   gtk_icon_factory_add ( factory, "pspp-select-cases", icon_set);
271
272   gtk_icon_factory_add_default (factory);
273 }