bd123970e5df9ca801400ad23aa4e48e3f392ff0
[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 #include "relocatable.h"
26
27 #include "data-editor.h"
28
29 #include "psppire.h"
30
31
32 #include <data/casereader.h>
33 #include <data/datasheet.h>
34 #include <data/file-handle-def.h>
35 #include <data/format.h>
36 #include <data/settings.h>
37 #include <data/file-name.h>
38 #include <data/procedure.h>
39 #include <libpspp/getl.h>
40 #include <language/lexer/lexer.h>
41 #include <libpspp/version.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 "data-sheet.h"
50 #include "var-sheet.h"
51 #include "message-dialog.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 void
71 initialize (void)
72 {
73   PsppireDict *dictionary = 0;
74
75   /* gtk_init messes with the locale.
76      So unset the bits we want to control ourselves */
77   setlocale (LC_NUMERIC, "C");
78
79   bindtextdomain (PACKAGE, locale_dir);
80
81   textdomain (PACKAGE);
82
83   glade_init ();
84
85   fmt_init ();
86   settings_init ();
87   fh_init ();
88   the_source_stream =
89     create_source_stream (
90                           fn_getenv_default ("STAT_INCLUDE_PATH", include_path)
91                           );
92
93   the_dataset = create_dataset (NULL, NULL);
94
95
96   message_dialog_init (the_source_stream);
97
98   dictionary = psppire_dict_new_from_dict (dataset_dict (the_dataset));
99
100
101   bind_textdomain_codeset (PACKAGE, "UTF-8");
102
103
104   /* Create the model for the var_sheet */
105   the_var_store = psppire_var_store_new (dictionary);
106
107   the_data_store = psppire_data_store_new (dictionary);
108   replace_casereader (NULL);
109
110
111   create_icon_factory ();
112
113   new_data_window (NULL, NULL);
114 }
115
116
117 void
118 de_initialize (void)
119 {
120   destroy_source_stream (the_source_stream);
121   message_dialog_done ();
122   settings_done ();
123 }
124
125
126 #define PIXBUF_NEW_FROM_FILE(FILE) \
127   gdk_pixbuf_new_from_file (relocate (PKGDATADIR "/" FILE), 0)
128
129
130 static void
131 create_icon_factory (void)
132 {
133   GtkIconFactory *factory = gtk_icon_factory_new ();
134
135   GtkIconSet *icon_set;
136
137   GdkPixbuf *pixbuf;
138
139   pixbuf = PIXBUF_NEW_FROM_FILE ("value-labels.png");
140   icon_set = gtk_icon_set_new_from_pixbuf (pixbuf);
141   g_object_unref (pixbuf);
142   gtk_icon_factory_add ( factory, "pspp-value-labels", icon_set);
143
144   pixbuf = PIXBUF_NEW_FROM_FILE ("weight-cases.png");
145   icon_set = gtk_icon_set_new_from_pixbuf (pixbuf);
146   g_object_unref (pixbuf);
147   gtk_icon_factory_add ( factory, "pspp-weight-cases", icon_set);
148
149   pixbuf = PIXBUF_NEW_FROM_FILE ("goto-variable.png");
150   icon_set = gtk_icon_set_new_from_pixbuf (pixbuf);
151   g_object_unref (pixbuf);
152   gtk_icon_factory_add ( factory, "pspp-goto-variable", icon_set);
153
154   pixbuf = PIXBUF_NEW_FROM_FILE ("insert-variable.png");
155   icon_set = gtk_icon_set_new_from_pixbuf (pixbuf);
156   g_object_unref (pixbuf);
157   gtk_icon_factory_add ( factory, "pspp-insert-variable", icon_set);
158
159   pixbuf = PIXBUF_NEW_FROM_FILE ("insert-case.png");
160   icon_set = gtk_icon_set_new_from_pixbuf (pixbuf);
161   g_object_unref (pixbuf);
162   gtk_icon_factory_add ( factory, "pspp-insert-case", icon_set);
163
164   pixbuf = PIXBUF_NEW_FROM_FILE ("split-file.png");
165   icon_set = gtk_icon_set_new_from_pixbuf (pixbuf);
166   g_object_unref (pixbuf);
167   gtk_icon_factory_add ( factory, "pspp-split-file", icon_set);
168
169   pixbuf = PIXBUF_NEW_FROM_FILE ("select-cases.png");
170   icon_set = gtk_icon_set_new_from_pixbuf (pixbuf);
171   g_object_unref (pixbuf);
172   gtk_icon_factory_add ( factory, "pspp-select-cases", icon_set);
173
174   pixbuf = PIXBUF_NEW_FROM_FILE ("recent-dialogs.png");
175   icon_set = gtk_icon_set_new_from_pixbuf (pixbuf);
176   g_object_unref (pixbuf);
177   gtk_icon_factory_add ( factory, "pspp-recent-dialogs", icon_set);
178
179   pixbuf = PIXBUF_NEW_FROM_FILE ("nominal.png");
180   icon_set = gtk_icon_set_new_from_pixbuf (pixbuf);
181   g_object_unref (pixbuf);
182   gtk_icon_factory_add ( factory, "var-nominal", icon_set);
183
184   pixbuf = PIXBUF_NEW_FROM_FILE ("ordinal.png");
185   icon_set = gtk_icon_set_new_from_pixbuf (pixbuf);
186   g_object_unref (pixbuf);
187   gtk_icon_factory_add ( factory, "var-ordinal", icon_set);
188
189   pixbuf = PIXBUF_NEW_FROM_FILE ("scale.png");
190   icon_set = gtk_icon_set_new_from_pixbuf (pixbuf);
191   g_object_unref (pixbuf);
192   gtk_icon_factory_add ( factory, "var-scale", icon_set);
193
194   pixbuf = PIXBUF_NEW_FROM_FILE ("string.png");
195   icon_set = gtk_icon_set_new_from_pixbuf (pixbuf);
196   g_object_unref (pixbuf);
197   gtk_icon_factory_add ( factory, "var-string", icon_set);
198
199   pixbuf = PIXBUF_NEW_FROM_FILE ("date-scale.png");
200   icon_set = gtk_icon_set_new_from_pixbuf (pixbuf);
201   g_object_unref (pixbuf);
202   gtk_icon_factory_add ( factory, "var-date-scale", icon_set);
203
204
205   gtk_icon_factory_add_default (factory);
206 }
207