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