Enable specification of the cell range
[pspp] / src / ui / gui / text-data-import-dialog.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 "ui/gui/text-data-import-dialog.h"
20
21 #include <errno.h>
22 #include <fcntl.h>
23 #include <gtk-contrib/psppire-sheet.h>
24 #include <gtk/gtk.h>
25 #include <limits.h>
26 #include <stdlib.h>
27 #include <sys/stat.h>
28
29 #include "data/data-in.h"
30 #include "data/data-out.h"
31 #include "data/format-guesser.h"
32 #include "data/value-labels.h"
33 #include "language/data-io/data-parser.h"
34 #include "language/lexer/lexer.h"
35 #include "libpspp/assertion.h"
36 #include "libpspp/i18n.h"
37 #include "libpspp/line-reader.h"
38 #include "libpspp/message.h"
39 #include "ui/gui/checkbox-treeview.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/psppire-data-window.h"
45 #include "ui/gui/psppire-dialog.h"
46 #include "ui/gui/psppire-encoding-selector.h"
47 #include "ui/gui/psppire-empty-list-store.h"
48 #include "ui/gui/psppire-var-sheet.h"
49 #include "ui/gui/psppire-var-store.h"
50 #include "ui/gui/psppire-scanf.h"
51 #include "ui/syntax-gen.h"
52
53 #include "gl/error.h"
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 struct import_assistant;
62
63 static void apply_dict (const struct dictionary *, struct string *);
64 static char *generate_syntax (const struct import_assistant *);
65
66 static void add_line_number_column (const struct import_assistant *,
67                                     GtkTreeView *);
68
69 /* Pops up the Text Data Import assistant. */
70 void
71 text_data_import_assistant (PsppireDataWindow *dw)
72 {
73   GtkWindow *parent_window = GTK_WINDOW (dw);
74   struct import_assistant *ia;
75
76   ia = xzalloc (sizeof *ia);
77   if (!init_file (ia, parent_window))
78     {
79       free (ia);
80       return;
81     }
82
83   printf ("%s:%d %s\n", __FILE__, __LINE__, ia->file.file_name);
84
85   init_assistant (ia, parent_window);
86   if ( ia->file.type == FTYPE_TEXT)
87     {
88       init_intro_page (ia);
89       init_first_line_page (ia);
90       init_separators_page (ia);
91     }
92   else
93     {
94       init_sheet_spec_page (ia);
95     }
96
97   init_formats_page (ia);
98
99   gtk_widget_show_all (GTK_WIDGET (ia->asst.assistant));
100
101   ia->asst.main_loop = g_main_loop_new (NULL, false);
102   g_main_loop_run (ia->asst.main_loop);
103   g_main_loop_unref (ia->asst.main_loop);
104
105   switch (ia->asst.response)
106     {
107     case GTK_RESPONSE_APPLY:
108       free (execute_syntax_string (dw, generate_syntax (ia)));
109       break;
110     case PSPPIRE_RESPONSE_PASTE:
111       free (paste_syntax_to_window (generate_syntax (ia)));
112       break;
113     default:
114       break;
115     }
116
117   if ( ia->file.type == FTYPE_TEXT)
118     {
119       destroy_formats_page (ia);
120       destroy_separators_page (ia);
121     }
122
123   destroy_assistant (ia);
124   destroy_file (ia);
125   free (ia);
126 }
127
128 /* Emits PSPP syntax to S that applies the dictionary attributes
129    (such as missing values and value labels) of the variables in
130    DICT.  */
131 static void
132 apply_dict (const struct dictionary *dict, struct string *s)
133 {
134   size_t var_cnt = dict_get_var_cnt (dict);
135   size_t i;
136
137   for (i = 0; i < var_cnt; i++)
138     {
139       struct variable *var = dict_get_var (dict, i);
140       const char *name = var_get_name (var);
141       enum val_type type = var_get_type (var);
142       int width = var_get_width (var);
143       enum measure measure = var_get_measure (var);
144       enum alignment alignment = var_get_alignment (var);
145       const struct fmt_spec *format = var_get_print_format (var);
146
147       if (var_has_missing_values (var))
148         {
149           const struct missing_values *mv = var_get_missing_values (var);
150           size_t j;
151
152           syntax_gen_pspp (s, "MISSING VALUES %ss (", name);
153           for (j = 0; j < mv_n_values (mv); j++)
154             {
155               if (j)
156                 ds_put_cstr (s, ", ");
157               syntax_gen_value (s, mv_get_value (mv, j), width, format);
158             }
159
160           if (mv_has_range (mv))
161             {
162               double low, high;
163               if (mv_has_value (mv))
164                 ds_put_cstr (s, ", ");
165               mv_get_range (mv, &low, &high);
166               syntax_gen_num_range (s, low, high, format);
167             }
168           ds_put_cstr (s, ").\n");
169         }
170       if (var_has_value_labels (var))
171         {
172           const struct val_labs *vls = var_get_value_labels (var);
173           const struct val_lab **labels = val_labs_sorted (vls);
174           size_t n_labels = val_labs_count (vls);
175           size_t i;
176
177           syntax_gen_pspp (s, "VALUE LABELS %ss", name);
178           for (i = 0; i < n_labels; i++)
179             {
180               const struct val_lab *vl = labels[i];
181               ds_put_cstr (s, "\n  ");
182               syntax_gen_value (s, &vl->value, width, format);
183               ds_put_byte (s, ' ');
184               syntax_gen_string (s, ss_cstr (val_lab_get_escaped_label (vl)));
185             }
186           free (labels);
187           ds_put_cstr (s, ".\n");
188         }
189       if (var_has_label (var))
190         syntax_gen_pspp (s, "VARIABLE LABELS %ss %sq.\n",
191                          name, var_get_label (var));
192       if (measure != var_default_measure (type))
193         syntax_gen_pspp (s, "VARIABLE LEVEL %ss (%ss).\n",
194                          name,
195                          (measure == MEASURE_NOMINAL ? "NOMINAL"
196                           : measure == MEASURE_ORDINAL ? "ORDINAL"
197                           : "SCALE"));
198       if (alignment != var_default_alignment (type))
199         syntax_gen_pspp (s, "VARIABLE ALIGNMENT %ss (%ss).\n",
200                          name,
201                          (alignment == ALIGN_LEFT ? "LEFT"
202                           : alignment == ALIGN_CENTRE ? "CENTER"
203                           : "RIGHT"));
204       if (var_get_display_width (var) != var_default_display_width (width))
205         syntax_gen_pspp (s, "VARIABLE WIDTH %ss (%d).\n",
206                          name, var_get_display_width (var));
207     }
208 }
209
210 /* Generates and returns PSPP syntax to execute the import
211    operation described by IA.  The caller must free the syntax
212    with free(). */
213 static char *
214 generate_syntax (const struct import_assistant *ia)
215 {
216   struct string s = DS_EMPTY_INITIALIZER;
217
218   switch (ia->file.type)
219     {
220     case FTYPE_TEXT:
221       {
222         size_t var_cnt;
223         size_t i;
224         syntax_gen_pspp (&s,
225                          "GET DATA"
226                          "\n  /TYPE=TXT"
227                          "\n  /FILE=%sq\n",
228                          ia->file.file_name);
229         if (ia->file.encoding && strcmp (ia->file.encoding, "Auto"))
230           syntax_gen_pspp (&s, "  /ENCODING=%sq\n", ia->file.encoding);
231         if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (
232                                                              ia->intro.n_cases_button)))
233           ds_put_format (&s, "  /IMPORTCASES=FIRST %d\n",
234                          gtk_spin_button_get_value_as_int (
235                                                            GTK_SPIN_BUTTON (ia->intro.n_cases_spin)));
236         else if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (
237                                                                   ia->intro.percent_button)))
238           ds_put_format (&s, "  /IMPORTCASES=PERCENT %d\n",
239                          gtk_spin_button_get_value_as_int (
240                                                            GTK_SPIN_BUTTON (ia->intro.percent_spin)));
241         else
242           ds_put_cstr (&s, "  /IMPORTCASES=ALL\n");
243         ds_put_cstr (&s,
244                      "  /ARRANGEMENT=DELIMITED\n"
245                      "  /DELCASE=LINE\n");
246         if (ia->first_line.skip_lines > 0)
247           ds_put_format (&s, "  /FIRSTCASE=%d\n", ia->first_line.skip_lines + 1);
248         ds_put_cstr (&s, "  /DELIMITERS=\"");
249         if (ds_find_byte (&ia->separators.separators, '\t') != SIZE_MAX)
250           ds_put_cstr (&s, "\\t");
251         if (ds_find_byte (&ia->separators.separators, '\\') != SIZE_MAX)
252           ds_put_cstr (&s, "\\\\");
253         for (i = 0; i < ds_length (&ia->separators.separators); i++)
254           {
255             char c = ds_at (&ia->separators.separators, i);
256             if (c == '"')
257               ds_put_cstr (&s, "\"\"");
258             else if (c != '\t' && c != '\\')
259               ds_put_byte (&s, c);
260           }
261         ds_put_cstr (&s, "\"\n");
262         if (!ds_is_empty (&ia->separators.quotes))
263           syntax_gen_pspp (&s, "  /QUALIFIER=%sq\n", ds_cstr (&ia->separators.quotes));
264         if (!ds_is_empty (&ia->separators.quotes) && ia->separators.escape)
265           ds_put_cstr (&s, "  /ESCAPE\n");
266         ds_put_cstr (&s, "  /VARIABLES=\n");
267
268         var_cnt = dict_get_var_cnt (ia->formats.dict);
269         for (i = 0; i < var_cnt; i++)
270           {
271             struct variable *var = dict_get_var (ia->formats.dict, i);
272             char format_string[FMT_STRING_LEN_MAX + 1];
273             fmt_to_string (var_get_print_format (var), format_string);
274             ds_put_format (&s, "    %s %s%s\n",
275                            var_get_name (var), format_string,
276                            i == var_cnt - 1 ? "." : "");
277           }
278
279         apply_dict (ia->formats.dict, &s);
280       }
281       break;
282     case FTYPE_GNUMERIC:
283     case FTYPE_ODS:
284       {
285         const struct sheet_spec_page *ssp = &ia->sheet_spec;
286
287         syntax_gen_pspp (&s,
288                          "GET DATA"
289                          "\n  /TYPE=%ss"
290                          "\n  /FILE=%sq"
291                          "\n  /SHEET=index %d"
292                          "\n  /READNAMES=%ss",
293                          (ia->file.type == FTYPE_GNUMERIC) ? "GNM" : "ODS",
294                          ia->file.file_name,                     
295                          ssp->opts.sheet_index,
296                          ssp->sri.read_names ? "ON" : "OFF");
297
298
299         if ( ssp->opts.cell_range)
300           {
301             syntax_gen_pspp (&s,
302                              "\n  /CELLRANGE=RANGE %sq",
303                              ssp->opts.cell_range);
304           }
305         else
306           {
307             syntax_gen_pspp (&s,
308                              "\n  /CELLRANGE=FULL");
309           }
310
311
312         syntax_gen_pspp (&s, ".");
313
314       }
315       break;
316     
317     default:
318       g_assert_not_reached ();
319     }
320
321
322   return ds_cstr (&s);
323 }
324
325
326
327 static void render_input_cell (GtkTreeViewColumn *tree_column,
328                                GtkCellRenderer *cell,
329                                GtkTreeModel *model, GtkTreeIter *iter,
330                                gpointer ia);
331
332 static gboolean on_query_input_tooltip (GtkWidget *widget, gint wx, gint wy,
333                                         gboolean keyboard_mode UNUSED,
334                                         GtkTooltip *tooltip,
335                                         struct import_assistant *);
336
337
338
339 /* Called to render one of the cells in the fields preview tree
340    view. */
341 static void
342 render_input_cell (GtkTreeViewColumn *tree_column, GtkCellRenderer *cell,
343                    GtkTreeModel *model, GtkTreeIter *iter,
344                    gpointer ia_)
345 {
346   struct import_assistant *ia = ia_;
347   struct substring field;
348   size_t row;
349   gint column;
350
351   column = GPOINTER_TO_INT (g_object_get_data (G_OBJECT (tree_column),
352                                                "column-number"));
353   row = empty_list_store_iter_to_row (iter) + ia->first_line.skip_lines;
354   field = ia->separators.columns[column].contents[row];
355   if (field.string != NULL)
356     {
357       GValue text = {0, };
358       g_value_init (&text, G_TYPE_STRING);
359       g_value_take_string (&text, ss_xstrdup (field));
360       g_object_set_property (G_OBJECT (cell), "text", &text);
361       g_value_unset (&text);
362       g_object_set (cell, "background-set", FALSE, (void *) NULL);
363     }
364   else
365     g_object_set (cell,
366                   "text", "",
367                   "background", "red",
368                   "background-set", TRUE,
369                   (void *) NULL);
370 }
371
372 static gboolean
373 get_tooltip_location (GtkWidget *widget, gint wx, gint wy,
374                       const struct import_assistant *ia,
375                       size_t *row, size_t *column);
376
377
378 /* Called to render a tooltip on one of the cells in the fields
379    preview tree view. */
380 static gboolean
381 on_query_input_tooltip (GtkWidget *widget, gint wx, gint wy,
382                         gboolean keyboard_mode UNUSED,
383                         GtkTooltip *tooltip, struct import_assistant *ia)
384 {
385   size_t row, column;
386
387   if (!get_tooltip_location (widget, wx, wy, ia, &row, &column))
388     return FALSE;
389
390   if (ia->separators.columns[column].contents[row].string != NULL)
391     return FALSE;
392
393   gtk_tooltip_set_text (tooltip,
394                         _("This input line has too few separators "
395                           "to fill in this field."));
396   return TRUE;
397 }
398
399
400 /* Parses the contents of the field at (ROW,COLUMN) according to
401    its variable format.  If OUTPUTP is non-null, then *OUTPUTP
402    receives the formatted output for that field (which must be
403    freed with free).  If TOOLTIPP is non-null, then *TOOLTIPP
404    receives a message suitable for use in a tooltip, if one is
405    needed, or a null pointer otherwise.  Returns true if a
406    tooltip message is needed, otherwise false. */
407 static bool
408 parse_field (struct import_assistant *ia,
409              size_t row, size_t column,
410              char **outputp, char **tooltipp)
411 {
412   struct substring field;
413   union value val;
414   struct variable *var;
415   const struct fmt_spec *in;
416   struct fmt_spec out;
417   char *tooltip;
418   bool ok;
419
420   field = ia->separators.columns[column].contents[row];
421   var = dict_get_var (ia->formats.dict, column);
422   value_init (&val, var_get_width (var));
423   in = var_get_print_format (var);
424   out = fmt_for_output_from_input (in);
425   tooltip = NULL;
426   if (field.string != NULL)
427     {
428       char *error;
429
430       error = data_in (field, "UTF-8", in->type, &val, var_get_width (var),
431                        dict_get_encoding (ia->formats.dict));
432       if (error != NULL)
433         {
434           tooltip = xasprintf (_("Cannot parse field content `%.*s' as "
435                                  "format %s: %s"),
436                                (int) field.length, field.string,
437                                fmt_name (in->type), error);
438           free (error);
439         }
440     }
441   else
442     {
443       tooltip = xstrdup (_("This input line has too few separators "
444                            "to fill in this field."));
445       value_set_missing (&val, var_get_width (var));
446     }
447   if (outputp != NULL)
448     {
449       *outputp = data_out (&val, dict_get_encoding (ia->formats.dict),  &out);
450     }
451   value_destroy (&val, var_get_width (var));
452
453   ok = tooltip == NULL;
454   if (tooltipp != NULL)
455     *tooltipp = tooltip;
456   else
457     free (tooltip);
458   return ok;
459 }
460
461 /* Called to render one of the cells in the data preview tree
462    view. */
463 static void
464 render_output_cell (GtkTreeViewColumn *tree_column,
465                     GtkCellRenderer *cell,
466                     GtkTreeModel *model,
467                     GtkTreeIter *iter,
468                     gpointer ia_)
469 {
470   struct import_assistant *ia = ia_;
471   char *output;
472   GValue gvalue = { 0, };
473   bool ok;
474
475   ok = parse_field (ia,
476                     (empty_list_store_iter_to_row (iter)
477                      + ia->first_line.skip_lines),
478                     GPOINTER_TO_INT (g_object_get_data (G_OBJECT (tree_column),
479                                                         "column-number")),
480                     &output, NULL);
481
482   g_value_init (&gvalue, G_TYPE_STRING);
483   g_value_take_string (&gvalue, output);
484   g_object_set_property (G_OBJECT (cell), "text", &gvalue);
485   g_value_unset (&gvalue);
486
487   if (ok)
488     g_object_set (cell, "background-set", FALSE, (void *) NULL);
489   else
490     g_object_set (cell,
491                   "background", "red",
492                   "background-set", TRUE,
493                   (void *) NULL);
494 }
495
496 /* Called to render a tooltip for one of the cells in the data
497    preview tree view. */
498 static gboolean
499 on_query_output_tooltip (GtkWidget *widget, gint wx, gint wy,
500                          gboolean keyboard_mode UNUSED,
501                          GtkTooltip *tooltip, struct import_assistant *ia)
502 {
503   size_t row, column;
504   char *text;
505
506   if (!get_tooltip_location (widget, wx, wy, ia, &row, &column))
507     return FALSE;
508
509   if (parse_field (ia, row, column, NULL, &text))
510     return FALSE;
511
512   gtk_tooltip_set_text (tooltip, text);
513   free (text);
514   return TRUE;
515 }
516 \f
517 /* Utility functions used by multiple pages of the assistant. */
518
519 static gboolean
520 get_tooltip_location (GtkWidget *widget, gint wx, gint wy,
521                       const struct import_assistant *ia,
522                       size_t *row, size_t *column)
523 {
524   GtkTreeView *tree_view = GTK_TREE_VIEW (widget);
525   gint bx, by;
526   GtkTreePath *path;
527   GtkTreeIter iter;
528   GtkTreeViewColumn *tree_column;
529   GtkTreeModel *tree_model;
530   bool ok;
531
532   /* Check that WIDGET is really visible on the screen before we
533      do anything else.  This is a bug fix for a sticky situation:
534      when text_data_import_assistant() returns, it frees the data
535      necessary to compose the tool tip message, but there may be
536      a tool tip under preparation at that point (even if there is
537      no visible tool tip) that will call back into us a little
538      bit later.  Perhaps the correct solution to this problem is
539      to make the data related to the tool tips part of a GObject
540      that only gets destroyed when all references are released,
541      but this solution appears to be effective too. */
542   if (!gtk_widget_get_mapped (widget))
543     return FALSE;
544
545   gtk_tree_view_convert_widget_to_bin_window_coords (tree_view,
546                                                      wx, wy, &bx, &by);
547   if (!gtk_tree_view_get_path_at_pos (tree_view, bx, by,
548                                       &path, &tree_column, NULL, NULL))
549     return FALSE;
550
551   *column = GPOINTER_TO_INT (g_object_get_data (G_OBJECT (tree_column),
552                                                 "column-number"));
553
554   tree_model = gtk_tree_view_get_model (tree_view);
555   ok = gtk_tree_model_get_iter (tree_model, &iter, path);
556   gtk_tree_path_free (path);
557   if (!ok)
558     return FALSE;
559
560   *row = empty_list_store_iter_to_row (&iter) + ia->first_line.skip_lines;
561   return TRUE;
562 }
563
564 void
565 make_tree_view (const struct import_assistant *ia,
566                 size_t first_line,
567                 GtkTreeView **tree_view)
568 {
569   GtkTreeModel *model;
570
571   *tree_view = GTK_TREE_VIEW (gtk_tree_view_new ());
572   model = GTK_TREE_MODEL (psppire_empty_list_store_new (
573                                                         ia->file.line_cnt - first_line));
574   g_object_set_data (G_OBJECT (model), "lines", ia->file.lines + first_line);
575   g_object_set_data (G_OBJECT (model), "first-line",
576                      GINT_TO_POINTER (first_line));
577   gtk_tree_view_set_model (*tree_view, model);
578   g_object_unref (model);
579
580   add_line_number_column (ia, *tree_view);
581 }
582
583 static void
584 render_line_number (GtkTreeViewColumn *tree_column,
585                     GtkCellRenderer *cell,
586                     GtkTreeModel *tree_model,
587                     GtkTreeIter *iter,
588                     gpointer data)
589 {
590   gint row = empty_list_store_iter_to_row (iter);
591   char s[INT_BUFSIZE_BOUND (int)];
592   int first_line;
593
594   first_line = GPOINTER_TO_INT (g_object_get_data (G_OBJECT (tree_model),
595                                                    "first-line"));
596   sprintf (s, "%d", first_line + row);
597   g_object_set (cell, "text", s, NULL);
598 }
599
600 static void
601 add_line_number_column (const struct import_assistant *ia,
602                         GtkTreeView *treeview)
603 {
604   GtkTreeViewColumn *column;
605
606   column = gtk_tree_view_column_new_with_attributes (
607                                                      _("Line"), ia->asst.prop_renderer, (void *) NULL);
608   gtk_tree_view_column_set_sizing (column, GTK_TREE_VIEW_COLUMN_FIXED);
609   gtk_tree_view_column_set_fixed_width (
610                                         column, get_monospace_width (treeview, ia->asst.prop_renderer, 5));
611   gtk_tree_view_column_set_resizable (column, TRUE);
612   gtk_tree_view_column_set_cell_data_func (column, ia->asst.prop_renderer,
613                                            render_line_number, NULL, NULL);
614   gtk_tree_view_append_column (treeview, column);
615 }
616
617 gint
618 get_monospace_width (GtkTreeView *treeview, GtkCellRenderer *renderer,
619                      size_t char_cnt)
620 {
621   struct string s;
622   gint width;
623
624   ds_init_empty (&s);
625   ds_put_byte_multiple (&s, '0', char_cnt);
626   ds_put_byte (&s, ' ');
627   width = get_string_width (treeview, renderer, ds_cstr (&s));
628   ds_destroy (&s);
629
630   return width;
631 }
632
633 gint
634 get_string_width (GtkTreeView *treeview, GtkCellRenderer *renderer,
635                   const char *string)
636 {
637   gint width;
638   g_object_set (G_OBJECT (renderer), "text", string, (void *) NULL);
639   gtk_cell_renderer_get_size (renderer, GTK_WIDGET (treeview),
640                               NULL, NULL, NULL, &width, NULL);
641   return width;
642 }
643
644 GtkTreeViewColumn *
645 make_data_column (struct import_assistant *ia, GtkTreeView *tree_view,
646                   bool input, gint dict_idx)
647 {
648   struct variable *var = NULL;
649   struct column *column = NULL;
650   size_t char_cnt;
651   gint content_width, header_width;
652   GtkTreeViewColumn *tree_column;
653   char *name;
654
655   if (input)
656     column = &ia->separators.columns[dict_idx];
657   else
658     var = dict_get_var (ia->formats.dict, dict_idx);
659
660   name = escape_underscores (input ? column->name : var_get_name (var));
661   char_cnt = input ? column->width : var_get_print_format (var)->w;
662   content_width = get_monospace_width (tree_view, ia->asst.fixed_renderer,
663                                        char_cnt);
664   header_width = get_string_width (tree_view, ia->asst.prop_renderer,
665                                    name);
666
667   tree_column = gtk_tree_view_column_new ();
668   g_object_set_data (G_OBJECT (tree_column), "column-number",
669                      GINT_TO_POINTER (dict_idx));
670   gtk_tree_view_column_set_title (tree_column, name);
671   gtk_tree_view_column_pack_start (tree_column, ia->asst.fixed_renderer,
672                                    FALSE);
673   gtk_tree_view_column_set_cell_data_func (
674                                            tree_column, ia->asst.fixed_renderer,
675                                            input ? render_input_cell : render_output_cell, ia, NULL);
676   gtk_tree_view_column_set_sizing (tree_column, GTK_TREE_VIEW_COLUMN_FIXED);
677   gtk_tree_view_column_set_fixed_width (tree_column, MAX (content_width,
678                                                           header_width));
679
680   free (name);
681
682   return tree_column;
683 }
684
685 GtkTreeView *
686 create_data_tree_view (bool input, GtkContainer *parent,
687                        struct import_assistant *ia)
688 {
689   GtkTreeView *tree_view;
690   gint i;
691
692   make_tree_view (ia, ia->first_line.skip_lines, &tree_view);
693   gtk_tree_selection_set_mode (gtk_tree_view_get_selection (tree_view),
694                                GTK_SELECTION_NONE);
695
696   for (i = 0; i < ia->separators.column_cnt; i++)
697     gtk_tree_view_append_column (tree_view,
698                                  make_data_column (ia, tree_view, input, i));
699
700   g_object_set (G_OBJECT (tree_view), "has-tooltip", TRUE, (void *) NULL);
701   g_signal_connect (tree_view, "query-tooltip",
702                     G_CALLBACK (input ? on_query_input_tooltip
703                                 : on_query_output_tooltip), ia);
704   gtk_tree_view_set_fixed_height_mode (tree_view, true);
705
706   gtk_container_add (parent, GTK_WIDGET (tree_view));
707   gtk_widget_show (GTK_WIDGET (tree_view));
708
709   return tree_view;
710 }
711
712 /* Increments the "watch cursor" level, setting the cursor for
713    the assistant window to a watch face to indicate to the user
714    that the ongoing operation may take some time. */
715 void
716 push_watch_cursor (struct import_assistant *ia)
717 {
718   if (++ia->asst.watch_cursor == 1)
719     {
720       GtkWidget *widget = GTK_WIDGET (ia->asst.assistant);
721       GdkDisplay *display = gtk_widget_get_display (widget);
722       GdkCursor *cursor = gdk_cursor_new_for_display (display, GDK_WATCH);
723       gdk_window_set_cursor (widget->window, cursor);
724       gdk_cursor_unref (cursor);
725       gdk_display_flush (display);
726     }
727 }
728
729 /* Decrements the "watch cursor" level.  If the level reaches
730    zero, the cursor is reset to its default shape. */
731 void
732 pop_watch_cursor (struct import_assistant *ia)
733 {
734   if (--ia->asst.watch_cursor == 0)
735     {
736       GtkWidget *widget = GTK_WIDGET (ia->asst.assistant);
737       gdk_window_set_cursor (widget->window, NULL);
738     }
739 }