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