--- /dev/null
+/* PSPPIRE - a graphical user interface for PSPP.
+ Copyright (C) 2013 Free Software Foundation
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>. */
+
+
+/* This program is useful for testing the spreadsheet readers */
+
+#include <config.h>
+
+#include <gtk/gtk.h>
+
+#include "psppire-spreadsheet-model.h"
+
+#include "data/gnumeric-reader.h"
+#include "data/ods-reader.h"
+#include "data/spreadsheet-reader.h"
+#include "data/casereader.h"
+#include "data/case.h"
+#include "libpspp/message.h"
+#include "gl/xalloc.h"
+
+
+struct xxx
+{
+ struct spreadsheet *sp;
+ GtkWidget *combo_box;
+};
+
+
+
+static void
+on_clicked (GtkButton *button, struct xxx *stuff)
+{
+ const struct caseproto *proto;
+ int nvals;
+ struct ccase *c;
+ gint x = gtk_combo_box_get_active (GTK_COMBO_BOX (stuff->combo_box));
+ struct casereader *reader ;
+ struct spreadsheet_read_options opts;
+
+ opts.sheet_index = -1;
+ opts.cell_range = spreadsheet_get_sheet_range (stuff->sp, x);
+ opts.sheet_name = spreadsheet_get_sheet_name (stuff->sp, x);
+ opts.read_names = TRUE;
+ opts.asw = -1;
+
+ reader = spreadsheet_make_reader (stuff->sp, &opts);
+
+ if (reader == NULL)
+ return;
+
+ proto = casereader_get_proto (reader);
+
+ nvals = caseproto_get_n_widths (proto);
+
+ for (; (c = casereader_read (reader)) != NULL; case_unref (c))
+ {
+ int i;
+
+ for (i = 0; i < nvals ; ++i)
+ {
+ const int width = caseproto_get_width (proto, i);
+ const union value *val = case_data_idx (c, i);
+ if (0 == width)
+ printf ("%g ", val->f);
+ else
+ {
+ char *ss = xzalloc (width + 1);
+ strncpy (ss, value_str (val, width), width);
+
+ printf ("%s ", ss);
+ free (ss);
+ }
+ }
+ printf ("\n");
+ }
+
+ casereader_destroy (reader);
+}
+
+static void
+print_msg (const struct msg *m, void *aux UNUSED)
+{
+ fprintf (stderr, "%s\n", m->text);
+}
+
+
+int
+main (int argc, char *argv[] )
+{
+ GtkWidget *window;
+ GtkWidget *hbox;
+ GtkWidget *vbox;
+ GtkWidget *treeview;
+
+ GtkTreeModel *tm;
+ GtkWidget *button;
+ struct xxx stuff;
+
+ gtk_init (&argc, &argv);
+
+ if ( argc < 2)
+ g_error ("Usage: prog file\n");
+
+ msg_set_handler (print_msg, 0);
+
+ stuff.sp = NULL;
+
+ if (stuff.sp == NULL)
+ stuff.sp = gnumeric_probe (argv[1], false);
+
+ if (stuff.sp == NULL)
+ stuff.sp = ods_probe (argv[1], false);
+
+ if (stuff.sp == NULL)
+ {
+ g_error ("%s is neither a gnumeric nor a ods file\n", argv[1]);
+ return 0;
+ }
+
+ tm = psppire_spreadsheet_model_new (stuff.sp);
+ window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
+ hbox = gtk_hbox_new (FALSE, 5);
+ vbox = gtk_vbox_new (FALSE, 5);
+
+ button = gtk_button_new_with_label ("Test reader");
+ g_signal_connect (button, "clicked", G_CALLBACK (on_clicked), &stuff);
+
+ gtk_container_set_border_width (GTK_CONTAINER (window), 10);
+
+ stuff.combo_box = gtk_combo_box_new();
+
+ {
+ GtkCellRenderer *renderer = gtk_cell_renderer_text_new ();
+ gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (stuff.combo_box), renderer, TRUE);
+ gtk_cell_layout_set_attributes (GTK_CELL_LAYOUT (stuff.combo_box), renderer,
+ "text", 0,
+ NULL);
+ }
+
+ gtk_combo_box_set_model (GTK_COMBO_BOX (stuff.combo_box), tm);
+
+ gtk_combo_box_set_active (GTK_COMBO_BOX (stuff.combo_box), 0);
+
+ treeview = gtk_tree_view_new_with_model (tm);
+
+ gtk_tree_view_insert_column_with_attributes (GTK_TREE_VIEW (treeview),
+ 0, "sheet name",
+ gtk_cell_renderer_text_new (),
+ "text", 0,
+ NULL);
+
+
+ gtk_tree_view_insert_column_with_attributes (GTK_TREE_VIEW (treeview),
+ 1, "range",
+ gtk_cell_renderer_text_new (),
+ "text", 1,
+ NULL);
+
+
+ gtk_box_pack_start (GTK_BOX (hbox), treeview, TRUE, TRUE, 5);
+
+ gtk_box_pack_start (GTK_BOX (vbox), stuff.combo_box, FALSE, FALSE, 5);
+ gtk_box_pack_start (GTK_BOX (vbox), button, FALSE, FALSE, 5);
+ gtk_box_pack_start (GTK_BOX (hbox), vbox, TRUE, TRUE, 5);
+
+ gtk_container_add (GTK_CONTAINER (window), hbox);
+
+ g_signal_connect (window, "destroy", gtk_main_quit, 0);
+
+ gtk_widget_show_all (window);
+
+ gtk_main ();
+
+ spreadsheet_destroy (stuff.sp);
+
+ return 0;
+}