Fixed a multitude of C89 compatibility warnings.
[pspp-builds.git] / src / ui / gui / data-sheet.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 #include <gtk/gtk.h>
23 #include <glade/glade.h>
24
25 #include <ctype.h>
26
27 #include <gtksheet/gtksheet.h>
28
29 #include <gtksheet/gsheet-uniform-row.h>
30
31 #include "psppire-dict.h"
32 #include "psppire-variable.h"
33 #include "psppire-data-store.h"
34 #include "helper.h"
35
36 #include <data/value-labels.h>
37 #include <data/case.h>
38 #include <data/data-in.h>
39
40 #include "menu-actions.h"
41 #include "data-sheet.h"
42
43 #define _(A) A
44 #define N_(A) A
45
46
47 extern GladeXML *xml;
48
49
50 static gboolean 
51 traverse_callback (GtkSheet * sheet, 
52                         gint row, gint col, 
53                         gint *new_row, gint *new_column
54                         )
55 {
56   PsppireDataStore *data_store = PSPPIRE_DATA_STORE(gtk_sheet_get_model(sheet));
57
58   const gint n_vars = psppire_dict_get_var_cnt(data_store->dict);
59
60   if ( *new_column >= n_vars ) 
61     return FALSE;
62
63   return TRUE;
64 }
65
66
67
68 /* Callback which occurs when the column title is double clicked */
69 static gboolean
70 click2column(GtkWidget *w, gint col, gpointer data)
71 {
72   gint current_row, current_column;
73   GtkWidget *var_sheet  = get_widget_assert(xml, "variable_sheet");
74
75   select_sheet(PAGE_VAR_SHEET);
76
77   gtk_sheet_get_active_cell(GTK_SHEET(var_sheet), 
78                             &current_row, &current_column);
79
80   gtk_sheet_set_active_cell(GTK_SHEET(var_sheet), col, current_column);
81
82   return FALSE;
83 }
84
85
86 /* Update the data_ref_entry with the reference of the active cell */
87 static gint 
88 update_data_ref_entry(GtkSheet *sheet, gint row, gint col)
89 {
90
91   /* The entry where the reference to the current cell is displayed */
92   GtkEntry *cell_ref_entry;
93
94   PsppireDataStore *data_store = PSPPIRE_DATA_STORE(gtk_sheet_get_model(sheet));
95   if (data_store)
96     {
97       const struct PsppireVariable *pv = 
98         psppire_dict_get_variable(data_store->dict, col);
99
100       gchar *text ;
101
102       if ( !xml) 
103         return FALSE;
104
105       text = g_strdup_printf("%d: %s", row, 
106                              pv ? psppire_variable_get_name(pv) : "");
107   
108       cell_ref_entry = GTK_ENTRY(get_widget_assert(xml, "cell_ref_entry"));
109
110       gtk_entry_set_text(cell_ref_entry, text);
111
112       g_free(text);
113     }
114
115   return FALSE;
116 }
117
118
119 extern PsppireDataStore *data_store ;
120
121
122 GtkWidget*
123 psppire_data_sheet_create (gchar *widget_name, gchar *string1, gchar *string2,
124                            gint int1, gint int2)
125 {
126   GtkWidget *sheet;
127
128   const gint rows = 10046;
129
130   GObject *row_geometry = g_sheet_uniform_row_new(25, rows); 
131
132   sheet = gtk_sheet_new(G_SHEET_ROW(row_geometry), 
133                         G_SHEET_COLUMN(data_store), "data sheet", 0); 
134
135
136   g_signal_connect (GTK_OBJECT (sheet), "activate",
137                     GTK_SIGNAL_FUNC (update_data_ref_entry),
138                     0);
139
140   g_signal_connect (GTK_OBJECT (sheet), "traverse",
141                     GTK_SIGNAL_FUNC (traverse_callback), 0);
142
143
144   g_signal_connect (GTK_OBJECT (sheet), "double-click-column",
145                     GTK_SIGNAL_FUNC (click2column),
146                     0);
147
148   gtk_widget_show(sheet);
149
150   return sheet;
151 }