1 /* PSPPIRE - a graphical user interface for PSPP.
2 Copyright (C) 2008, 2009, 2010, 2011, 2012, 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/>. */
19 #include "page-first-line.h"
21 #include "ui/gui/text-data-import-dialog.h"
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"
54 #include "gl/intprops.h"
55 #include "gl/xalloc.h"
58 #define _(msgid) gettext (msgid)
59 #define N_(msgid) msgid
63 /* The "first line" page of the assistant. */
65 /* Page where the user chooses the first line of data. */
66 struct first_line_page
69 PsppSheetView *tree_view;
70 GtkWidget *variable_names_cb;
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 *);
82 /* Initializes IA's first_line substructure. */
83 struct first_line_page *
84 first_line_page_create (struct import_assistant *ia)
86 struct first_line_page *p = xzalloc (sizeof *p);
88 GtkBuilder *builder = ia->asst.builder;
90 p->page = add_page_to_assistant (ia, get_widget_assert (builder, "FirstLine"),
91 GTK_ASSISTANT_PAGE_CONTENT);
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);
108 /* Resets the first_line page to its initial content. */
110 reset_first_line_page (struct import_assistant *ia)
113 ia->variable_names = false;
118 render_line (PsppSheetViewColumn *tree_column,
119 GtkCellRenderer *cell,
120 GtkTreeModel *tree_model,
124 gint row = empty_list_store_iter_to_row (iter);
125 struct string *lines;
127 lines = g_object_get_data (G_OBJECT (tree_model), "lines");
128 g_return_if_fail (lines != NULL);
130 g_object_set (cell, "text", ds_cstr (&lines[row]), NULL);
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)
139 PsppSheetView *tree_view = NULL;
140 PsppSheetViewColumn *column;
141 size_t max_line_length;
142 gint content_width, header_width;
144 const gchar *title = _("Text");
146 make_tree_view (ia, 0, &tree_view);
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);
155 for (i = 0; i < ia->file.line_cnt; i++)
157 size_t w = ds_length (&ia->file.lines[i]);
158 max_line_length = MAX (max_line_length, w);
161 content_width = get_monospace_width (tree_view, ia->asst.fixed_renderer,
163 header_width = get_string_width (tree_view, ia->asst.prop_renderer, title);
164 pspp_sheet_view_column_set_fixed_width (column, MAX (content_width,
166 pspp_sheet_view_append_column (tree_view, column);
168 gtk_container_add (parent, GTK_WIDGET (tree_view));
169 gtk_widget_show (GTK_WIDGET (tree_view));
174 /* Called when the line selected in the first_line tree view
177 on_first_line_change (GtkTreeSelection *selection UNUSED,
178 struct import_assistant *ia)
183 /* Called when the checkbox that indicates whether variable
184 names are in the row above the first line is toggled. */
186 on_variable_names_cb_toggle (GtkToggleButton *variable_names_cb UNUSED,
187 struct import_assistant *ia)
192 /* Sets the widgets to match IA's first_line substructure. */
194 set_first_line (struct import_assistant *ia)
198 path = gtk_tree_path_new_from_indices (ia->skip_lines, -1);
199 pspp_sheet_view_set_cursor (PSPP_SHEET_VIEW (ia->first_line->tree_view),
201 gtk_tree_path_free (path);
203 gtk_toggle_button_set_active (
204 GTK_TOGGLE_BUTTON (ia->first_line->variable_names_cb),
206 gtk_widget_set_sensitive (ia->first_line->variable_names_cb,
210 /* Sets IA's first_line substructure to match the widgets. */
212 get_first_line (struct import_assistant *ia)
214 PsppSheetSelection *selection;
218 selection = pspp_sheet_view_get_selection (ia->first_line->tree_view);
219 if (pspp_sheet_selection_get_selected (selection, &model, &iter))
221 GtkTreePath *path = gtk_tree_model_get_path (model, &iter);
222 int row = gtk_tree_path_get_indices (path)[0];
223 gtk_tree_path_free (path);
225 ia->skip_lines = row;
228 && gtk_toggle_button_get_active (
229 GTK_TOGGLE_BUTTON (ia->first_line->variable_names_cb)));
231 gtk_widget_set_sensitive (ia->first_line->variable_names_cb,
238 first_line_append_syntax (const struct import_assistant *ia, struct string *s)
240 if (ia->skip_lines > 0)
241 ds_put_format (s, " /FIRSTCASE=%d\n", ia->skip_lines + 1);