Fixed some bad interaction between variable and data sheets.
[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 /*
22  * Initial main.c file generated by Glade. Edit as required.
23  * Glade will not overwrite this file.
24  */
25
26 #include <assert.h>
27 #include <libpspp/version.h>
28 #include <libpspp/copyleft.h>
29 #include <getopt.h>
30 #include <gtk/gtk.h>
31 #include <gtk/gtk.h>
32 #include <glade/glade.h>
33 #include "menu-actions.h"
34 #include "psppire-dict.h"
35 #include "psppire-var-store.h"
36 #include "psppire-data-store.h"
37
38 #include "helper.h"
39 #include "data-sheet.h"
40 #include "var-sheet.h"
41 #include "psppire-case-array.h"
42 #include "message-dialog.h"
43
44 GladeXML *xml;
45
46
47 PsppireDict *the_dictionary = 0;
48 PsppireCaseArray *the_cases = 0;
49
50
51 PsppireDataStore *data_store = 0;
52
53
54 static bool parse_command_line (int *argc, char ***argv, 
55                                 gchar **filename, GError **err);
56
57
58 int 
59 main(int argc, char *argv[]) 
60 {
61   PsppireVarStore *var_store ;
62   GtkWidget *data_editor ;
63   GtkSheet *var_sheet ; 
64   GtkSheet *data_sheet ;
65
66   gchar *filename=0;
67   GError *err = 0;
68
69   gtk_init(&argc, &argv);
70
71   if ( ! parse_command_line(&argc, &argv, &filename, &err) ) 
72     {
73       g_clear_error(&err);
74       return 1;
75     }
76
77
78   glade_init();
79
80   message_dialog_init();
81
82   the_dictionary = psppire_dict_new();
83
84   /* Create the model for the var_sheet */
85   var_store = psppire_var_store_new(the_dictionary);
86
87   /* Create the model for the data sheet */
88   the_cases = psppire_case_array_new(100000, 20);
89
90   data_store = psppire_data_store_new(the_dictionary, the_cases);
91
92   /* load the interface */
93   xml = glade_xml_new(PKGDATADIR "/psppire.glade", NULL, NULL);
94
95   if ( !xml ) return 1;
96
97   data_editor = get_widget_assert(xml, "data_editor");
98   gtk_window_set_icon_from_file(GTK_WINDOW(data_editor), 
99                                 PKGDATADIR "/psppicon.png",0);
100
101   /* connect the signals in the interface */
102   glade_xml_signal_autoconnect(xml);
103
104   var_sheet  = GTK_SHEET(get_widget_assert(xml, "variable_sheet"));
105   data_sheet = GTK_SHEET(get_widget_assert(xml, "data_sheet"));
106
107   gtk_sheet_set_model(var_sheet, G_SHEET_MODEL(var_store));
108   
109   gtk_sheet_set_model(data_sheet, G_SHEET_MODEL(data_store));
110
111   gtk_init_add(callbacks_on_init, 0);
112
113   if (filename)
114     gtk_init_add((GtkFunction)load_system_file, filename);
115
116   /* start the event loop */
117   gtk_main();
118
119   message_dialog_done();
120
121   return 0;
122 }
123
124
125 /* Parses the command line specified by ARGC and ARGV as received by
126    main().  Returns true if normal execution should proceed,
127    false if the command-line indicates that PSPP should exit. */
128 static bool
129 parse_command_line (int *argc, char ***argv, gchar **filename, GError **err)
130 {
131   static struct option long_options[] =
132     {
133       {"help", no_argument, NULL, 'h'},
134       {"version", no_argument, NULL, 'V'},
135       {0, 0, 0, 0},
136     };
137
138   int c;
139
140   for (;;)
141     {
142       c = getopt_long (*argc, *argv, "hV", long_options, NULL);
143       if (c == -1)
144         break;
145
146       switch (c)
147         {
148         case 'h':
149           g_printerr("Usage: psppire {|--help|--version}\n");
150           return false;
151         case 'V':
152           g_print(version);
153           g_print("\n");
154           g_print(legal);
155           return false;
156         default:
157           return false;
158         }
159     }
160
161   if ( optind < *argc) 
162     {
163       *filename = (*argv)[optind];
164     }
165
166   return true;
167 }