Made the text import dialogs sort of work again
[pspp] / src / ui / gui / page-first-line.c
1 /* PSPPIRE - a graphical user interface for PSPP.
2    Copyright (C) 2008, 2009, 2010, 2011, 2012, 2013  Free Software Foundation
3
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.
8
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.
13
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/>. */
16
17 #include <config.h>
18
19 #include "page-first-line.h"
20
21 #include "ui/gui/text-data-import-dialog.h"
22
23 #include <errno.h>
24 #include <fcntl.h>
25 #include <gtk-contrib/psppire-sheet.h>
26 #include <gtk/gtk.h>
27 #include <limits.h>
28 #include <stdlib.h>
29 #include <sys/stat.h>
30
31 #include "data/data-in.h"
32 #include "data/data-out.h"
33 #include "data/format-guesser.h"
34 #include "data/value-labels.h"
35 #include "language/data-io/data-parser.h"
36 #include "language/lexer/lexer.h"
37 #include "libpspp/assertion.h"
38 #include "libpspp/i18n.h"
39 #include "libpspp/line-reader.h"
40 #include "libpspp/message.h"
41 #include "ui/gui/checkbox-treeview.h"
42 #include "ui/gui/dialog-common.h"
43 #include "ui/gui/executor.h"
44 #include "ui/gui/helper.h"
45 #include "ui/gui/builder-wrapper.h"
46 #include "ui/gui/psppire-data-window.h"
47 #include "ui/gui/psppire-dialog.h"
48 #include "ui/gui/psppire-encoding-selector.h"
49 #include "ui/gui/psppire-empty-list-store.h"
50 #include "ui/gui/psppire-var-sheet.h"
51 #include "ui/gui/psppire-var-store.h"
52 #include "ui/gui/psppire-scanf.h"
53 #include "ui/syntax-gen.h"
54
55 #include "gl/error.h"
56 #include "gl/intprops.h"
57 #include "gl/xalloc.h"
58
59 #include "gettext.h"
60 #define _(msgid) gettext (msgid)
61 #define N_(msgid) msgid
62
63
64
65 /* The "first line" page of the assistant. */
66
67 /* Page where the user chooses the first line of data. */
68 struct first_line_page
69   {
70     GtkWidget *page;
71     GtkTreeView *tree_view;
72     GtkWidget *variable_names_cb;
73   };
74
75 static GtkTreeView *create_lines_tree_view (GtkContainer *parent_window,
76                                             struct import_assistant *);
77 static void on_first_line_change (GtkTreeSelection *,
78                                   struct import_assistant *);
79 static void on_variable_names_cb_toggle (GtkToggleButton *,
80                                          struct import_assistant *);
81 static void set_first_line (struct import_assistant *);
82 static void get_first_line (struct import_assistant *);
83
84 /* Initializes IA's first_line substructure. */
85 struct first_line_page *
86 first_line_page_create (struct import_assistant *ia)
87 {
88   struct first_line_page *p = xzalloc (sizeof *p);
89
90   GtkBuilder *builder = ia->asst.builder;
91
92   p->page = add_page_to_assistant (ia, get_widget_assert (builder, "FirstLine"),
93                                    GTK_ASSISTANT_PAGE_CONTENT);
94
95   gtk_widget_destroy (get_widget_assert (builder, "first-line"));
96   p->tree_view = create_lines_tree_view (
97     GTK_CONTAINER (get_widget_assert (builder, "first-line-scroller")), ia);
98   p->variable_names_cb = get_widget_assert (builder, "variable-names");
99   gtk_tree_selection_set_mode (
100     gtk_tree_view_get_selection (GTK_TREE_VIEW (p->tree_view)),
101     GTK_SELECTION_BROWSE);
102   g_signal_connect (gtk_tree_view_get_selection (GTK_TREE_VIEW (p->tree_view)),
103                     "changed", G_CALLBACK (on_first_line_change), ia);
104   g_signal_connect (p->variable_names_cb, "toggled",
105                     G_CALLBACK (on_variable_names_cb_toggle), ia);
106   return p;
107 }
108
109 /* Resets the first_line page to its initial content. */
110 void
111 reset_first_line_page (struct import_assistant *ia)
112 {
113   ia->skip_lines = 0;
114   ia->variable_names = false;
115   set_first_line (ia);
116 }
117
118 static void
119 render_line (GtkTreeViewColumn *tree_column,
120              GtkCellRenderer *cell,
121              GtkTreeModel *tree_model,
122              GtkTreeIter *iter,
123              gpointer data)
124 {
125   gint row = empty_list_store_iter_to_row (iter);
126   struct string *lines;
127
128   lines = g_object_get_data (G_OBJECT (tree_model), "lines");
129   g_return_if_fail (lines != NULL);
130
131   g_object_set (cell, "text", ds_cstr (&lines[row]), NULL);
132 }
133
134
135 /* Creates and returns a tree view that contains each of the
136    lines in IA's file as a row. */
137 static GtkTreeView *
138 create_lines_tree_view (GtkContainer *parent, struct import_assistant *ia)
139 {
140   GtkTreeView *tree_view = NULL;
141   GtkTreeViewColumn *column;
142   size_t max_line_length;
143   gint content_width, header_width;
144   size_t i;
145   const gchar *title = _("Text");
146
147   make_tree_view (ia, 0, &tree_view);
148
149   column = gtk_tree_view_column_new_with_attributes (
150      title, ia->asst.fixed_renderer, (void *) NULL);
151   gtk_tree_view_column_set_cell_data_func (column, ia->asst.fixed_renderer,
152                                            render_line, NULL, NULL);
153   gtk_tree_view_column_set_sizing (column, GTK_TREE_VIEW_COLUMN_FIXED);
154
155   max_line_length = 0;
156   for (i = 0; i < ia->file.line_cnt; i++)
157     {
158       size_t w = ds_length (&ia->file.lines[i]);
159       max_line_length = MAX (max_line_length, w);
160     }
161
162   content_width = get_monospace_width (tree_view, ia->asst.fixed_renderer,
163                                        max_line_length);
164   header_width = get_string_width (tree_view, ia->asst.prop_renderer, title);
165   gtk_tree_view_column_set_fixed_width (column, MAX (content_width,
166                                                      header_width));
167   gtk_tree_view_append_column (tree_view, column);
168
169   gtk_tree_view_set_fixed_height_mode (tree_view, true);
170
171   gtk_container_add (parent, GTK_WIDGET (tree_view));
172   gtk_widget_show (GTK_WIDGET (tree_view));
173
174   return tree_view;
175 }
176
177 /* Called when the line selected in the first_line tree view
178    changes. */
179 static void
180 on_first_line_change (GtkTreeSelection *selection UNUSED,
181                       struct import_assistant *ia)
182 {
183   get_first_line (ia);
184 }
185
186 /* Called when the checkbox that indicates whether variable
187    names are in the row above the first line is toggled. */
188 static void
189 on_variable_names_cb_toggle (GtkToggleButton *variable_names_cb UNUSED,
190                              struct import_assistant *ia)
191 {
192   get_first_line (ia);
193 }
194
195 /* Sets the widgets to match IA's first_line substructure. */
196 static void
197 set_first_line (struct import_assistant *ia)
198 {
199   GtkTreePath *path;
200
201   path = gtk_tree_path_new_from_indices (ia->skip_lines, -1);
202   gtk_tree_view_set_cursor (GTK_TREE_VIEW (ia->first_line->tree_view),
203                             path, NULL, false);
204   gtk_tree_path_free (path);
205
206   gtk_toggle_button_set_active (
207     GTK_TOGGLE_BUTTON (ia->first_line->variable_names_cb),
208     ia->variable_names);
209   gtk_widget_set_sensitive (ia->first_line->variable_names_cb,
210                             ia->skip_lines > 0);
211 }
212
213 /* Sets IA's first_line substructure to match the widgets. */
214 static void
215 get_first_line (struct import_assistant *ia)
216 {
217   GtkTreeSelection *selection;
218   GtkTreeIter iter;
219   GtkTreeModel *model;
220
221   selection = gtk_tree_view_get_selection (ia->first_line->tree_view);
222   if (gtk_tree_selection_get_selected (selection, &model, &iter))
223     {
224       GtkTreePath *path = gtk_tree_model_get_path (model, &iter);
225       int row = gtk_tree_path_get_indices (path)[0];
226       gtk_tree_path_free (path);
227
228       ia->skip_lines = row;
229       ia->variable_names =
230         (ia->skip_lines > 0
231          && gtk_toggle_button_get_active (
232            GTK_TOGGLE_BUTTON (ia->first_line->variable_names_cb)));
233     }
234   gtk_widget_set_sensitive (ia->first_line->variable_names_cb,
235                             ia->skip_lines > 0);
236 }