Merge remote branch 'origin/master' into import-gui
[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
54 #include "gl/error.h"
55 #include "gl/intprops.h"
56 #include "gl/xalloc.h"
57
58 #include "gettext.h"
59 #define _(msgid) gettext (msgid)
60 #define N_(msgid) msgid
61
62
63
64 /* The "first line" page of the assistant. */
65
66 /* Page where the user chooses the first line of data. */
67 struct first_line_page
68   {
69     GtkWidget *page;
70     GtkTreeView *tree_view;
71     GtkWidget *variable_names_cb;
72   };
73
74 static GtkTreeView *create_lines_tree_view (GtkContainer *parent_window,
75                                             struct import_assistant *);
76 static void on_first_line_change (GtkTreeSelection *,
77                                   struct import_assistant *);
78 static void on_variable_names_cb_toggle (GtkToggleButton *,
79                                          struct import_assistant *);
80 static void set_first_line (struct import_assistant *);
81 static void get_first_line (struct import_assistant *);
82
83 /* Initializes IA's first_line substructure. */
84 struct first_line_page *
85 first_line_page_create (struct import_assistant *ia)
86 {
87   struct first_line_page *p = xzalloc (sizeof *p);
88
89   GtkBuilder *builder = ia->asst.builder;
90
91   p->page = add_page_to_assistant (ia, get_widget_assert (builder, "FirstLine"),
92                                    GTK_ASSISTANT_PAGE_CONTENT);
93
94   gtk_widget_destroy (get_widget_assert (builder, "first-line"));
95   p->tree_view = create_lines_tree_view (
96     GTK_CONTAINER (get_widget_assert (builder, "first-line-scroller")), ia);
97   p->variable_names_cb = get_widget_assert (builder, "variable-names");
98   gtk_tree_selection_set_mode (
99     gtk_tree_view_get_selection (GTK_TREE_VIEW (p->tree_view)),
100     GTK_SELECTION_BROWSE);
101   g_signal_connect (gtk_tree_view_get_selection (GTK_TREE_VIEW (p->tree_view)),
102                     "changed", G_CALLBACK (on_first_line_change), ia);
103   g_signal_connect (p->variable_names_cb, "toggled",
104                     G_CALLBACK (on_variable_names_cb_toggle), ia);
105   return p;
106 }
107
108 /* Resets the first_line page to its initial content. */
109 void
110 reset_first_line_page (struct import_assistant *ia)
111 {
112   ia->skip_lines = 0;
113   ia->variable_names = false;
114   set_first_line (ia);
115 }
116
117 static void
118 render_line (GtkTreeViewColumn *tree_column,
119              GtkCellRenderer *cell,
120              GtkTreeModel *tree_model,
121              GtkTreeIter *iter,
122              gpointer data)
123 {
124   gint row = empty_list_store_iter_to_row (iter);
125   struct string *lines;
126
127   lines = g_object_get_data (G_OBJECT (tree_model), "lines");
128   g_return_if_fail (lines != NULL);
129
130   g_object_set (cell, "text", ds_cstr (&lines[row]), NULL);
131 }
132
133
134 /* Creates and returns a tree view that contains each of the
135    lines in IA's file as a row. */
136 static GtkTreeView *
137 create_lines_tree_view (GtkContainer *parent, struct import_assistant *ia)
138 {
139   GtkTreeView *tree_view = NULL;
140   GtkTreeViewColumn *column;
141   size_t max_line_length;
142   gint content_width, header_width;
143   size_t i;
144   const gchar *title = _("Text");
145
146   make_tree_view (ia, 0, &tree_view);
147
148   column = gtk_tree_view_column_new_with_attributes (
149      title, ia->asst.fixed_renderer, (void *) NULL);
150   gtk_tree_view_column_set_cell_data_func (column, ia->asst.fixed_renderer,
151                                            render_line, NULL, NULL);
152   gtk_tree_view_column_set_sizing (column, GTK_TREE_VIEW_COLUMN_FIXED);
153
154   max_line_length = 0;
155   for (i = 0; i < ia->file.line_cnt; i++)
156     {
157       size_t w = ds_length (&ia->file.lines[i]);
158       max_line_length = MAX (max_line_length, w);
159     }
160
161   content_width = get_monospace_width (tree_view, ia->asst.fixed_renderer,
162                                        max_line_length);
163   header_width = get_string_width (tree_view, ia->asst.prop_renderer, title);
164   gtk_tree_view_column_set_fixed_width (column, MAX (content_width,
165                                                      header_width));
166   gtk_tree_view_append_column (tree_view, column);
167
168   gtk_tree_view_set_fixed_height_mode (tree_view, true);
169
170   gtk_container_add (parent, GTK_WIDGET (tree_view));
171   gtk_widget_show (GTK_WIDGET (tree_view));
172
173   return tree_view;
174 }
175
176 /* Called when the line selected in the first_line tree view
177    changes. */
178 static void
179 on_first_line_change (GtkTreeSelection *selection UNUSED,
180                       struct import_assistant *ia)
181 {
182   get_first_line (ia);
183 }
184
185 /* Called when the checkbox that indicates whether variable
186    names are in the row above the first line is toggled. */
187 static void
188 on_variable_names_cb_toggle (GtkToggleButton *variable_names_cb UNUSED,
189                              struct import_assistant *ia)
190 {
191   get_first_line (ia);
192 }
193
194 /* Sets the widgets to match IA's first_line substructure. */
195 static void
196 set_first_line (struct import_assistant *ia)
197 {
198   GtkTreePath *path;
199
200   path = gtk_tree_path_new_from_indices (ia->skip_lines, -1);
201   gtk_tree_view_set_cursor (GTK_TREE_VIEW (ia->first_line->tree_view),
202                             path, NULL, false);
203   gtk_tree_path_free (path);
204
205   gtk_toggle_button_set_active (
206     GTK_TOGGLE_BUTTON (ia->first_line->variable_names_cb),
207     ia->variable_names);
208   gtk_widget_set_sensitive (ia->first_line->variable_names_cb,
209                             ia->skip_lines > 0);
210 }
211
212 /* Sets IA's first_line substructure to match the widgets. */
213 static void
214 get_first_line (struct import_assistant *ia)
215 {
216   GtkTreeSelection *selection;
217   GtkTreeIter iter;
218   GtkTreeModel *model;
219
220   selection = gtk_tree_view_get_selection (ia->first_line->tree_view);
221   if (gtk_tree_selection_get_selected (selection, &model, &iter))
222     {
223       GtkTreePath *path = gtk_tree_model_get_path (model, &iter);
224       int row = gtk_tree_path_get_indices (path)[0];
225       gtk_tree_path_free (path);
226
227       ia->skip_lines = row;
228       ia->variable_names =
229         (ia->skip_lines > 0
230          && gtk_toggle_button_get_active (
231            GTK_TOGGLE_BUTTON (ia->first_line->variable_names_cb)));
232     }
233   gtk_widget_set_sensitive (ia->first_line->variable_names_cb,
234                             ia->skip_lines > 0);
235 }
236
237
238
239 void
240 first_line_append_syntax (const struct import_assistant *ia, struct string *s)
241 {
242   if (ia->skip_lines > 0)
243     ds_put_format (s, "  /FIRSTCASE=%d\n", ia->skip_lines + 1);
244 }