Added new files resulting from directory restructuring.
[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.h"
28
29 #include "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 "value-labels.h"
37 #include "case.h"
38 #include "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   select_sheet(PAGE_VAR_SHEET);
74   GtkWidget *var_sheet  = get_widget_assert(xml, "variable_sheet");
75
76   gtk_sheet_get_active_cell(GTK_SHEET(var_sheet), 
77                             &current_row, &current_column);
78
79   gtk_sheet_set_active_cell(GTK_SHEET(var_sheet), col, current_column);
80
81   return FALSE;
82 }
83
84
85 /* Update the data_ref_entry with the reference of the active cell */
86 static gint 
87 update_data_ref_entry(GtkSheet *sheet, gint row, gint col)
88 {
89   /* The entry where the reference to the current cell is displayed */
90   GtkEntry *cell_ref_entry;
91
92   PsppireDataStore *data_store = PSPPIRE_DATA_STORE(gtk_sheet_get_model(sheet));
93
94
95   if ( !xml) 
96     return FALSE;
97
98   const struct PsppireVariable *pv = 
99     psppire_dict_get_variable(data_store->dict, col);
100
101   gchar *text = g_strdup_printf("%d: %s", row, 
102                                 pv ? psppire_variable_get_name(pv) : "");
103   
104   cell_ref_entry = GTK_ENTRY(get_widget_assert(xml, "cell_ref_entry"));
105
106   gtk_entry_set_text(cell_ref_entry, text);
107
108   g_free(text);
109
110   return FALSE;
111 }
112
113
114 extern PsppireDataStore *data_store ;
115
116
117 GtkWidget*
118 psppire_data_sheet_create (gchar *widget_name, gchar *string1, gchar *string2,
119                            gint int1, gint int2)
120 {
121   GtkWidget *sheet;
122   gint i;
123
124   const gint rows = 10046;
125
126   GObject *row_geometry = g_sheet_uniform_row_new(25, rows); 
127
128   sheet = gtk_sheet_new(G_SHEET_ROW(row_geometry), 
129                         G_SHEET_COLUMN(data_store), "data sheet", 0); 
130
131
132   g_signal_connect (GTK_OBJECT (sheet), "activate",
133                     GTK_SIGNAL_FUNC (update_data_ref_entry),
134                     0);
135
136   g_signal_connect (GTK_OBJECT (sheet), "traverse",
137                     GTK_SIGNAL_FUNC (traverse_callback), 0);
138
139
140   g_signal_connect (GTK_OBJECT (sheet), "double-click-column",
141                     GTK_SIGNAL_FUNC (click2column),
142                     0);
143
144   gtk_widget_show(sheet);
145
146   return sheet;
147 }