Output viewer: Guess file type from filename suffix.
[pspp] / src / ui / gui / psppire-output-window.c
1 /* PSPPIRE - a graphical user interface for PSPP.
2    Copyright (C) 2008, 2009, 2010  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 <gtk/gtksignal.h>
20 #include <gtk/gtkbox.h>
21 #include "helper.h"
22
23 #include <libpspp/cast.h>
24 #include <libpspp/message.h>
25 #include <libpspp/string-map.h>
26 #include <output/cairo.h>
27 #include <output/chart-item.h>
28 #include <output/driver-provider.h>
29 #include <output/output-item.h>
30 #include <output/table-item.h>
31 #include <output/text-item.h>
32 #include <output/tab.h>
33 #include <stdlib.h>
34
35 #include "help-menu.h"
36
37 #include "psppire-output-window.h"
38
39
40 #include "xalloc.h"
41
42 #include <sys/types.h>
43 #include <sys/stat.h>
44 #include <unistd.h>
45
46 #include <gettext.h>
47 #define _(msgid) gettext (msgid)
48 #define N_(msgid) msgid
49
50 enum
51   {
52     COL_TITLE,                  /* Table title. */
53     COL_ADDR,                   /* Pointer to the table */
54     COL_Y,                      /* Y position of top of title. */
55     N_COLS
56   };
57
58 static void psppire_output_window_base_finalize (PsppireOutputWindowClass *, gpointer);
59 static void psppire_output_window_base_init     (PsppireOutputWindowClass *class);
60 static void psppire_output_window_class_init    (PsppireOutputWindowClass *class);
61 static void psppire_output_window_init          (PsppireOutputWindow      *window);
62
63
64 GType
65 psppire_output_window_get_type (void)
66 {
67   static GType psppire_output_window_type = 0;
68
69   if (!psppire_output_window_type)
70     {
71       static const GTypeInfo psppire_output_window_info =
72       {
73         sizeof (PsppireOutputWindowClass),
74         (GBaseInitFunc) psppire_output_window_base_init,
75         (GBaseFinalizeFunc) psppire_output_window_base_finalize,
76         (GClassInitFunc)psppire_output_window_class_init,
77         (GClassFinalizeFunc) NULL,
78         NULL,
79         sizeof (PsppireOutputWindow),
80         0,
81         (GInstanceInitFunc) psppire_output_window_init,
82       };
83
84       psppire_output_window_type =
85         g_type_register_static (PSPPIRE_TYPE_WINDOW, "PsppireOutputWindow",
86                                 &psppire_output_window_info, 0);
87     }
88
89   return psppire_output_window_type;
90 }
91
92 static GObjectClass *parent_class;
93
94 static void
95 psppire_output_window_finalize (GObject *object)
96 {
97   if (G_OBJECT_CLASS (parent_class)->finalize)
98     (*G_OBJECT_CLASS (parent_class)->finalize) (object);
99 }
100
101
102 static void
103 psppire_output_window_dispose (GObject *obj)
104 {
105   PsppireOutputWindow *viewer = PSPPIRE_OUTPUT_WINDOW (obj);
106   size_t i;
107
108   for (i = 0; i < viewer->n_items; i++)
109     output_item_unref (viewer->items[i]);
110   free (viewer->items);
111   viewer->items = NULL;
112   viewer->n_items = viewer->allocated_items = 0;
113
114   g_object_unref (viewer->print_settings);
115
116   /* Chain up to the parent class */
117   G_OBJECT_CLASS (parent_class)->dispose (obj);
118 }
119
120 static void
121 psppire_output_window_class_init (PsppireOutputWindowClass *class)
122 {
123   GObjectClass *object_class = G_OBJECT_CLASS (class);
124
125   parent_class = g_type_class_peek_parent (class);
126   object_class->dispose = psppire_output_window_dispose;
127 }
128
129
130 static void
131 psppire_output_window_base_init (PsppireOutputWindowClass *class)
132 {
133   GObjectClass *object_class = G_OBJECT_CLASS (class);
134
135   object_class->finalize = psppire_output_window_finalize;
136 }
137
138
139
140 static void
141 psppire_output_window_base_finalize (PsppireOutputWindowClass *class,
142                                      gpointer class_data)
143 {
144 }
145 \f
146 /* Output driver class. */
147
148 struct psppire_output_driver
149   {
150     struct output_driver driver;
151     PsppireOutputWindow *viewer;
152     struct xr_driver *xr;
153   };
154
155 static struct output_driver_class psppire_output_class;
156
157 static struct psppire_output_driver *
158 psppire_output_cast (struct output_driver *driver)
159 {
160   assert (driver->class == &psppire_output_class);
161   return UP_CAST (driver, struct psppire_output_driver, driver);
162 }
163
164 static gboolean
165 expose_event_callback (GtkWidget *widget, GdkEventExpose *event, gpointer data)
166 {
167   struct xr_rendering *r = g_object_get_data (G_OBJECT (widget), "rendering");
168   cairo_t *cr;
169
170   cr = gdk_cairo_create (widget->window);
171   xr_rendering_draw (r, cr);
172   cairo_destroy (cr);
173
174   return TRUE;
175 }
176
177 static void
178 psppire_output_submit (struct output_driver *this,
179                        const struct output_item *item)
180 {
181   struct psppire_output_driver *pod = psppire_output_cast (this);
182   PsppireOutputWindow *viewer;
183   GtkWidget *drawing_area;
184   struct xr_rendering *r;
185   struct string title;
186   GtkTreeStore *store;
187   GtkTreePath *path;
188   GtkTreeIter iter;
189   cairo_t *cr;
190   int tw, th;
191
192   if (pod->viewer == NULL)
193     {
194       pod->viewer = PSPPIRE_OUTPUT_WINDOW (psppire_output_window_new ());
195       gtk_widget_show_all (GTK_WIDGET (pod->viewer));
196       pod->viewer->driver = pod;
197     }
198   viewer = pod->viewer;
199
200   if (viewer->n_items >= viewer->allocated_items)
201     viewer->items = x2nrealloc (viewer->items, &viewer->allocated_items,
202                                 sizeof *viewer->items);
203   viewer->items[viewer->n_items++] = output_item_ref (item);
204
205   if (is_text_item (item))
206     {
207       const struct text_item *text_item = to_text_item (item);
208       enum text_item_type type = text_item_get_type (text_item);
209       const char *text = text_item_get_text (text_item);
210
211       if (type == TEXT_ITEM_COMMAND_CLOSE)
212         {
213           viewer->in_command = false;
214           return;
215         }
216       else if (text[0] == '\0')
217         return;
218     }
219
220   cr = gdk_cairo_create (GTK_WIDGET (pod->viewer)->window);
221   if (pod->xr == NULL)
222     {
223       const GtkStyle *style = gtk_widget_get_style (GTK_WIDGET (viewer));
224       struct string_map options = STRING_MAP_INITIALIZER (options);
225       PangoFontDescription *font_desc;
226       char *font_name;
227
228       /* Use GTK+ default font as proportional font. */
229       font_name = pango_font_description_to_string (style->font_desc);
230       string_map_insert (&options, "prop-font", font_name);
231       g_free (font_name);
232
233       /* Derived emphasized font from proportional font. */
234       font_desc = pango_font_description_copy (style->font_desc);
235       pango_font_description_set_style (font_desc, PANGO_STYLE_ITALIC);
236       font_name = pango_font_description_to_string (font_desc);
237       string_map_insert (&options, "emph-font", font_name);
238       g_free (font_name);
239       pango_font_description_free (font_desc);
240
241       /* Pretend that the "page" has a reasonable width and a very big length,
242          so that most tables can be conveniently viewed on-screen with vertical
243          scrolling only.  (The length should not be increased very much because
244          it is already close enough to INT_MAX when expressed as thousands of a
245          point.) */
246       string_map_insert (&options, "paper-size", "300x200000mm");
247       string_map_insert (&options, "headers", "off");
248       string_map_insert (&options, "left-margin", "0");
249       string_map_insert (&options, "right-margin", "0");
250       string_map_insert (&options, "top-margin", "0");
251       string_map_insert (&options, "bottom-margin", "0");
252
253       pod->xr = xr_driver_create (cr, &options);
254
255       string_map_destroy (&options);
256     }
257
258   r = xr_rendering_create (pod->xr, item, cr);
259   if (r == NULL)
260     goto done;
261
262   xr_rendering_measure (r, &tw, &th);
263
264   drawing_area = gtk_drawing_area_new ();
265   gtk_widget_modify_bg (
266     GTK_WIDGET (drawing_area), GTK_STATE_NORMAL,
267     &gtk_widget_get_style (drawing_area)->base[GTK_STATE_NORMAL]);
268   g_object_set_data (G_OBJECT (drawing_area), "rendering", r);
269   gtk_widget_set_size_request (drawing_area, tw, th);
270   gtk_layout_put (pod->viewer->output, drawing_area, 0, pod->viewer->y);
271   gtk_widget_show (drawing_area);
272   g_signal_connect (G_OBJECT (drawing_area), "expose_event",
273                      G_CALLBACK (expose_event_callback), NULL);
274
275   if (!is_text_item (item)
276       || text_item_get_type (to_text_item (item)) != TEXT_ITEM_SYNTAX
277       || !viewer->in_command)
278     {
279       store = GTK_TREE_STORE (gtk_tree_view_get_model (viewer->overview));
280
281       ds_init_empty (&title);
282       if (is_text_item (item)
283           && text_item_get_type (to_text_item (item)) == TEXT_ITEM_COMMAND_OPEN)
284         {
285           gtk_tree_store_append (store, &iter, NULL);
286           viewer->cur_command = iter; /* XXX shouldn't save a GtkTreeIter */
287           viewer->in_command = true;
288         }
289       else
290         {
291           GtkTreeIter *p = viewer->in_command ? &viewer->cur_command : NULL;
292           gtk_tree_store_append (store, &iter, p);
293         }
294
295       ds_clear (&title);
296       if (is_text_item (item))
297         ds_put_cstr (&title, text_item_get_text (to_text_item (item)));
298       else if (is_table_item (item))
299         {
300           const char *caption = table_item_get_caption (to_table_item (item));
301           if (caption != NULL)
302             ds_put_format (&title, "Table: %s", caption);
303           else
304             ds_put_cstr (&title, "Table");
305         }
306       else if (is_chart_item (item))
307         {
308           const char *s = chart_item_get_title (to_chart_item (item));
309           if (s != NULL)
310             ds_put_format (&title, "Chart: %s", s);
311           else
312             ds_put_cstr (&title, "Chart");
313         }
314       gtk_tree_store_set (store, &iter,
315                           COL_TITLE, ds_cstr (&title),
316                           COL_ADDR, item, 
317                           COL_Y, viewer->y,
318                           -1);
319       ds_destroy (&title);
320
321       path = gtk_tree_model_get_path (GTK_TREE_MODEL (store), &iter);
322       gtk_tree_view_expand_row (viewer->overview, path, TRUE);
323       gtk_tree_path_free (path);
324     }
325
326   if (pod->viewer->max_width < tw)
327     pod->viewer->max_width = tw;
328   pod->viewer->y += th;
329
330   gtk_layout_set_size (pod->viewer->output,
331                        pod->viewer->max_width, pod->viewer->y);
332
333   gtk_window_set_urgency_hint (GTK_WINDOW (pod->viewer), TRUE);
334
335 done:
336   cairo_destroy (cr);
337 }
338
339 static struct output_driver_class psppire_output_class =
340   {
341     "PSPPIRE",                  /* name */
342     NULL,                       /* destroy */
343     psppire_output_submit,      /* submit */
344     NULL,                       /* flush */
345   };
346
347 void
348 psppire_output_window_setup (void)
349 {
350   struct psppire_output_driver *pod;
351   struct output_driver *d;
352
353   pod = xzalloc (sizeof *pod);
354   d = &pod->driver;
355   output_driver_init (d, &psppire_output_class, "PSPPIRE",
356                       SETTINGS_DEVICE_UNFILTERED);
357   output_driver_register (d);
358 }
359 \f
360 int viewer_length = 16;
361 int viewer_width = 59;
362
363 /* Callback for the "delete" action (clicking the x on the top right
364    hand corner of the window) */
365 static gboolean
366 on_delete (GtkWidget *w, GdkEvent *event, gpointer user_data)
367 {
368   PsppireOutputWindow *ow = PSPPIRE_OUTPUT_WINDOW (user_data);
369
370   gtk_widget_destroy (GTK_WIDGET (ow));
371
372   ow->driver->viewer = NULL;
373
374   return FALSE;
375 }
376
377
378
379 static void
380 cancel_urgency (GtkWindow *window,  gpointer data)
381 {
382   gtk_window_set_urgency_hint (window, FALSE);
383 }
384
385 static void
386 on_row_activate (GtkTreeView *overview,
387                  GtkTreePath *path,
388                  GtkTreeViewColumn *column,
389                  PsppireOutputWindow *window)
390 {
391   GtkTreeModel *model;
392   GtkTreeIter iter;
393   GtkAdjustment *vadj;
394   GValue value = {0};
395   double y, min, max;
396
397   model = gtk_tree_view_get_model (overview);
398   if (!gtk_tree_model_get_iter (model, &iter, path))
399     return;
400
401   gtk_tree_model_get_value (model, &iter, COL_Y, &value);
402   y = g_value_get_long (&value);
403   g_value_unset (&value);
404
405   vadj = gtk_layout_get_vadjustment (window->output);
406   min = vadj->lower;
407   max = vadj->upper - vadj->page_size;
408   if (y < min)
409     y = min;
410   else if (y > max)
411     y = max;
412   gtk_adjustment_set_value (vadj, y);
413 }
414
415 static void psppire_output_window_print (PsppireOutputWindow *window);
416
417
418 static void
419 export_output (PsppireOutputWindow *window, struct string_map *options,
420                const char *format)
421 {
422   struct output_driver *driver;
423   size_t i;
424
425   string_map_insert (options, "format", format);
426   driver = output_driver_create (options);
427   if (driver == NULL)
428     return;
429
430   for (i = 0; i < window->n_items; i++)
431     driver->class->submit (driver, window->items[i]);
432   output_driver_destroy (driver);
433 }
434
435
436 struct file_types
437 {
438   const gchar *label;
439   const gchar *ext;
440 };
441
442 enum 
443   {
444     FT_AUTO = 0,
445     FT_PDF,
446     FT_HTML,
447     FT_ODT,
448     FT_TXT,
449     FT_PS,
450     FT_CSV,
451     n_FT
452   };
453
454 #define N_EXTENTIONS (n_FT - 1)
455
456 struct file_types ft[n_FT] = {
457   {N_("Infer file type from extention"),  NULL},
458   {N_("PDF (*.pdf)"),                     ".pdf"},
459   {N_("HTML (*.html)"),                   ".html"},
460   {N_("OpenDocument (*.odt)"),            ".odt"},
461   {N_("Text (*.txt)"),                    ".txt"},
462   {N_("PostScript (*.ps)"),               ".ps"},
463   {N_("Comma-Separated Values (*.csv)"),  ".csv"}
464 };
465
466
467 static void
468 on_combo_change (GtkFileChooser *chooser)
469 {
470   gboolean sensitive = FALSE;
471   GtkWidget *combo = gtk_file_chooser_get_extra_widget (chooser);
472
473   int x = 0; 
474   gchar *fn = gtk_file_chooser_get_filename (chooser);
475
476   if (combo &&  GTK_WIDGET_REALIZED (combo))
477     x = gtk_combo_box_get_active (GTK_COMBO_BOX (combo));
478
479   if (fn == NULL)
480     {
481       sensitive = FALSE;
482     }
483   else
484     {
485       gint i;
486       if ( x != 0 )
487         sensitive = TRUE;
488
489       for (i = 1 ; i < N_EXTENTIONS ; ++i)
490         {
491           if ( g_str_has_suffix (fn, ft[i].ext))
492             {
493               sensitive = TRUE;
494               break;
495             }
496         }
497     }
498
499   g_free (fn);
500
501   gtk_dialog_set_response_sensitive (GTK_DIALOG (chooser), GTK_RESPONSE_ACCEPT, sensitive);
502 }
503
504
505 static void
506 on_file_chooser_change (GObject *w, GParamSpec *pspec, gpointer data)
507 {
508
509   GtkFileChooser *chooser = data;
510   const gchar *name = g_param_spec_get_name (pspec);
511
512   if ( ! GTK_WIDGET_REALIZED (chooser))
513     return;
514
515   /* Ignore this one.  It causes recursion. */
516   if ( 0 == strcmp ("tooltip-text", name))
517     return;
518
519   on_combo_change (chooser);
520 }
521
522
523 /* Recursively descend all the children of W, connecting
524    to their "notify" signal */
525 static void
526 iterate_widgets (GtkWidget *w, gpointer data)
527 {
528   if ( GTK_IS_CONTAINER (w))
529     gtk_container_forall (GTK_CONTAINER (w), iterate_widgets, data);
530   else
531     g_signal_connect (w, "notify",  G_CALLBACK (on_file_chooser_change), data);
532 }
533
534
535
536 static GtkListStore *
537 create_file_type_list (void)
538 {
539   int i;
540   GtkTreeIter iter;
541   GtkListStore *list = gtk_list_store_new (2, G_TYPE_STRING, G_TYPE_STRING);
542   
543   for (i = 0 ; i < 6 ; ++i)
544     {
545       gtk_list_store_append (list, &iter);
546       gtk_list_store_set (list, &iter,
547                           0,  gettext (ft[i].label),
548                           1,  ft[i].ext,
549                           -1);
550     }
551   
552   return list;
553 }
554
555 static void
556 psppire_output_window_export (PsppireOutputWindow *window)
557 {
558   gint response;
559   GtkWidget *combo;
560   GtkListStore *list;
561
562   GtkFileChooser *chooser;
563   
564   GtkWidget *dialog = gtk_file_chooser_dialog_new (_("Export Output"),
565                                         GTK_WINDOW (window),
566                                         GTK_FILE_CHOOSER_ACTION_SAVE,
567                                         GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
568                                         GTK_STOCK_SAVE,   GTK_RESPONSE_ACCEPT,
569                                         NULL);
570
571   chooser = GTK_FILE_CHOOSER (dialog);
572
573   list = create_file_type_list ();
574
575   combo = gtk_combo_box_new_with_model (GTK_TREE_MODEL (list));
576
577
578   {
579     /* Create text cell renderer */
580     GtkCellRenderer *cell = gtk_cell_renderer_text_new();
581     gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (combo), cell, FALSE );
582
583     gtk_cell_layout_add_attribute (GTK_CELL_LAYOUT (combo), cell,  "text", 0);
584   }
585
586   g_signal_connect_swapped (combo, "changed", G_CALLBACK (on_combo_change), chooser);
587
588   gtk_combo_box_set_active (GTK_COMBO_BOX (combo), 0);
589
590   gtk_file_chooser_set_extra_widget (chooser, combo);
591
592   /* This kludge is necessary because there is no signal to tell us
593      when the candidate filename of a GtkFileChooser has changed */
594   gtk_container_forall (GTK_CONTAINER (dialog), iterate_widgets, dialog);
595
596
597   gtk_file_chooser_set_do_overwrite_confirmation (chooser, TRUE);
598
599   response = gtk_dialog_run (GTK_DIALOG (dialog));
600
601   if ( response == GTK_RESPONSE_ACCEPT )
602     {
603       int file_type = gtk_combo_box_get_active (GTK_COMBO_BOX (combo));
604       char *filename = gtk_file_chooser_get_filename (chooser);
605       struct string_map options;
606
607       g_return_if_fail (filename);
608
609       if (file_type == FT_AUTO)
610         {
611           gint i;
612           for (i = 1 ; i < N_EXTENTIONS ; ++i)
613             {
614               if ( g_str_has_suffix (filename, ft[i].ext))
615                 {
616                   file_type = i;
617                   break;
618                 }
619             }
620         }
621
622       
623       string_map_init (&options);
624       string_map_insert (&options, "output-file", filename);
625
626       switch (file_type)
627         {
628         case FT_PDF:
629           export_output (window, &options, "pdf");
630           break;
631         case FT_HTML:
632           export_output (window, &options, "html");
633           break;
634         case FT_ODT:
635           export_output (window, &options, "odt");
636           break;
637         case FT_PS:
638           export_output (window, &options, "ps");
639           break;
640         case FT_CSV:
641           export_output (window, &options, "csv");
642           break;
643
644         case FT_TXT:
645           string_map_insert (&options, "headers", "false");
646           string_map_insert (&options, "paginate", "false");
647           string_map_insert (&options, "squeeze", "true");
648           string_map_insert (&options, "emphasis", "none");
649           string_map_insert (&options, "charts", "none");
650           string_map_insert (&options, "top-margin", "0");
651           string_map_insert (&options, "bottom-margin", "0");
652           export_output (window, &options, "txt");
653           break;
654         default:
655           g_assert_not_reached ();
656         }
657
658       string_map_destroy (&options);
659
660       free (filename);
661     }
662
663   gtk_widget_destroy (dialog);
664 }
665
666
667 enum {
668   SELECT_FMT_NULL,
669   SELECT_FMT_TEXT,
670   SELECT_FMT_UTF8,
671   SELECT_FMT_HTML,
672   SELECT_FMT_ODT
673 };
674
675
676 static void
677 insert_glyph (struct string_map *map, const char *opt, gunichar glyph)
678 {
679   char s[6] = {0,0,0,0,0,0};
680
681   g_unichar_to_utf8 (glyph, s);
682   string_map_insert (map, opt, s);
683 }
684
685 struct glyph_pair
686 {
687   gunichar glyph;
688   char opt[10];
689 };
690
691 /* See the table at 
692    http://en.wikipedia.org/wiki/Box-drawing_characters */
693 struct glyph_pair table[] = {
694   {0x2500, "box[1010]"},
695   {0x2501, "box[2020]"},
696   {0x2502, "box[0101]"},
697   {0x2503, "box[0202]"},
698
699   {0x250C, "box[1100]"},
700   {0x250D, "box[2100]"},
701   {0x250E, "box[1200]"},
702   {0x250F, "box[2200]"},
703   {0x2510, "box[0110]"},
704   {0x2511, "box[0110]"},
705   {0x2512, "box[0210]"},
706   {0x2513, "box[0220]"},
707   {0x2514, "box[1001]"},
708   {0x2515, "box[2001]"},
709   {0x2516, "box[1002]"},
710   {0x2517, "box[2002]"},
711   {0x2518, "box[0011]"},
712   {0x2519, "box[0021]"},
713   {0x251A, "box[0012]"},
714   {0x251B, "box[0022]"},
715   {0x251C, "box[1101]"},
716   {0x251D, "box[2101]"},
717   {0x251E, "box[1102]"},
718   {0x251F, "box[1201]"},
719   {0x2520, "box[1202]"},
720   {0x2521, "box[2102]"},
721   {0x2522, "box[2201]"},
722   {0x2523, "box[2202]"},
723   {0x2524, "box[0111]"},
724   {0x2525, "box[0121]"},
725   {0x2526, "box[0112]"},
726   {0x2527, "box[0211]"},
727   {0x2528, "box[0212]"},
728   {0x2529, "box[0122]"},
729   {0x252A, "box[0221]"},
730   {0x252B, "box[0222]"},
731   {0x252C, "box[1110]"},
732   {0x252D, "box[1120]"},
733   {0x252E, "box[2110]"},
734   {0x252F, "box[2120]"},
735   {0x2530, "box[1210]"},
736   {0x2531, "box[1220]"},
737   {0x2532, "box[2210]"},
738   {0x2533, "box[2220]"},
739   {0x2534, "box[1011]"},
740   {0x2535, "box[1021]"},
741   {0x2536, "box[2011]"},
742   {0x2537, "box[2021]"},
743   {0x2538, "box[1012]"},
744   {0x2539, "box[1022]"},
745   {0x253A, "box[2012]"},
746   {0x253B, "box[2022]"},
747   {0x253C, "box[1111]"},
748   {0x253D, "box[1121]"},
749   {0x253E, "box[2111]"},
750   {0x253F, "box[2121]"},
751   {0x2540, "box[1112]"},
752   {0x2541, "box[1211]"},
753   {0x2542, "box[1212]"},
754   {0x2543, "box[1122]"},
755   {0x2544, "box[2112]"},
756   {0x2545, "box[1221]"},
757   {0x2546, "box[2211]"},
758   {0x2547, "box[2122]"},
759   {0x2548, "box[2221]"},
760   {0x2549, "box[1222]"},
761   {0x254A, "box[2212]"},
762   {0x254B, "box[2222]"},
763
764   {0x2574, "box[0010]"},
765   {0x2575, "box[0001]"},
766   {0x2576, "box[1000]"},
767   {0x2577, "box[0100]"},
768   {0x2578, "box[0020]"},
769   {0x2579, "box[0002]"},
770   {0x257A, "box[2000]"},
771   {0x257B, "box[0200]"},
772   {0x257C, "box[2010]"},
773   {0x257D, "box[0201]"},
774   {0x257E, "box[1020]"},
775   {0x257F, "box[0102]"},
776 };
777
778
779 static void
780 utf8_box_chars (struct string_map *map)
781 {
782   int i;
783   for (i = 0; i < sizeof (table) / sizeof (table[0]); ++i)
784     {
785       const struct glyph_pair *p = &table[i];
786       insert_glyph (map, p->opt, p->glyph);
787     }
788 }
789
790
791
792 static void
793 clipboard_get_cb (GtkClipboard     *clipboard,
794                   GtkSelectionData *selection_data,
795                   guint             info,
796                   gpointer          data)
797 {
798   PsppireOutputWindow *window = data;
799
800   gsize length;
801   gchar *text = NULL;
802   struct output_driver *driver = NULL;
803   char *filename = NULL;
804   struct string_map options;
805
806   GtkTreeSelection *sel = gtk_tree_view_get_selection (window->overview);
807   GtkTreeModel *model = gtk_tree_view_get_model (window->overview);
808
809   GList *rows = gtk_tree_selection_get_selected_rows (sel, &model);
810   GList *n = rows;
811
812   if ( n == NULL)
813     return;
814
815   string_map_init (&options);
816   filename = tempnam (NULL, NULL);
817   string_map_insert (&options, "output-file", filename);
818
819   switch (info)
820     {
821     case SELECT_FMT_UTF8:
822       utf8_box_chars (&options);
823       /* fall-through */
824
825     case SELECT_FMT_TEXT:
826       string_map_insert (&options, "format", "txt");
827       break;
828
829     case SELECT_FMT_HTML:
830       string_map_insert (&options, "format", "html");
831       break;
832
833     case SELECT_FMT_ODT:
834       string_map_insert (&options, "format", "odt");
835       break;
836
837     default:
838       g_warning ("unsupported clip target\n");
839       goto finish;
840       break;
841     }
842
843   driver = output_driver_create (&options);
844   if (driver == NULL)
845     goto finish;
846
847   while (n)
848     {
849       GtkTreePath *path = n->data ; 
850       GtkTreeIter iter;
851       struct output_item *item ;
852
853       gtk_tree_model_get_iter (model, &iter, path);
854       gtk_tree_model_get (model, &iter, COL_ADDR, &item, -1);
855
856       driver->class->submit (driver, item);
857
858       n = n->next;
859     }
860
861   if ( driver->class->flush)
862     driver->class->flush (driver);
863
864
865   /* Some drivers (eg: the odt one) don't write anything until they
866      are closed */
867   output_driver_destroy (driver);
868   driver = NULL;
869
870   if ( g_file_get_contents (filename, &text, &length, NULL) )
871     {
872       gtk_selection_data_set (selection_data, selection_data->target,
873                               8,
874                               (const guchar *) text, length);
875     }
876
877  finish:
878
879   if (driver != NULL)
880     output_driver_destroy (driver);
881
882   g_free (text);
883
884   unlink (filename);
885   free (filename);
886
887   g_list_free (rows);
888 }
889
890 static void
891 clipboard_clear_cb (GtkClipboard *clipboard,
892                     gpointer data)
893 {
894 }
895
896 static const GtkTargetEntry targets[] = {
897
898   { "STRING",        0, SELECT_FMT_TEXT },
899   { "TEXT",          0, SELECT_FMT_TEXT },
900   { "COMPOUND_TEXT", 0, SELECT_FMT_TEXT },
901   { "text/plain",    0, SELECT_FMT_TEXT },
902
903   { "UTF8_STRING",   0, SELECT_FMT_UTF8 },
904   { "text/plain;charset=utf-8", 0, SELECT_FMT_UTF8 },
905
906   { "text/html",     0, SELECT_FMT_HTML },
907
908   { "application/vnd.oasis.opendocument.text", 0, SELECT_FMT_ODT }
909 };
910
911 static void
912 on_copy (PsppireOutputWindow *window)
913 {
914   {
915     GtkClipboard *clipboard =
916       gtk_widget_get_clipboard (GTK_WIDGET (window),
917                                 GDK_SELECTION_CLIPBOARD);
918
919     if (!gtk_clipboard_set_with_data (clipboard, targets,
920                                        G_N_ELEMENTS (targets),
921                                        clipboard_get_cb, clipboard_clear_cb,
922                                       window))
923
924       clipboard_clear_cb (clipboard, window);
925   }
926 }
927
928 static void
929 on_selection_change (GtkTreeSelection *sel, GtkAction *copy_action)
930 {
931   /* The Copy action is available only if there is something selected */
932   gtk_action_set_sensitive (copy_action, gtk_tree_selection_count_selected_rows (sel) > 0);
933 }
934
935 static void
936 on_select_all (PsppireOutputWindow *window)
937 {
938   GtkTreeSelection *sel = gtk_tree_view_get_selection (window->overview);
939   gtk_tree_view_expand_all (window->overview);
940   gtk_tree_selection_select_all (sel);
941 }
942
943
944 static void
945 psppire_output_window_init (PsppireOutputWindow *window)
946 {
947   GtkTreeViewColumn *column;
948   GtkCellRenderer *renderer;
949   GtkBuilder *xml;
950   GtkAction *copy_action;
951   GtkAction *select_all_action;
952   GtkTreeSelection *sel;
953
954   xml = builder_new ("output-viewer.ui");
955
956   copy_action = get_action_assert (xml, "edit_copy");
957   select_all_action = get_action_assert (xml, "edit_select-all");
958
959   gtk_action_set_sensitive (copy_action, FALSE);
960
961   g_signal_connect_swapped (copy_action, "activate", G_CALLBACK (on_copy), window);
962
963   g_signal_connect_swapped (select_all_action, "activate", G_CALLBACK (on_select_all), window);
964
965   gtk_widget_reparent (get_widget_assert (xml, "vbox1"), GTK_WIDGET (window));
966
967   window->output = GTK_LAYOUT (get_widget_assert (xml, "output"));
968   window->y = 0;
969
970   window->overview = GTK_TREE_VIEW (get_widget_assert (xml, "overview"));
971
972   sel = gtk_tree_view_get_selection (window->overview);
973
974   gtk_tree_selection_set_mode (sel, GTK_SELECTION_MULTIPLE);
975
976   g_signal_connect (sel, "changed", G_CALLBACK (on_selection_change), copy_action);
977
978   gtk_tree_view_set_model (window->overview,
979                            GTK_TREE_MODEL (gtk_tree_store_new (
980                                              N_COLS,
981                                              G_TYPE_STRING,  /* COL_TITLE */
982                                              G_TYPE_POINTER, /* COL_ADDR */
983                                              G_TYPE_LONG))); /* COL_Y */
984
985   window->in_command = false;
986
987   window->items = NULL;
988   window->n_items = window->allocated_items = 0;
989
990   column = gtk_tree_view_column_new ();
991   gtk_tree_view_append_column (GTK_TREE_VIEW (window->overview), column);
992   renderer = gtk_cell_renderer_text_new ();
993   gtk_tree_view_column_pack_start (column, renderer, TRUE);
994   gtk_tree_view_column_add_attribute (column, renderer, "text", COL_TITLE);
995
996   g_signal_connect (GTK_TREE_VIEW (window->overview),
997                     "row-activated", G_CALLBACK (on_row_activate), window);
998
999   gtk_widget_modify_bg (GTK_WIDGET (window->output), GTK_STATE_NORMAL,
1000                         &gtk_widget_get_style (GTK_WIDGET (window->output))->base[GTK_STATE_NORMAL]);
1001
1002   connect_help (xml);
1003
1004   g_signal_connect (window,
1005                     "focus-in-event",
1006                     G_CALLBACK (cancel_urgency),
1007                     NULL);
1008
1009   g_signal_connect (get_action_assert (xml,"windows_minimise-all"),
1010                     "activate",
1011                     G_CALLBACK (psppire_window_minimise_all),
1012                     NULL);
1013
1014   {
1015     GtkUIManager *uim = GTK_UI_MANAGER (get_object_assert (xml, "uimanager1", GTK_TYPE_UI_MANAGER));
1016     merge_help_menu (uim);
1017
1018     PSPPIRE_WINDOW (window)->menu =
1019       GTK_MENU_SHELL (gtk_ui_manager_get_widget (uim,"/ui/menubar/windows_menuitem/windows_minimise-all")->parent);
1020   }
1021
1022   g_signal_connect_swapped (get_action_assert (xml, "file_export"), "activate",
1023                             G_CALLBACK (psppire_output_window_export), window);
1024
1025
1026   g_signal_connect_swapped (get_action_assert (xml, "file_print"), "activate",
1027                             G_CALLBACK (psppire_output_window_print), window);
1028
1029   g_object_unref (xml);
1030
1031   g_signal_connect (window, "delete-event",
1032                     G_CALLBACK (on_delete), window);
1033 }
1034
1035
1036 GtkWidget*
1037 psppire_output_window_new (void)
1038 {
1039   return GTK_WIDGET (g_object_new (psppire_output_window_get_type (),
1040                                    "filename", "Output",
1041                                    "description", _("Output Viewer"),
1042                                    NULL));
1043 }
1044
1045
1046 \f
1047 static void
1048 create_xr_print_driver (GtkPrintContext *context, PsppireOutputWindow *window)
1049 {
1050   struct string_map options;
1051   GtkPageSetup *page_setup;
1052   double width, height;
1053   double left_margin;
1054   double right_margin;
1055   double top_margin;
1056   double bottom_margin;
1057
1058   page_setup = gtk_print_context_get_page_setup (context);
1059   width = gtk_page_setup_get_paper_width (page_setup, GTK_UNIT_MM);
1060   height = gtk_page_setup_get_paper_height (page_setup, GTK_UNIT_MM);
1061   left_margin = gtk_page_setup_get_left_margin (page_setup, GTK_UNIT_MM);
1062   right_margin = gtk_page_setup_get_right_margin (page_setup, GTK_UNIT_MM);
1063   top_margin = gtk_page_setup_get_top_margin (page_setup, GTK_UNIT_MM);
1064   bottom_margin = gtk_page_setup_get_bottom_margin (page_setup, GTK_UNIT_MM);
1065
1066   string_map_init (&options);
1067   string_map_insert_nocopy (&options, xstrdup ("paper-size"),
1068                             xasprintf("%.2fx%.2fmm", width, height));
1069   string_map_insert_nocopy (&options, xstrdup ("left-margin"),
1070                             xasprintf ("%.2fmm", left_margin));
1071   string_map_insert_nocopy (&options, xstrdup ("right-margin"),
1072                             xasprintf ("%.2fmm", right_margin));
1073   string_map_insert_nocopy (&options, xstrdup ("top-margin"),
1074                             xasprintf ("%.2fmm", top_margin));
1075   string_map_insert_nocopy (&options, xstrdup ("bottom-margin"),
1076                             xasprintf ("%.2fmm", bottom_margin));
1077
1078   window->print_xrd =
1079     xr_driver_create (gtk_print_context_get_cairo_context (context), &options);
1080
1081   string_map_destroy (&options);
1082 }
1083
1084 static gboolean
1085 paginate (GtkPrintOperation *operation,
1086           GtkPrintContext   *context,
1087           PsppireOutputWindow *window)
1088 {
1089   if ( window->print_item < window->n_items )
1090     {
1091       xr_driver_output_item (window->print_xrd, window->items[window->print_item++]);
1092       if (xr_driver_need_new_page (window->print_xrd))
1093         {
1094           xr_driver_next_page (window->print_xrd, NULL);
1095           window->print_n_pages ++;
1096         }
1097       return FALSE;
1098     }
1099   else
1100     {
1101       gtk_print_operation_set_n_pages (operation, window->print_n_pages);
1102       window->print_item = 0;
1103       create_xr_print_driver (context, window);
1104       return TRUE;
1105     }
1106 }
1107
1108 static void
1109 begin_print (GtkPrintOperation *operation,
1110              GtkPrintContext   *context,
1111              PsppireOutputWindow *window)
1112 {
1113   create_xr_print_driver (context, window);
1114
1115   window->print_item = 0;
1116   window->print_n_pages = 1;
1117 }
1118
1119 static void
1120 end_print (GtkPrintOperation *operation,
1121            GtkPrintContext   *context,
1122            PsppireOutputWindow *window)
1123 {
1124   xr_driver_destroy (window->print_xrd);
1125 }
1126
1127
1128 static void
1129 draw_page (GtkPrintOperation *operation,
1130            GtkPrintContext   *context,
1131            gint               page_number,
1132            PsppireOutputWindow *window)
1133 {
1134   xr_driver_next_page (window->print_xrd, gtk_print_context_get_cairo_context (context));
1135   while ( window->print_item < window->n_items)
1136     {
1137       xr_driver_output_item (window->print_xrd, window->items [window->print_item++]);
1138       if ( xr_driver_need_new_page (window->print_xrd) )
1139           break;          
1140     }
1141 }
1142
1143
1144 static void
1145 psppire_output_window_print (PsppireOutputWindow *window)
1146 {
1147   GtkPrintOperationResult res;
1148
1149   GtkPrintOperation *print = gtk_print_operation_new ();
1150
1151   if (window->print_settings != NULL) 
1152     gtk_print_operation_set_print_settings (print, window->print_settings);
1153
1154   g_signal_connect (print, "begin_print", G_CALLBACK (begin_print), window);
1155   g_signal_connect (print, "end_print", G_CALLBACK (end_print),     window);
1156   g_signal_connect (print, "paginate", G_CALLBACK (paginate),       window);
1157   g_signal_connect (print, "draw_page", G_CALLBACK (draw_page),     window);
1158
1159   res = gtk_print_operation_run (print, GTK_PRINT_OPERATION_ACTION_PRINT_DIALOG,
1160                                  GTK_WINDOW (window), NULL);
1161
1162   if (res == GTK_PRINT_OPERATION_RESULT_APPLY)
1163     {
1164       if (window->print_settings != NULL)
1165         g_object_unref (window->print_settings);
1166       window->print_settings = g_object_ref (gtk_print_operation_get_print_settings (print));
1167       
1168     }
1169
1170   g_object_unref (print);
1171 }