Fixed some memory leaks in GUI.
[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(const 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       gchar *s ;
102
103       if ( !xml) 
104         return FALSE;
105
106       text = g_strdup_printf("%d: %s", row, 
107                              pv ? psppire_variable_get_name(pv) : "");
108   
109       cell_ref_entry = GTK_ENTRY(get_widget_assert(xml, "cell_ref_entry"));
110
111       s = pspp_locale_to_utf8(text, -1, 0);
112
113       g_free(text);
114
115       gtk_entry_set_text(cell_ref_entry, s);
116
117       g_free(s);
118     }
119
120   return FALSE;
121 }
122
123
124 extern PsppireDataStore *data_store ;
125
126
127 GtkWidget*
128 psppire_data_sheet_create (gchar *widget_name, gchar *string1, gchar *string2,
129                            gint int1, gint int2)
130 {
131   GtkWidget *sheet;
132
133   const gint rows = 10046;
134
135   GObject *row_geometry = g_sheet_uniform_row_new(25, rows); 
136
137   sheet = gtk_sheet_new(G_SHEET_ROW(row_geometry), 
138                         G_SHEET_COLUMN(data_store), "data sheet", 0); 
139
140
141   g_signal_connect (GTK_OBJECT (sheet), "activate",
142                     GTK_SIGNAL_FUNC (update_data_ref_entry),
143                     0);
144
145   g_signal_connect (GTK_OBJECT (sheet), "traverse",
146                     GTK_SIGNAL_FUNC (traverse_callback), 0);
147
148
149   g_signal_connect (GTK_OBJECT (sheet), "double-click-column",
150                     GTK_SIGNAL_FUNC (click2column),
151                     0);
152
153   gtk_widget_show(sheet);
154
155   return sheet;
156 }