Unlimited the number of variables that the GUI can cope with.
[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 <assert.h>
22 #include <libintl.h>
23
24 #include <libpspp/version.h>
25 #include <libpspp/copyleft.h>
26 #include <data/settings.h>
27
28 #include <getopt.h>
29 #include <gtk/gtk.h>
30 #include <gtk/gtk.h>
31 #include <glade/glade.h>
32 #include "menu-actions.h"
33 #include "psppire-dict.h"
34 #include "psppire-var-store.h"
35 #include "psppire-data-store.h"
36 #include "helper.h"
37 #include "data-sheet.h"
38 #include "var-sheet.h"
39 #include "psppire-case-array.h"
40 #include "message-dialog.h"
41
42 GladeXML *xml;
43
44
45 PsppireDict *the_dictionary = 0;
46 PsppireCaseArray *the_cases = 0;
47
48
49 PsppireDataStore *data_store = 0;
50
51
52 static bool parse_command_line (int *argc, char ***argv, 
53                                 gchar **filename, GError **err);
54
55
56 #define _(msgid) gettext (msgid)
57 #define N_(msgid) msgid
58
59 static void
60 give_help(void)
61 {
62   static struct msg m = {
63     MSG_GENERAL, 
64     MSG_NOTE,
65     {0, -1},
66     0, 
67   };
68
69   if (! m.text) 
70     m.text=g_strdup(_("Sorry. The help system hasn't yet been implemented."));
71
72   popup_message(&m);
73 }
74
75 PsppireVarStore *var_store = 0;
76
77 int 
78 main(int argc, char *argv[]) 
79 {
80
81   GtkWidget *data_editor ;
82   GtkSheet *var_sheet ; 
83   GtkSheet *data_sheet ;
84
85   gchar *filename=0;
86   GError *err = 0;
87
88   gtk_init(&argc, &argv);
89
90   /* gtk_init messes with the locale. 
91      So unset the bits we want to control ourselves */
92   setlocale (LC_NUMERIC, "C");
93
94   bindtextdomain (PACKAGE, locale_dir);
95
96   textdomain (PACKAGE);
97
98   if ( ! parse_command_line(&argc, &argv, &filename, &err) ) 
99     {
100       g_clear_error(&err);
101       return 1;
102     }
103
104
105   glade_init();
106
107
108   settings_init();
109
110   /* 
111   set_pspp_locale("da_DK");
112   */
113
114   message_dialog_init();
115
116   the_dictionary = psppire_dict_new();
117
118   bind_textdomain_codeset(PACKAGE, "UTF-8");
119
120   /* Create the model for the var_sheet */
121   var_store = psppire_var_store_new(the_dictionary);
122
123   /* Create the model for the data sheet */
124   the_cases = psppire_case_array_new(100000, 20);
125
126   data_store = psppire_data_store_new(the_dictionary, the_cases);
127
128   /* load the interface */
129   xml = glade_xml_new(PKGDATADIR "/psppire.glade", NULL, NULL);
130
131   if ( !xml ) return 1;
132
133   data_editor = get_widget_assert(xml, "data_editor");
134   gtk_window_set_icon_from_file(GTK_WINDOW(data_editor), 
135                                 PKGDATADIR "/psppicon.png",0);
136
137   /* connect the signals in the interface */
138   glade_xml_signal_autoconnect(xml);
139
140   var_sheet  = GTK_SHEET(get_widget_assert(xml, "variable_sheet"));
141   data_sheet = GTK_SHEET(get_widget_assert(xml, "data_sheet"));
142
143   gtk_sheet_set_model(var_sheet, G_SHEET_MODEL(var_store));
144   
145   gtk_sheet_set_model(data_sheet, G_SHEET_MODEL(data_store));
146
147   if (filename)
148     gtk_init_add((GtkFunction)load_system_file, filename);
149   else
150     gtk_init_add((GtkFunction)clear_file, 0);
151
152   var_data_selection_init();
153
154   {
155   GList *helps = glade_xml_get_widget_prefix(xml, "help_button_");
156
157   GList *i;
158   for ( i = g_list_first(helps); i ; i = g_list_next(i))
159       g_signal_connect(GTK_WIDGET(i->data), "clicked", give_help, 0);
160   }
161
162
163   /* start the event loop */
164   gtk_main();
165
166   message_dialog_done();
167
168   settings_done();
169
170   return 0;
171 }
172
173
174 /* Parses the command line specified by ARGC and ARGV as received by
175    main().  Returns true if normal execution should proceed,
176    false if the command-line indicates that PSPP should exit. */
177 static bool
178 parse_command_line (int *argc, char ***argv, gchar **filename, GError **err)
179 {
180   static struct option long_options[] =
181     {
182       {"help", no_argument, NULL, 'h'},
183       {"version", no_argument, NULL, 'V'},
184       {0, 0, 0, 0},
185     };
186
187   int c;
188
189   for (;;)
190     {
191       c = getopt_long (*argc, *argv, "hV", long_options, NULL);
192       if (c == -1)
193         break;
194
195       switch (c)
196         {
197         case 'h':
198           g_printerr("Usage: psppire {|--help|--version}\n");
199           return false;
200         case 'V':
201           g_print(version);
202           g_print("\n");
203           g_print(legal);
204           return false;
205         default:
206           return false;
207         }
208     }
209
210   if ( optind < *argc) 
211     {
212       *filename = (*argv)[optind];
213     }
214
215   return true;
216 }
217
218