1 /* PSPPIRE - a graphical user interface for PSPP.
2 Copyright (C) 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2016 Free Software Foundation
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.
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.
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/>. */
19 #include "ui/gui/psppire-output-window.h"
25 #include <sys/types.h>
28 #include "libpspp/cast.h"
29 #include "libpspp/message.h"
30 #include "libpspp/string-map.h"
31 #include "output/chart-item.h"
32 #include "output/driver-provider.h"
33 #include "output/message-item.h"
34 #include "output/output-item.h"
35 #include "output/table-item.h"
36 #include "output/text-item.h"
37 #include "ui/gui/help-menu.h"
38 #include "ui/gui/builder-wrapper.h"
39 #include "ui/gui/psppire-output-view.h"
40 #include "ui/gui/psppire-conf.h"
41 #include "ui/gui/windows-menu.h"
43 #include "gl/xalloc.h"
48 #define _(msgid) gettext (msgid)
49 #define N_(msgid) msgid
51 static void psppire_output_window_class_init (PsppireOutputWindowClass *class);
52 static void psppire_output_window_init (PsppireOutputWindow *window);
55 psppire_output_window_get_type (void)
57 static GType psppire_output_window_type = 0;
59 if (!psppire_output_window_type)
61 static const GTypeInfo psppire_output_window_info =
63 sizeof (PsppireOutputWindowClass),
65 (GBaseFinalizeFunc) NULL,
66 (GClassInitFunc)psppire_output_window_class_init,
67 (GClassFinalizeFunc) NULL,
69 sizeof (PsppireOutputWindow),
71 (GInstanceInitFunc) psppire_output_window_init,
74 psppire_output_window_type =
75 g_type_register_static (PSPPIRE_TYPE_WINDOW, "PsppireOutputWindow",
76 &psppire_output_window_info, 0);
79 return psppire_output_window_type;
82 static GObjectClass *parent_class;
85 psppire_output_window_finalize (GObject *object)
87 if (G_OBJECT_CLASS (parent_class)->finalize)
88 (*G_OBJECT_CLASS (parent_class)->finalize) (object);
93 psppire_output_window_dispose (GObject *obj)
95 PsppireOutputWindow *window = PSPPIRE_OUTPUT_WINDOW (obj);
97 if (window->dispose_has_run)
100 window->dispose_has_run = TRUE;
101 psppire_output_view_destroy (window->view);
104 /* Chain up to the parent class */
105 G_OBJECT_CLASS (parent_class)->dispose (obj);
109 psppire_output_window_class_init (PsppireOutputWindowClass *class)
111 GObjectClass *object_class = G_OBJECT_CLASS (class);
113 parent_class = g_type_class_peek_parent (class);
114 object_class->dispose = psppire_output_window_dispose;
116 object_class->finalize = psppire_output_window_finalize;
119 /* Output driver class. */
121 struct psppire_output_driver
123 struct output_driver driver;
124 PsppireOutputWindow *window;
127 static struct output_driver_class psppire_output_class;
129 static struct psppire_output_driver *
130 psppire_output_cast (struct output_driver *driver)
132 assert (driver->class == &psppire_output_class);
133 return UP_CAST (driver, struct psppire_output_driver, driver);
137 psppire_output_submit (struct output_driver *this,
138 const struct output_item *item)
140 struct psppire_output_driver *pod = psppire_output_cast (this);
141 PsppireOutputWindow *window;
144 new = pod->window == NULL;
147 pod->window = PSPPIRE_OUTPUT_WINDOW (psppire_output_window_new ());
148 GApplication *app = g_application_get_default ();
149 gtk_application_add_window (GTK_APPLICATION (app),
150 GTK_WINDOW (pod->window));
152 pod->window->driver = pod;
154 window = pod->window;
156 psppire_output_view_put (window->view, item);
160 /* We could have called this earlier in the previous "if (new)" block,
161 but doing it here finds, in a plain GTK+ environment, a bug that
162 otherwise only showed up on an Ubuntu Unity desktop. See bug
164 gtk_widget_show_all (GTK_WIDGET (pod->window));
167 PsppireConf *conf = psppire_conf_new ();
169 gboolean status = true;
170 psppire_conf_get_boolean (conf, "OutputWindowAction", "alert",
172 gtk_window_set_urgency_hint (GTK_WINDOW (pod->window), status);
177 if (psppire_conf_get_boolean (conf, "OutputWindowAction", "maximize",
179 gtk_window_maximize (GTK_WINDOW (pod->window));
184 if (psppire_conf_get_boolean (conf, "OutputWindowAction", "raise",
186 gtk_window_present (GTK_WINDOW (pod->window));
190 static struct output_driver_class psppire_output_class =
192 "PSPPIRE", /* name */
194 psppire_output_submit, /* submit */
199 psppire_output_window_setup (void)
201 struct psppire_output_driver *pod;
202 struct output_driver *d;
204 pod = xzalloc (sizeof *pod);
206 output_driver_init (d, &psppire_output_class, "PSPPIRE",
207 SETTINGS_DEVICE_UNFILTERED);
208 output_driver_register (d);
213 /* Callback for the "delete" action (clicking the x on the top right
214 hand corner of the window) */
216 on_delete (GtkWidget *w, GdkEvent *event, gpointer user_data)
218 PsppireOutputWindow *ow = PSPPIRE_OUTPUT_WINDOW (user_data);
220 gtk_widget_destroy (GTK_WIDGET (ow));
222 ow->driver->window = NULL;
230 cancel_urgency (GtkWindow *window, gpointer data)
232 gtk_window_set_urgency_hint (window, FALSE);
235 static void psppire_output_window_print (PsppireOutputWindow *window);
239 export_output (PsppireOutputWindow *window, struct string_map *options,
242 string_map_insert (options, "format", format);
243 psppire_output_view_export (window->view, options);
267 #define N_EXTENSIONS (n_FT - 1)
269 struct file_types ft[n_FT] = {
270 {N_("Infer file type from extension"), NULL},
271 {N_("SPSS Viewer (*.spv)"), ".spv"},
272 {N_("PDF (*.pdf)"), ".pdf"},
273 {N_("HTML (*.html)"), ".html"},
274 {N_("OpenDocument (*.odt)"), ".odt"},
275 {N_("Text (*.txt)"), ".txt"},
276 {N_("Text [plain] (*.txt)"), ".txt"},
277 {N_("PostScript (*.ps)"), ".ps"},
278 {N_("Comma-Separated Values (*.csv)"), ".csv"}
283 on_combo_change (GtkFileChooser *chooser)
285 gboolean sensitive = FALSE;
286 GtkWidget *combo = gtk_file_chooser_get_extra_widget (chooser);
289 gchar *fn = gtk_file_chooser_get_filename (chooser);
291 if (combo && gtk_widget_get_realized (combo))
292 x = gtk_combo_box_get_active (GTK_COMBO_BOX (combo));
304 for (i = 1 ; i < N_EXTENSIONS ; ++i)
306 if (g_str_has_suffix (fn, ft[i].ext))
316 gtk_dialog_set_response_sensitive (GTK_DIALOG (chooser), GTK_RESPONSE_ACCEPT, sensitive);
321 on_file_chooser_change (GObject *w, GParamSpec *pspec, gpointer data)
324 GtkFileChooser *chooser = data;
325 const gchar *name = g_param_spec_get_name (pspec);
327 if (! gtk_widget_get_realized (GTK_WIDGET (chooser)))
330 /* Ignore this one. It causes recursion. */
331 if (0 == strcmp ("tooltip-text", name))
334 on_combo_change (chooser);
338 /* Recursively descend all the children of W, connecting
339 to their "notify" signal */
341 iterate_widgets (GtkWidget *w, gpointer data)
343 if (GTK_IS_CONTAINER (w))
344 gtk_container_forall (GTK_CONTAINER (w), iterate_widgets, data);
346 g_signal_connect (w, "notify", G_CALLBACK (on_file_chooser_change), data);
351 static GtkListStore *
352 create_file_type_list (void)
356 GtkListStore *list = gtk_list_store_new (2, G_TYPE_STRING, G_TYPE_STRING);
358 for (i = 0 ; i < n_FT ; ++i)
360 gtk_list_store_append (list, &iter);
361 gtk_list_store_set (list, &iter,
362 0, gettext (ft[i].label),
371 psppire_output_window_export (PsppireOutputWindow *window)
377 GtkFileChooser *chooser;
379 GtkWidget *dialog = gtk_file_chooser_dialog_new (_("Export Output"),
381 GTK_FILE_CHOOSER_ACTION_SAVE,
382 _("Cancel"), GTK_RESPONSE_CANCEL,
383 _("Save"), GTK_RESPONSE_ACCEPT,
386 g_object_set (dialog, "local-only", FALSE, NULL);
388 chooser = GTK_FILE_CHOOSER (dialog);
390 list = create_file_type_list ();
392 combo = gtk_combo_box_new_with_model (GTK_TREE_MODEL (list));
396 /* Create text cell renderer */
397 GtkCellRenderer *cell = gtk_cell_renderer_text_new();
398 gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (combo), cell, FALSE);
400 gtk_cell_layout_add_attribute (GTK_CELL_LAYOUT (combo), cell, "text", 0);
403 g_signal_connect_swapped (combo, "changed", G_CALLBACK (on_combo_change), chooser);
405 gtk_combo_box_set_active (GTK_COMBO_BOX (combo), 0);
407 gtk_file_chooser_set_extra_widget (chooser, combo);
409 /* This kludge is necessary because there is no signal to tell us
410 when the candidate filename of a GtkFileChooser has changed */
411 gtk_container_forall (GTK_CONTAINER (dialog), iterate_widgets, dialog);
414 gtk_file_chooser_set_do_overwrite_confirmation (chooser, TRUE);
416 response = gtk_dialog_run (GTK_DIALOG (dialog));
418 if (response == GTK_RESPONSE_ACCEPT)
420 gint file_type = gtk_combo_box_get_active (GTK_COMBO_BOX (combo));
421 gchar *filename = gtk_file_chooser_get_filename (chooser);
422 struct string_map options;
424 g_return_if_fail (filename);
426 if (file_type == FT_AUTO)
428 /* If the "Infer file type from extension" option was chosen,
429 search for the respective type in the list.
430 (It's a O(n) search, but fortunately n is small). */
432 for (i = 1 ; i < N_EXTENSIONS ; ++i)
434 if (g_str_has_suffix (filename, ft[i].ext))
441 else if (! g_str_has_suffix (filename, ft[file_type].ext))
443 /* If an explicit document format was chosen, and if the chosen
444 filename does not already have that particular "extension",
448 gchar *of = filename;
449 filename = g_strconcat (filename, ft[file_type].ext, NULL);
453 string_map_init (&options);
454 string_map_insert (&options, "output-file", filename);
459 export_output (window, &options, "spv");
462 export_output (window, &options, "pdf");
465 export_output (window, &options, "html");
468 export_output (window, &options, "odt");
471 export_output (window, &options, "ps");
474 export_output (window, &options, "csv");
478 string_map_insert (&options, "box", "unicode");
482 string_map_insert (&options, "charts", "none");
483 export_output (window, &options, "txt");
486 g_assert_not_reached ();
489 string_map_destroy (&options);
494 gtk_widget_destroy (dialog);
498 psppire_output_window_init (PsppireOutputWindow *window)
500 GtkBuilder *xml = builder_new ("output-window.ui");
501 GtkApplication *app = GTK_APPLICATION (g_application_get_default());
502 GtkWidget *box = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0);
503 gtk_container_add (GTK_CONTAINER (window), box);
505 GtkWidget *paned = get_widget_assert (xml, "paned1");
507 window->dispose_has_run = FALSE;
509 window->view = psppire_output_view_new (
510 GTK_LAYOUT (get_widget_assert (xml, "output")),
511 GTK_TREE_VIEW (get_widget_assert (xml, "overview")));
516 g_signal_connect (window,
518 G_CALLBACK (cancel_urgency),
521 GObject *menu = get_object_assert (xml, "output-window-menu", G_TYPE_MENU);
522 GtkWidget *menubar = gtk_menu_bar_new_from_model (G_MENU_MODEL (menu));
523 gtk_box_pack_start (GTK_BOX (box), menubar, FALSE, FALSE, 0);
524 gtk_box_pack_start (GTK_BOX (box), paned, TRUE, TRUE, 0);
526 gtk_menu_shell_append (GTK_MENU_SHELL (menubar),
527 create_windows_menu (GTK_WINDOW (window)));
529 gtk_menu_shell_append (GTK_MENU_SHELL (menubar),
530 create_help_menu (GTK_WINDOW (window)));
533 GSimpleAction *print = g_simple_action_new ("print", NULL);
534 g_signal_connect_swapped (print, "activate", G_CALLBACK (psppire_output_window_print), window);
535 g_action_map_add_action (G_ACTION_MAP (window), G_ACTION (print));
538 const gchar *accels[2] = { "<Ctrl>P", NULL};
539 gtk_application_set_accels_for_action (app,
546 GSimpleAction *export = g_simple_action_new ("export", NULL);
547 g_signal_connect_swapped (export, "activate", G_CALLBACK (psppire_output_window_export), window);
548 g_action_map_add_action (G_ACTION_MAP (window), G_ACTION (export));
552 GSimpleAction *select_all = g_simple_action_new ("select-all", NULL);
553 g_action_map_add_action (G_ACTION_MAP (window), G_ACTION (select_all));
557 GSimpleAction *copy = g_simple_action_new ("copy", NULL);
558 g_action_map_add_action (G_ACTION_MAP (window), G_ACTION (copy));
560 const gchar *accels[2] = { "<Ctrl>C", NULL};
561 gtk_application_set_accels_for_action (app,
567 g_object_unref (xml);
569 g_signal_connect (window, "delete-event",
570 G_CALLBACK (on_delete), window);
575 psppire_output_window_new (void)
577 return GTK_WIDGET (g_object_new (psppire_output_window_get_type (),
578 /* TRANSLATORS: This will be part of a filename. Please avoid whitespace. */
579 "filename", _("Output"),
580 "description", _("Output Viewer"),
585 psppire_output_window_print (PsppireOutputWindow *window)
587 psppire_output_view_print (window->view, GTK_WINDOW (window));