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