Catch errors creating icon pixbufs and report them with g_warning.
[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 #include "psppire.h"
26
27 #include <unistd.h>
28 #include <data/casereader.h>
29 #include <data/datasheet.h>
30 #include <data/file-handle-def.h>
31 #include <data/format.h>
32 #include <data/settings.h>
33 #include <data/file-name.h>
34 #include <data/procedure.h>
35 #include <libpspp/getl.h>
36 #include <language/lexer/lexer.h>
37 #include <libpspp/version.h>
38 #include <output/output.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 #include "output-viewer.h"
51
52 PsppireDataStore *the_data_store = 0;
53 PsppireVarStore *the_var_store = 0;
54
55 static void create_icon_factory (void);
56
57 struct source_stream *the_source_stream ;
58 struct dataset * the_dataset = NULL;
59
60
61 static void
62 replace_casereader (struct casereader *s)
63 {
64   PsppireCaseFile *pcf = psppire_case_file_new (s);
65
66   psppire_data_store_set_case_file (the_data_store, pcf);
67 }
68
69 void
70 initialize (void)
71 {
72   PsppireDict *dictionary = 0;
73
74   /* gtk_init messes with the locale.
75      So unset the bits we want to control ourselves */
76   setlocale (LC_NUMERIC, "C");
77
78   bindtextdomain (PACKAGE, locale_dir);
79
80   textdomain (PACKAGE);
81
82   glade_init ();
83
84   fmt_init ();
85   fn_init ();
86   outp_init ();
87   settings_init ();
88   fh_init ();
89   the_source_stream =
90     create_source_stream (
91                           fn_getenv_default ("STAT_INCLUDE_PATH", include_path)
92                           );
93
94   the_dataset = create_dataset (NULL, NULL);
95
96
97   message_dialog_init (the_source_stream);
98
99   dictionary = psppire_dict_new_from_dict (dataset_dict (the_dataset));
100
101   bind_textdomain_codeset (PACKAGE, "UTF-8");
102
103   /* Create the model for the var_sheet */
104   the_var_store = psppire_var_store_new (dictionary);
105
106   the_data_store = psppire_data_store_new (dictionary);
107   replace_casereader (NULL);
108
109   create_icon_factory ();
110
111   outp_configure_driver_line (
112     ss_cstr ("gui:ascii:screen:squeeze=on headers=off top-margin=0 "
113              "bottom-margin=0 paginate=off length=50 "
114              "width=" OUTPUT_LINE_WIDTH_str " emphasis=none "
115              "output-file=\"" OUTPUT_FILE_NAME "\" append=yes"));
116
117   unlink (OUTPUT_FILE_NAME);
118
119   new_data_window (NULL, NULL);
120 }
121
122
123 void
124 de_initialize (void)
125 {
126   destroy_source_stream (the_source_stream);
127   message_dialog_done ();
128   settings_done ();
129   outp_done ();
130 }
131
132
133 struct icon_info
134 {
135   const char *file_name;
136   const gchar *id;
137 };
138
139
140 static const struct icon_info icons[] =
141   {
142     {PKGDATADIR "/value-labels.png",    "pspp-value-labels"},
143     {PKGDATADIR "/weight-cases.png",    "pspp-weight-cases"},
144     {PKGDATADIR "/goto-variable.png",   "pspp-goto-variable"},
145     {PKGDATADIR "/insert-variable.png", "pspp-insert-variable"},
146     {PKGDATADIR "/insert-case.png",     "pspp-insert-case"},
147     {PKGDATADIR "/split-file.png",      "pspp-split-file"},
148     {PKGDATADIR "/select-cases.png",    "pspp-select-cases"},
149     {PKGDATADIR "/recent-dialogs.png",  "pspp-recent-dialogs"},
150     {PKGDATADIR "/nominal.png",         "var-nominal"},
151     {PKGDATADIR "/ordinal.png",         "var-ordinal"},
152     {PKGDATADIR "/scale.png",           "var-scale"},
153     {PKGDATADIR "/string.png",          "var-string"},
154     {PKGDATADIR "/date-scale.png",      "var-date-scale"}
155   };
156
157 static void
158 create_icon_factory (void)
159 {
160   gint i;
161   GtkIconFactory *factory = gtk_icon_factory_new ();
162
163   for (i = 0 ; i < sizeof (icons) / sizeof(icons[0]); ++i)
164     {
165       GError *err = NULL;
166       GdkPixbuf *pixbuf =
167         gdk_pixbuf_new_from_file (relocate (icons[i].file_name), &err);
168
169       if ( pixbuf )
170         {
171           GtkIconSet *icon_set = gtk_icon_set_new_from_pixbuf (pixbuf);
172           g_object_unref (pixbuf);
173           gtk_icon_factory_add ( factory, icons[i].id, icon_set);
174         }
175       else
176         {
177           g_warning ("Cannot create icon: %s", err->message);
178           g_clear_error (&err);
179         }
180     }
181
182   gtk_icon_factory_add_default (factory);
183 }
184