1 /* PSPPIRE - a graphical user interface for PSPP.
2 Copyright (C) 2013 Free Software Foundation
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>. */
18 /* This program is useful for testing the spreadsheet readers */
24 #include "psppire-spreadsheet-model.h"
26 #include "data/gnumeric-reader.h"
27 #include "data/ods-reader.h"
28 #include "data/spreadsheet-reader.h"
29 #include "data/casereader.h"
30 #include "data/case.h"
31 #include "data/settings.h"
32 #include "libpspp/message.h"
33 #include "libpspp/i18n.h"
35 #include "gl/xalloc.h"
40 struct spreadsheet *sp;
47 on_clicked (GtkButton *button, struct xxx *stuff)
49 const struct caseproto *proto;
52 gint x = gtk_combo_box_get_active (GTK_COMBO_BOX (stuff->combo_box));
53 struct casereader *reader ;
54 struct spreadsheet_read_options opts;
56 opts.sheet_index = -1;
57 opts.cell_range = spreadsheet_get_sheet_range (stuff->sp, x);
58 opts.sheet_name = CONST_CAST (char *,
59 spreadsheet_get_sheet_name (stuff->sp, x));
60 opts.read_names = TRUE;
63 reader = spreadsheet_make_reader (stuff->sp, &opts);
68 proto = casereader_get_proto (reader);
70 nvals = caseproto_get_n_widths (proto);
72 for (; (c = casereader_read (reader)) != NULL; case_unref (c))
76 for (i = 0; i < nvals ; ++i)
78 const int width = caseproto_get_width (proto, i);
79 const union value *val = case_data_idx (c, i);
81 printf ("%g ", val->f);
84 char *ss = xzalloc (width + 1);
85 memcpy (ss, value_str (val, width), width);
94 casereader_destroy (reader);
98 print_msg (const struct msg *m, void *aux UNUSED)
100 fprintf (stderr, "%s\n", m->text);
105 main (int argc, char *argv[] )
119 gtk_init (&argc, &argv);
122 g_error ("Usage: prog file\n");
124 msg_set_handler (print_msg, 0);
128 if (stuff.sp == NULL)
129 stuff.sp = gnumeric_probe (argv[1], false);
131 if (stuff.sp == NULL)
132 stuff.sp = ods_probe (argv[1], false);
134 if (stuff.sp == NULL)
136 g_error ("%s is neither a gnumeric nor a ods file\n", argv[1]);
140 tm = psppire_spreadsheet_model_new (stuff.sp);
141 window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
142 hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 5);
143 vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 5);
145 button = gtk_button_new_with_label ("Test reader");
146 g_signal_connect (button, "clicked", G_CALLBACK (on_clicked), &stuff);
148 gtk_container_set_border_width (GTK_CONTAINER (window), 10);
150 stuff.combo_box = gtk_combo_box_new();
153 GtkCellRenderer *renderer = gtk_cell_renderer_text_new ();
154 gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (stuff.combo_box), renderer, TRUE);
155 gtk_cell_layout_set_attributes (GTK_CELL_LAYOUT (stuff.combo_box), renderer,
160 gtk_combo_box_set_model (GTK_COMBO_BOX (stuff.combo_box), tm);
162 gtk_combo_box_set_active (GTK_COMBO_BOX (stuff.combo_box), 0);
164 treeview = gtk_tree_view_new_with_model (tm);
166 gtk_tree_view_insert_column_with_attributes (GTK_TREE_VIEW (treeview),
168 gtk_cell_renderer_text_new (),
173 gtk_tree_view_insert_column_with_attributes (GTK_TREE_VIEW (treeview),
175 gtk_cell_renderer_text_new (),
180 gtk_box_pack_start (GTK_BOX (hbox), treeview, TRUE, TRUE, 5);
182 gtk_box_pack_start (GTK_BOX (vbox), stuff.combo_box, FALSE, FALSE, 5);
183 gtk_box_pack_start (GTK_BOX (vbox), button, FALSE, FALSE, 5);
184 gtk_box_pack_start (GTK_BOX (hbox), vbox, TRUE, TRUE, 5);
186 gtk_container_add (GTK_CONTAINER (window), hbox);
188 g_signal_connect (window, "destroy", gtk_main_quit, 0);
190 gtk_widget_show_all (window);
194 spreadsheet_destroy (stuff.sp);