Applied patch #6428
[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
24 #include "relocatable.h"
25
26 #include "data-editor.h"
27 #include "psppire.h"
28
29 #include <unistd.h>
30 #include <data/casereader.h>
31 #include <data/datasheet.h>
32 #include <data/file-handle-def.h>
33 #include <data/format.h>
34 #include <data/settings.h>
35 #include <data/file-name.h>
36 #include <data/procedure.h>
37 #include <libpspp/getl.h>
38 #include <language/lexer/lexer.h>
39 #include <libpspp/version.h>
40 #include <output/output.h>
41 #include <output/journal.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 "message-dialog.h"
50
51 #include "output-viewer.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 #define _(msgid) gettext (msgid)
71 #define N_(msgid) msgid
72
73
74 void
75 initialize (void)
76 {
77   PsppireDict *dictionary = 0;
78
79   /* gtk_init messes with the locale.
80      So unset the bits we want to control ourselves */
81   setlocale (LC_NUMERIC, "C");
82
83   bindtextdomain (PACKAGE, locale_dir);
84
85
86   glade_init ();
87
88   gsl_set_error_handler_off ();
89   fn_init ();
90   outp_init ();
91   settings_init (&viewer_width, &viewer_length);
92   fh_init ();
93   the_source_stream =
94     create_source_stream (
95                           fn_getenv_default ("STAT_INCLUDE_PATH", include_path)
96                           );
97
98   the_dataset = create_dataset ();
99
100
101   message_dialog_init (the_source_stream);
102
103   dictionary = psppire_dict_new_from_dict (dataset_dict (the_dataset));
104
105   bind_textdomain_codeset (PACKAGE, "UTF-8");
106
107   /* Create the model for the var_sheet */
108   the_var_store = psppire_var_store_new (dictionary);
109
110   the_data_store = psppire_data_store_new (dictionary);
111   replace_casereader (NULL);
112
113   create_icon_factory ();
114
115   outp_configure_driver_line (
116     ss_cstr ("gui:ascii:screen:squeeze=on headers=off top-margin=0 "
117              "bottom-margin=0 paginate=off length=auto width=auto "
118              "emphasis=none "
119              "output-file=\"" OUTPUT_FILE_NAME "\" append=yes"));
120
121   unlink (OUTPUT_FILE_NAME);
122
123   journal_enable ();
124   textdomain (PACKAGE);
125
126   new_data_window (NULL, NULL);
127 }
128
129
130 void
131 de_initialize (void)
132 {
133   destroy_source_stream (the_source_stream);
134   message_dialog_done ();
135   settings_done ();
136   outp_done ();
137 }
138
139
140
141 struct icon_info
142 {
143   const char *file_name;
144   const gchar *id;
145 };
146
147
148 static const struct icon_info icons[] =
149   {
150     {PKGDATADIR "/value-labels.png",    "pspp-value-labels"},
151     {PKGDATADIR "/weight-cases.png",    "pspp-weight-cases"},
152     {PKGDATADIR "/goto-variable.png",   "pspp-goto-variable"},
153     {PKGDATADIR "/insert-variable.png", "pspp-insert-variable"},
154     {PKGDATADIR "/insert-case.png",     "pspp-insert-case"},
155     {PKGDATADIR "/split-file.png",      "pspp-split-file"},
156     {PKGDATADIR "/select-cases.png",    "pspp-select-cases"},
157     {PKGDATADIR "/recent-dialogs.png",  "pspp-recent-dialogs"},
158     {PKGDATADIR "/nominal.png",         "var-nominal"},
159     {PKGDATADIR "/ordinal.png",         "var-ordinal"},
160     {PKGDATADIR "/scale.png",           "var-scale"},
161     {PKGDATADIR "/string.png",          "var-string"},
162     {PKGDATADIR "/date-scale.png",      "var-date-scale"}
163   };
164
165 static void
166 create_icon_factory (void)
167 {
168   gint i;
169   GtkIconFactory *factory = gtk_icon_factory_new ();
170
171   for (i = 0 ; i < sizeof (icons) / sizeof(icons[0]); ++i)
172     {
173       GError *err = NULL;
174       GdkPixbuf *pixbuf =
175         gdk_pixbuf_new_from_file (relocate (icons[i].file_name), &err);
176
177       if ( pixbuf )
178         {
179           GtkIconSet *icon_set = gtk_icon_set_new_from_pixbuf (pixbuf);
180           g_object_unref (pixbuf);
181           gtk_icon_factory_add ( factory, icons[i].id, icon_set);
182         }
183       else
184         {
185           g_warning ("Cannot create icon: %s", err->message);
186           g_clear_error (&err);
187         }
188     }
189
190   {
191     /* Create our own "pspp-stock-reset" item, using the
192        GTK_STOCK_REFRESH icon set */
193
194     GtkStockItem items[] = {
195       {"pspp-stock-reset", N_("_Reset"), 0, 0, PACKAGE},
196       {"pspp-stock-select", N_("_Select"), 0, 0, PACKAGE}
197     };
198
199
200     gtk_stock_add (items, 2);
201     gtk_icon_factory_add (factory, "pspp-stock-reset", 
202                           gtk_icon_factory_lookup_default (GTK_STOCK_REFRESH)
203                           );
204
205     gtk_icon_factory_add (factory, "pspp-stock-select", 
206                           gtk_icon_factory_lookup_default (GTK_STOCK_INDEX)
207                           );
208   }
209
210   gtk_icon_factory_add_default (factory);
211 }
212