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