Whitespace changes only
[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, 2014  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/gtk.h>
26 #include <limits.h>
27 #include <stdlib.h>
28 #include <sys/stat.h>
29
30 #include "data/data-in.h"
31 #include "data/data-out.h"
32 #include "data/format-guesser.h"
33 #include "data/value-labels.h"
34 #include "language/data-io/data-parser.h"
35 #include "language/lexer/lexer.h"
36 #include "libpspp/assertion.h"
37 #include "libpspp/i18n.h"
38 #include "libpspp/line-reader.h"
39 #include "libpspp/message.h"
40 #include "ui/gui/dialog-common.h"
41 #include "ui/gui/executor.h"
42 #include "ui/gui/helper.h"
43 #include "ui/gui/builder-wrapper.h"
44 #include "ui/gui/pspp-sheet-selection.h"
45 #include "ui/gui/pspp-sheet-view-column.h"
46 #include "ui/gui/pspp-sheet-view.h"
47 #include "ui/gui/psppire-data-window.h"
48 #include "ui/gui/psppire-dialog.h"
49 #include "ui/gui/psppire-encoding-selector.h"
50 #include "ui/gui/psppire-empty-list-store.h"
51 #include "ui/gui/psppire-var-sheet.h"
52 #include "ui/gui/psppire-scanf.h"
53
54 #include "gl/intprops.h"
55 #include "gl/xalloc.h"
56
57 #include "gettext.h"
58 #define _(msgid) gettext (msgid)
59 #define N_(msgid) msgid
60
61
62
63 /* The "first line" page of the assistant. */
64
65 /* Page where the user chooses the first line of data. */
66 struct first_line_page
67   {
68     GtkWidget *page;
69     PsppSheetView *tree_view;
70     GtkWidget *variable_names_cb;
71   };
72
73 static PsppSheetView *create_lines_tree_view (GtkContainer *parent_window,
74                                               struct import_assistant *);
75 static void on_first_line_change (GtkTreeSelection *,
76                                   struct import_assistant *);
77 static void on_variable_names_cb_toggle (GtkToggleButton *,
78                                          struct import_assistant *);
79 static void set_first_line (struct import_assistant *);
80 static void get_first_line (struct import_assistant *);
81
82 /* Initializes IA's first_line substructure. */
83 struct first_line_page *
84 first_line_page_create (struct import_assistant *ia)
85 {
86   struct first_line_page *p = xzalloc (sizeof *p);
87
88   GtkBuilder *builder = ia->asst.builder;
89
90   p->page = add_page_to_assistant (ia, get_widget_assert (builder, "FirstLine"),
91                                    GTK_ASSISTANT_PAGE_CONTENT);
92
93   gtk_widget_destroy (get_widget_assert (builder, "first-line"));
94   p->tree_view = create_lines_tree_view (
95     GTK_CONTAINER (get_widget_assert (builder, "first-line-scroller")), ia);
96   p->variable_names_cb = get_widget_assert (builder, "variable-names");
97   pspp_sheet_selection_set_mode (
98     pspp_sheet_view_get_selection (PSPP_SHEET_VIEW (p->tree_view)),
99     PSPP_SHEET_SELECTION_BROWSE);
100   pspp_sheet_view_set_rubber_banding (PSPP_SHEET_VIEW (p->tree_view), TRUE);
101   g_signal_connect (pspp_sheet_view_get_selection (PSPP_SHEET_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 (PsppSheetViewColumn *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 PsppSheetView *
137 create_lines_tree_view (GtkContainer *parent, struct import_assistant *ia)
138 {
139   PsppSheetView *tree_view = NULL;
140   PsppSheetViewColumn *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 = pspp_sheet_view_column_new_with_attributes (
149      title, ia->asst.fixed_renderer, (void *) NULL);
150   pspp_sheet_view_column_set_cell_data_func (column, ia->asst.fixed_renderer,
151                                            render_line, NULL, NULL);
152   pspp_sheet_view_column_set_resizable (column, TRUE);
153   pspp_sheet_view_column_set_expand (column, TRUE);
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   pspp_sheet_view_column_set_fixed_width (column, MAX (content_width,
166                                                      header_width));
167   pspp_sheet_view_append_column (tree_view, column);
168
169   gtk_container_add (parent, GTK_WIDGET (tree_view));
170   gtk_widget_show (GTK_WIDGET (tree_view));
171
172   return tree_view;
173 }
174
175 /* Called when the line selected in the first_line tree view
176    changes. */
177 static void
178 on_first_line_change (GtkTreeSelection *selection UNUSED,
179                       struct import_assistant *ia)
180 {
181   get_first_line (ia);
182 }
183
184 /* Called when the checkbox that indicates whether variable
185    names are in the row above the first line is toggled. */
186 static void
187 on_variable_names_cb_toggle (GtkToggleButton *variable_names_cb UNUSED,
188                              struct import_assistant *ia)
189 {
190   get_first_line (ia);
191 }
192
193 /* Sets the widgets to match IA's first_line substructure. */
194 static void
195 set_first_line (struct import_assistant *ia)
196 {
197   GtkTreePath *path;
198
199   path = gtk_tree_path_new_from_indices (ia->skip_lines, -1);
200   pspp_sheet_view_set_cursor (PSPP_SHEET_VIEW (ia->first_line->tree_view),
201                             path, NULL, false);
202   gtk_tree_path_free (path);
203
204   gtk_toggle_button_set_active (
205     GTK_TOGGLE_BUTTON (ia->first_line->variable_names_cb),
206     ia->variable_names);
207   gtk_widget_set_sensitive (ia->first_line->variable_names_cb,
208                             ia->skip_lines > 0);
209 }
210
211 /* Sets IA's first_line substructure to match the widgets. */
212 static void
213 get_first_line (struct import_assistant *ia)
214 {
215   PsppSheetSelection *selection;
216   GtkTreeIter iter;
217   GtkTreeModel *model;
218
219   selection = pspp_sheet_view_get_selection (ia->first_line->tree_view);
220   if (pspp_sheet_selection_get_selected (selection, &model, &iter))
221     {
222       GtkTreePath *path = gtk_tree_model_get_path (model, &iter);
223       int row = gtk_tree_path_get_indices (path)[0];
224       gtk_tree_path_free (path);
225
226       ia->skip_lines = row;
227       ia->variable_names =
228         (ia->skip_lines > 0
229          && gtk_toggle_button_get_active (
230            GTK_TOGGLE_BUTTON (ia->first_line->variable_names_cb)));
231     }
232   gtk_widget_set_sensitive (ia->first_line->variable_names_cb,
233                             ia->skip_lines > 0);
234 }
235
236
237
238 void
239 first_line_append_syntax (const struct import_assistant *ia, struct string *s)
240 {
241   if (ia->skip_lines > 0)
242     ds_put_format (s, "  /FIRSTCASE=%d\n", ia->skip_lines + 1);
243 }