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