Replace numerous instances of xzalloc with XZALLOC
[pspp] / src / ui / gui / psppire-output-window.c
1 /* PSPPIRE - a graphical user interface for PSPP.
2    Copyright (C) 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2016,
3    2021  Free Software Foundation
4
5    This program is free software: you can redistribute it and/or modify
6    it under the terms of the GNU General Public License as published by
7    the Free Software Foundation, either version 3 of the License, or
8    (at your option) any later version.
9
10    This program is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13    GNU General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program.  If not, see <http://www.gnu.org/licenses/>. */
17
18 #include <config.h>
19
20 #include "ui/gui/psppire-output-window.h"
21
22 #include <errno.h>
23 #include <gtk/gtk.h>
24 #include <stdlib.h>
25 #include <sys/stat.h>
26 #include <sys/types.h>
27 #include <unistd.h>
28
29 #include "libpspp/cast.h"
30 #include "libpspp/message.h"
31 #include "libpspp/string-map.h"
32 #include "output/driver-provider.h"
33 #include "output/output-item.h"
34 #include "ui/gui/help-menu.h"
35 #include "ui/gui/builder-wrapper.h"
36 #include "ui/gui/psppire-output-view.h"
37 #include "ui/gui/psppire-conf.h"
38 #include "ui/gui/windows-menu.h"
39
40 #include "gl/xalloc.h"
41
42 #include "helper.h"
43
44 #include <gettext.h>
45 #define _(msgid) gettext (msgid)
46 #define N_(msgid) msgid
47
48 G_DEFINE_TYPE (PsppireOutputWindow, psppire_output_window, PSPPIRE_TYPE_WINDOW)
49
50 static GObjectClass *parent_class;
51
52 static void
53 psppire_output_window_finalize (GObject *object)
54 {
55   if (G_OBJECT_CLASS (parent_class)->finalize)
56     (*G_OBJECT_CLASS (parent_class)->finalize) (object);
57 }
58
59
60 static void
61 psppire_output_window_dispose (GObject *obj)
62 {
63   PsppireOutputWindow *window = PSPPIRE_OUTPUT_WINDOW (obj);
64
65   if (window->dispose_has_run)
66     return;
67
68   window->dispose_has_run = TRUE;
69   psppire_output_view_destroy (window->view);
70   window->view = NULL;
71
72   /* Chain up to the parent class */
73   G_OBJECT_CLASS (parent_class)->dispose (obj);
74 }
75
76 static void
77 psppire_output_window_class_init (PsppireOutputWindowClass *class)
78 {
79   GObjectClass *object_class = G_OBJECT_CLASS (class);
80
81   parent_class = g_type_class_peek_parent (class);
82   object_class->dispose = psppire_output_window_dispose;
83
84   object_class->finalize = psppire_output_window_finalize;
85 }
86 \f
87 /* Output driver class. */
88
89 struct psppire_output_driver
90   {
91     struct output_driver driver;
92     PsppireOutputWindow *window;
93   };
94
95 static struct output_driver_class psppire_output_class;
96
97 static struct psppire_output_driver *
98 psppire_output_cast (struct output_driver *driver)
99 {
100   assert (driver->class == &psppire_output_class);
101   return UP_CAST (driver, struct psppire_output_driver, driver);
102 }
103
104 static void
105 psppire_output_submit (struct output_driver *this,
106                        const struct output_item *item)
107 {
108   struct psppire_output_driver *pod = psppire_output_cast (this);
109   PsppireOutputWindow *window;
110   bool new;
111
112   new = pod->window == NULL;
113   if (new)
114     {
115       pod->window = PSPPIRE_OUTPUT_WINDOW (psppire_output_window_new ());
116       GApplication *app = g_application_get_default ();
117       gtk_application_add_window (GTK_APPLICATION (app),
118                                   GTK_WINDOW (pod->window));
119
120       pod->window->driver = pod;
121     }
122   window = pod->window;
123
124   psppire_output_view_put (window->view, item);
125
126   if (new)
127     {
128       /* We could have called this earlier in the previous "if (new)" block,
129          but doing it here finds, in a plain GTK+ environment, a bug that
130          otherwise only showed up on an Ubuntu Unity desktop.  See bug
131          #43362. */
132       gtk_widget_show_all (GTK_WIDGET (pod->window));
133     }
134
135   PsppireConf *conf = psppire_conf_new ();
136   {
137     gboolean status = true;
138     psppire_conf_get_boolean (conf, "OutputWindowAction", "alert",
139                               &status);
140     gtk_window_set_urgency_hint (GTK_WINDOW (pod->window), status);
141   }
142
143   {
144     gboolean status ;
145     if (psppire_conf_get_boolean (conf, "OutputWindowAction", "maximize",
146                                   &status) && status)
147       gtk_window_maximize (GTK_WINDOW (pod->window));
148   }
149
150   {
151     gboolean status ;
152     if (psppire_conf_get_boolean (conf, "OutputWindowAction", "raise",
153                                   &status) && status)
154       gtk_window_present (GTK_WINDOW (pod->window));
155   }
156 }
157
158 static struct output_driver_class psppire_output_class =
159   {
160     .name = "PSPPIRE",
161     .submit = psppire_output_submit,
162     .handles_groups = true,
163     .handles_show = true,
164   };
165
166 void
167 psppire_output_window_setup (void)
168 {
169   struct psppire_output_driver *pod = XZALLOC (struct psppire_output_driver);
170   struct output_driver *d;
171
172   d = &pod->driver;
173   output_driver_init (d, &psppire_output_class, "PSPPIRE",
174                       SETTINGS_DEVICE_UNFILTERED);
175   output_driver_register (d);
176 }
177
178 \f
179
180 /* Callback for the "delete" action (clicking the x on the top right
181    hand corner of the window) */
182 static gboolean
183 on_delete (GtkWidget *w, GdkEvent *event, gpointer user_data)
184 {
185   PsppireOutputWindow *ow = PSPPIRE_OUTPUT_WINDOW (user_data);
186
187   gtk_widget_destroy (GTK_WIDGET (ow));
188
189   ow->driver->window = NULL;
190
191   return FALSE;
192 }
193
194
195
196 static void
197 cancel_urgency (GtkWindow *window,  gpointer data)
198 {
199   gtk_window_set_urgency_hint (window, FALSE);
200 }
201
202 static void psppire_output_window_print (PsppireOutputWindow *window);
203
204
205 static void
206 export_output (PsppireOutputWindow *window, struct string_map *options,
207                const char *format)
208 {
209   string_map_insert (options, "format", format);
210   psppire_output_view_export (window->view, options);
211 }
212
213
214 struct file_types
215 {
216   const gchar *label;
217   const gchar *ext;
218 };
219
220 enum
221   {
222     FT_AUTO = 0,
223     FT_SPV,
224     FT_PDF,
225     FT_HTML,
226     FT_ODT,
227     FT_TXT,
228     FT_ASCII,
229     FT_PS,
230     FT_CSV,
231     FT_PNG,
232     FT_SVG,
233     n_FT
234   };
235
236 static const struct file_types ft[n_FT] = {
237   {N_("Infer file type from extension"),  NULL},
238   {N_("SPSS Viewer (*.spv)"),             ".spv"},
239   {N_("PDF (*.pdf)"),                     ".pdf"},
240   {N_("HTML (*.html)"),                   ".html"},
241   {N_("OpenDocument (*.odt)"),            ".odt"},
242   {N_("Text (*.txt)"),                    ".txt"},
243   {N_("Text [plain] (*.txt)"),            ".txt"},
244   {N_("PostScript (*.ps)"),               ".ps"},
245   {N_("Comma-Separated Values (*.csv)"),  ".csv"},
246   {N_("Portable Network Graphics (*.png)"),  ".png"},
247   {N_("Scalable Vector Graphics (*.svg)"),   ".svg"}
248 };
249
250
251 static void
252 on_combo_change (GtkFileChooser *chooser)
253 {
254   gboolean sensitive = FALSE;
255   GtkWidget *combo = gtk_file_chooser_get_extra_widget (chooser);
256
257   int file_type = FT_AUTO;
258   gchar *fn = gtk_file_chooser_get_filename (chooser);
259
260   if (combo &&  gtk_widget_get_realized (combo))
261     file_type = gtk_combo_box_get_active (GTK_COMBO_BOX (combo));
262
263   if (fn != NULL && file_type == FT_AUTO)
264     {
265       for (gint i = 1 ; i < n_FT ; ++i)
266         {
267           if (g_str_has_suffix (fn, ft[i].ext))
268             {
269               sensitive = TRUE;
270               break;
271             }
272         }
273     }
274   else
275     sensitive = (fn != NULL);
276
277   g_free (fn);
278
279   gtk_dialog_set_response_sensitive (GTK_DIALOG (chooser), GTK_RESPONSE_ACCEPT, sensitive);
280 }
281
282
283 static GtkListStore *
284 create_file_type_list (void)
285 {
286   int i;
287   GtkTreeIter iter;
288   GtkListStore *list = gtk_list_store_new (2, G_TYPE_STRING, G_TYPE_STRING);
289
290   for (i = 0 ; i < n_FT ; ++i)
291     {
292       gtk_list_store_append (list, &iter);
293       gtk_list_store_set (list, &iter,
294                           0,  gettext (ft[i].label),
295                           1,  ft[i].ext,
296                           -1);
297     }
298
299   return list;
300 }
301
302 static void
303 psppire_output_window_export (PsppireOutputWindow *window)
304 {
305   gint response;
306   GtkWidget *combo;
307   GtkListStore *list;
308
309   GtkFileChooser *chooser;
310
311   GtkWidget *dialog = gtk_file_chooser_dialog_new (_("Export Output"),
312                                         GTK_WINDOW (window),
313                                         GTK_FILE_CHOOSER_ACTION_SAVE,
314                                         _("Cancel"), GTK_RESPONSE_CANCEL,
315                                         _("Save"),   GTK_RESPONSE_ACCEPT,
316                                         NULL);
317
318   g_object_set (dialog, "local-only", FALSE, NULL);
319
320   chooser = GTK_FILE_CHOOSER (dialog);
321
322   list = create_file_type_list ();
323
324   combo = gtk_combo_box_new_with_model (GTK_TREE_MODEL (list));
325
326
327   {
328     /* Create text cell renderer */
329     GtkCellRenderer *cell = gtk_cell_renderer_text_new();
330     gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (combo), cell, FALSE);
331
332     gtk_cell_layout_add_attribute (GTK_CELL_LAYOUT (combo), cell,  "text", 0);
333   }
334
335   g_signal_connect_swapped (combo, "changed", G_CALLBACK (on_combo_change), chooser);
336
337   gtk_combo_box_set_active (GTK_COMBO_BOX (combo), 0);
338
339   gtk_file_chooser_set_extra_widget (chooser, combo);
340
341   g_signal_connect (chooser, "selection-changed", G_CALLBACK (on_combo_change), NULL);
342   gtk_file_chooser_set_do_overwrite_confirmation (chooser, TRUE);
343
344   response = gtk_dialog_run (GTK_DIALOG (dialog));
345
346   if (response == GTK_RESPONSE_ACCEPT)
347     {
348       gint file_type = gtk_combo_box_get_active (GTK_COMBO_BOX (combo));
349       gchar *filename = gtk_file_chooser_get_filename (chooser);
350       struct string_map options;
351
352       g_return_if_fail (filename);
353
354       if (file_type == FT_AUTO)
355         {
356           /* If the "Infer file type from extension" option was chosen,
357              search for the respective type in the list.
358              (It's a O(n) search, but fortunately n is small). */
359           gint i;
360           for (i = 1 ; i < n_FT ; ++i)
361             {
362               if (g_str_has_suffix (filename, ft[i].ext))
363                 {
364                   file_type = i;
365                   break;
366                 }
367             }
368         }
369       else if (! g_str_has_suffix (filename, ft[file_type].ext))
370         {
371           /* If an explicit document format was chosen, and if the chosen
372              filename does not already have that particular "extension",
373              then append it.
374            */
375
376           gchar *of = filename;
377           filename = g_strconcat (filename, ft[file_type].ext, NULL);
378           g_free (of);
379         }
380
381       string_map_init (&options);
382       string_map_insert (&options, "output-file", filename);
383
384       switch (file_type)
385         {
386         case FT_SPV:
387           export_output (window, &options, "spv");
388           break;
389         case FT_PDF:
390           export_output (window, &options, "pdf");
391           break;
392         case FT_HTML:
393           export_output (window, &options, "html");
394           break;
395         case FT_ODT:
396           export_output (window, &options, "odt");
397           break;
398         case FT_PS:
399           export_output (window, &options, "ps");
400           break;
401         case FT_CSV:
402           export_output (window, &options, "csv");
403           break;
404         case FT_PNG:
405           export_output (window, &options, "png");
406           break;
407         case FT_SVG:
408           export_output (window, &options, "svg");
409           break;
410
411         case FT_TXT:
412           string_map_insert (&options, "box", "unicode");
413           /* Fall through */
414
415         case FT_ASCII:
416           string_map_insert (&options, "charts", "none");
417           export_output (window, &options, "txt");
418           break;
419         default:
420           g_assert_not_reached ();
421         }
422
423       string_map_destroy (&options);
424
425       free (filename);
426     }
427
428   gtk_widget_destroy (dialog);
429 }
430
431 static void
432 psppire_output_window_init (PsppireOutputWindow *window)
433 {
434   GtkBuilder *xml = builder_new ("output-window.ui");
435   GtkApplication *app = GTK_APPLICATION (g_application_get_default());
436   GtkWidget *box = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0);
437   gtk_container_add (GTK_CONTAINER (window), box);
438
439   GtkWidget *paned = get_widget_assert (xml, "paned1");
440
441   window->dispose_has_run = FALSE;
442
443   window->view = psppire_output_view_new (
444     GTK_LAYOUT (get_widget_assert (xml, "output")),
445     GTK_TREE_VIEW (get_widget_assert (xml, "overview")));
446
447   g_signal_connect (window,
448                     "focus-in-event",
449                     G_CALLBACK (cancel_urgency),
450                     NULL);
451
452   GObject *menu = get_object_assert (xml, "output-window-menu", G_TYPE_MENU);
453   GtkWidget *menubar = gtk_menu_bar_new_from_model (G_MENU_MODEL (menu));
454   gtk_box_pack_start (GTK_BOX (box), menubar, FALSE, FALSE, 0);
455   gtk_box_pack_start (GTK_BOX (box), paned, TRUE, TRUE, 0);
456
457   gtk_menu_shell_append (GTK_MENU_SHELL (menubar),
458                          create_windows_menu (GTK_WINDOW (window)));
459
460   gtk_menu_shell_append (GTK_MENU_SHELL (menubar),
461                          create_help_menu (GTK_WINDOW (window)));
462
463   {
464     GSimpleAction *print = g_simple_action_new ("print", NULL);
465     g_signal_connect_swapped (print, "activate", G_CALLBACK (psppire_output_window_print), window);
466     g_action_map_add_action (G_ACTION_MAP (window), G_ACTION (print));
467
468
469     const gchar *accels[2] = { "<Primary>P", NULL};
470     gtk_application_set_accels_for_action (app,
471                                            "win.print",
472                                            accels);
473   }
474
475
476   {
477     GSimpleAction *export = g_simple_action_new ("export", NULL);
478     g_signal_connect_swapped (export, "activate", G_CALLBACK (psppire_output_window_export), window);
479     g_action_map_add_action (G_ACTION_MAP (window), G_ACTION (export));
480   }
481
482   {
483     GSimpleAction *select_all = g_simple_action_new ("select-all", NULL);
484     g_action_map_add_action (G_ACTION_MAP (window), G_ACTION (select_all));
485   }
486
487   {
488     GSimpleAction *copy = g_simple_action_new ("copy", NULL);
489     g_action_map_add_action (G_ACTION_MAP (window), G_ACTION (copy));
490
491     const gchar *accels[2] = { "<Primary>C", NULL};
492     gtk_application_set_accels_for_action (app,
493                                            "win.copy",
494                                            accels);
495   }
496
497
498   g_object_unref (xml);
499
500   g_signal_connect (window, "delete-event",
501                     G_CALLBACK (on_delete), window);
502 }
503
504
505 GtkWidget*
506 psppire_output_window_new (void)
507 {
508   return GTK_WIDGET (g_object_new (psppire_output_window_get_type (),
509                                    /* TRANSLATORS: This will be part of a filename.  Please avoid whitespace. */
510                                    "filename", _("Output"),
511                                    "description", _("Output Viewer"),
512                                    NULL));
513 }
514
515 static void
516 psppire_output_window_print (PsppireOutputWindow *window)
517 {
518   psppire_output_view_print (window->view, GTK_WINDOW (window));
519 }