Converted strings to utf8 before passing to gtksheet. Should work properly now 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 /*
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
56
57 int 
58 main(int argc, char *argv[]) 
59 {
60   PsppireVarStore *var_store ;
61   GtkWidget *data_editor ;
62   GtkSheet *var_sheet ; 
63   GtkSheet *data_sheet ;
64
65   gtk_init(&argc, &argv);
66
67   if ( ! parse_command_line(&argc, &argv) ) 
68     return 0;
69
70
71   glade_init();
72
73   message_dialog_init();
74
75   the_dictionary = psppire_dict_new();
76
77   /* Create the model for the var_sheet */
78   var_store = psppire_var_store_new(the_dictionary);
79
80   /* Create the model for the data sheet */
81   the_cases = psppire_case_array_new(100000, 20);
82
83   data_store = psppire_data_store_new(the_dictionary, the_cases);
84
85   /* load the interface */
86   xml = glade_xml_new(PKGDATADIR "/psppire.glade", NULL, NULL);
87
88   if ( !xml ) return 1;
89
90   data_editor = get_widget_assert(xml, "data_editor");
91   gtk_window_set_icon_from_file(GTK_WINDOW(data_editor), 
92                                 PKGDATADIR "/psppicon.png",0);
93
94   /* connect the signals in the interface */
95   glade_xml_signal_autoconnect(xml);
96
97   var_sheet  = GTK_SHEET(get_widget_assert(xml, "variable_sheet"));
98   data_sheet = GTK_SHEET(get_widget_assert(xml, "data_sheet"));
99
100   gtk_sheet_set_model(var_sheet, G_SHEET_MODEL(var_store));
101   
102   gtk_sheet_set_model(data_sheet, G_SHEET_MODEL(data_store));
103
104
105   gtk_init_add(callbacks_on_init, 0);
106
107   /* start the event loop */
108   gtk_main();
109
110   message_dialog_done();
111
112   return 0;
113 }
114
115
116 /* Parses the command line specified by ARGC and ARGV as received by
117    main().  Returns true if normal execution should proceed,
118    false if the command-line indicates that PSPP should exit. */
119 static bool
120 parse_command_line (int *argc, char ***argv)
121 {
122   static struct option long_options[] =
123     {
124       {"help", no_argument, NULL, 'h'},
125       {"version", no_argument, NULL, 'V'},
126       {0, 0, 0, 0},
127     };
128
129   int c;
130
131   for (;;)
132     {
133       c = getopt_long (*argc, *argv, "hV", long_options, NULL);
134       if (c == -1)
135         break;
136
137       switch (c)
138         {
139         case 'h':
140           g_print("Usage: psppire {|--help|--version}\n");
141           return false;
142         case 'V':
143           g_print(version);
144           g_print("\n");
145           g_print(legal);
146           return false;
147         default:
148           return false;
149         }
150     }
151
152   return true;
153 }