Change license from GPLv2+ to GPLv3+.
[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 <assert.h>
20 #include <libintl.h>
21
22 #include "relocatable.h"
23
24 #include "data-editor.h"
25
26 #include "psppire.h"
27
28
29 #include <data/casereader.h>
30 #include <data/datasheet.h>
31 #include <data/file-handle-def.h>
32 #include <data/format.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 <libpspp/version.h>
39
40 #include <gtk/gtk.h>
41 #include <glade/glade.h>
42 #include "psppire-dict.h"
43 #include "psppire-var-store.h"
44 #include "psppire-data-store.h"
45 #include "helper.h"
46 #include "data-sheet.h"
47 #include "var-sheet.h"
48 #include "message-dialog.h"
49
50 PsppireDataStore *the_data_store = 0;
51 PsppireVarStore *the_var_store = 0;
52
53 static void create_icon_factory (void);
54
55 struct source_stream *the_source_stream ;
56 struct dataset * the_dataset = NULL;
57
58
59 static void
60 replace_casereader (struct casereader *s)
61 {
62   PsppireCaseFile *pcf = psppire_case_file_new (s);
63
64   psppire_data_store_set_case_file (the_data_store, pcf);
65 }
66
67 void
68 initialize (void)
69 {
70   PsppireDict *dictionary = 0;
71
72   /* gtk_init messes with the locale.
73      So unset the bits we want to control ourselves */
74   setlocale (LC_NUMERIC, "C");
75
76   bindtextdomain (PACKAGE, locale_dir);
77
78   textdomain (PACKAGE);
79
80   glade_init ();
81
82   fmt_init ();
83   settings_init ();
84   fh_init ();
85   the_source_stream =
86     create_source_stream (
87                           fn_getenv_default ("STAT_INCLUDE_PATH", include_path)
88                           );
89
90   the_dataset = create_dataset (NULL, NULL);
91
92
93   message_dialog_init (the_source_stream);
94
95   dictionary = psppire_dict_new_from_dict (dataset_dict (the_dataset));
96
97
98   bind_textdomain_codeset (PACKAGE, "UTF-8");
99
100
101   /* Create the model for the var_sheet */
102   the_var_store = psppire_var_store_new (dictionary);
103
104   the_data_store = psppire_data_store_new (dictionary);
105   replace_casereader (NULL);
106
107
108   create_icon_factory ();
109
110   new_data_window (NULL, NULL);
111 }
112
113
114 void
115 de_initialize (void)
116 {
117   destroy_source_stream (the_source_stream);
118   message_dialog_done ();
119   settings_done ();
120 }
121
122
123 #define PIXBUF_NEW_FROM_FILE(FILE) \
124   gdk_pixbuf_new_from_file (relocate (PKGDATADIR "/" FILE), 0)
125
126
127 static void
128 create_icon_factory (void)
129 {
130   GtkIconFactory *factory = gtk_icon_factory_new ();
131
132   GtkIconSet *icon_set;
133
134   GdkPixbuf *pixbuf;
135
136   pixbuf = PIXBUF_NEW_FROM_FILE ("value-labels.png");
137   icon_set = gtk_icon_set_new_from_pixbuf (pixbuf);
138   g_object_unref (pixbuf);
139   gtk_icon_factory_add ( factory, "pspp-value-labels", icon_set);
140
141   pixbuf = PIXBUF_NEW_FROM_FILE ("weight-cases.png");
142   icon_set = gtk_icon_set_new_from_pixbuf (pixbuf);
143   g_object_unref (pixbuf);
144   gtk_icon_factory_add ( factory, "pspp-weight-cases", icon_set);
145
146   pixbuf = PIXBUF_NEW_FROM_FILE ("goto-variable.png");
147   icon_set = gtk_icon_set_new_from_pixbuf (pixbuf);
148   g_object_unref (pixbuf);
149   gtk_icon_factory_add ( factory, "pspp-goto-variable", icon_set);
150
151   pixbuf = PIXBUF_NEW_FROM_FILE ("insert-variable.png");
152   icon_set = gtk_icon_set_new_from_pixbuf (pixbuf);
153   g_object_unref (pixbuf);
154   gtk_icon_factory_add ( factory, "pspp-insert-variable", icon_set);
155
156   pixbuf = PIXBUF_NEW_FROM_FILE ("insert-case.png");
157   icon_set = gtk_icon_set_new_from_pixbuf (pixbuf);
158   g_object_unref (pixbuf);
159   gtk_icon_factory_add ( factory, "pspp-insert-case", icon_set);
160
161   pixbuf = PIXBUF_NEW_FROM_FILE ("split-file.png");
162   icon_set = gtk_icon_set_new_from_pixbuf (pixbuf);
163   g_object_unref (pixbuf);
164   gtk_icon_factory_add ( factory, "pspp-split-file", icon_set);
165
166   pixbuf = PIXBUF_NEW_FROM_FILE ("select-cases.png");
167   icon_set = gtk_icon_set_new_from_pixbuf (pixbuf);
168   g_object_unref (pixbuf);
169   gtk_icon_factory_add ( factory, "pspp-select-cases", icon_set);
170
171   pixbuf = PIXBUF_NEW_FROM_FILE ("recent-dialogs.png");
172   icon_set = gtk_icon_set_new_from_pixbuf (pixbuf);
173   g_object_unref (pixbuf);
174   gtk_icon_factory_add ( factory, "pspp-recent-dialogs", icon_set);
175
176   pixbuf = PIXBUF_NEW_FROM_FILE ("nominal.png");
177   icon_set = gtk_icon_set_new_from_pixbuf (pixbuf);
178   g_object_unref (pixbuf);
179   gtk_icon_factory_add ( factory, "var-nominal", icon_set);
180
181   pixbuf = PIXBUF_NEW_FROM_FILE ("ordinal.png");
182   icon_set = gtk_icon_set_new_from_pixbuf (pixbuf);
183   g_object_unref (pixbuf);
184   gtk_icon_factory_add ( factory, "var-ordinal", icon_set);
185
186   pixbuf = PIXBUF_NEW_FROM_FILE ("scale.png");
187   icon_set = gtk_icon_set_new_from_pixbuf (pixbuf);
188   g_object_unref (pixbuf);
189   gtk_icon_factory_add ( factory, "var-scale", icon_set);
190
191   pixbuf = PIXBUF_NEW_FROM_FILE ("string.png");
192   icon_set = gtk_icon_set_new_from_pixbuf (pixbuf);
193   g_object_unref (pixbuf);
194   gtk_icon_factory_add ( factory, "var-string", icon_set);
195
196   pixbuf = PIXBUF_NEW_FROM_FILE ("date-scale.png");
197   icon_set = gtk_icon_set_new_from_pixbuf (pixbuf);
198   g_object_unref (pixbuf);
199   gtk_icon_factory_add ( factory, "var-date-scale", icon_set);
200
201
202   gtk_icon_factory_add_default (factory);
203 }
204