1 /* PSPPIRE - a graphical user interface for PSPP.
2 Copyright (C) 2009, 2010 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/>. */
20 #include <gtk/gtkstock.h>
21 #include <gtk/gtkmessagedialog.h>
22 #include <gtk/gtksignal.h>
23 #include <gtk/gtkwindow.h>
24 #include <gtk/gtkcheckmenuitem.h>
25 #include <gtk/gtkmain.h>
31 #define _(msgid) gettext (msgid)
32 #define N_(msgid) msgid
34 #include "psppire-window.h"
35 #include "psppire-window-register.h"
36 #include "psppire-conf.h"
38 static void psppire_window_base_finalize (PsppireWindowClass *, gpointer);
39 static void psppire_window_base_init (PsppireWindowClass *class);
40 static void psppire_window_class_init (PsppireWindowClass *class);
41 static void psppire_window_init (PsppireWindow *window);
44 static GObjectClass *parent_class;
47 psppire_window_get_type (void)
49 static GType psppire_window_type = 0;
51 if (!psppire_window_type)
53 static const GTypeInfo psppire_window_info =
55 sizeof (PsppireWindowClass),
56 (GBaseInitFunc) psppire_window_base_init,
57 (GBaseFinalizeFunc) psppire_window_base_finalize,
58 (GClassInitFunc) psppire_window_class_init,
59 (GClassFinalizeFunc) NULL,
61 sizeof (PsppireWindow),
63 (GInstanceInitFunc) psppire_window_init,
67 g_type_register_static (GTK_TYPE_WINDOW, "PsppireWindow",
68 &psppire_window_info, G_TYPE_FLAG_ABSTRACT);
71 return psppire_window_type;
85 uniquify (const gchar *str, int *x)
87 return g_strdup_printf ("%s%d", str, (*x)++);
90 static gchar mdash[6] = {0,0,0,0,0,0};
93 psppire_window_set_title (PsppireWindow *window)
95 GString *title = g_string_sized_new (80);
97 g_string_printf (title, _("%s %s PSPPIRE %s"),
98 window->basename ? window->basename : "",
99 mdash, window->description);
102 g_string_prepend_c (title, '*');
104 gtk_window_set_title (GTK_WINDOW (window), title->str);
106 g_string_free (title, TRUE);
110 psppire_window_set_property (GObject *object,
115 PsppireWindow *window = PSPPIRE_WINDOW (object);
119 case PROP_DESCRIPTION:
120 window->description = g_value_dup_string (value);
121 psppire_window_set_title (window);
125 PsppireWindowRegister *reg = psppire_window_register_new ();
127 gchar *candidate_name ;
130 const gchar *name = g_value_get_string (value);
133 g_value_init (&def, pspec->value_type);
137 g_param_value_set_default (pspec, &def);
138 name = g_value_get_string (&def);
141 candidate_name = xstrdup (name);
143 while ( psppire_window_register_lookup (reg, candidate_name))
145 free (candidate_name);
146 candidate_name = uniquify (name, &x);
149 window->basename = g_filename_display_basename (candidate_name);
151 g_value_unset (&def);
154 psppire_window_set_title (window);
157 psppire_window_register_remove (reg, window->name);
160 window->name = candidate_name;
162 psppire_window_register_insert (reg, window, window->name);
166 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
173 psppire_window_get_property (GObject *object,
178 PsppireWindow *window = PSPPIRE_WINDOW (object);
183 g_value_set_string (value, window->name);
185 case PROP_DESCRIPTION:
186 g_value_set_string (value, window->description);
189 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
196 on_realize (GtkWindow *window, gpointer data)
198 PsppireConf *conf = psppire_conf_new ();
200 const gchar *base = G_OBJECT_TYPE_NAME (window);
202 psppire_conf_set_window_geometry (conf, base, window);
207 psppire_window_finalize (GObject *object)
209 PsppireWindow *window = PSPPIRE_WINDOW (object);
211 PsppireWindowRegister *reg = psppire_window_register_new ();
213 psppire_window_register_remove (reg, window->name);
215 free (window->description);
217 g_signal_handler_disconnect (psppire_window_register_new (),
218 window->remove_handler);
220 g_signal_handler_disconnect (psppire_window_register_new (),
221 window->insert_handler);
223 g_hash_table_destroy (window->menuitem_table);
225 if (G_OBJECT_CLASS (parent_class)->finalize)
226 G_OBJECT_CLASS (parent_class)->finalize (object);
231 psppire_window_class_init (PsppireWindowClass *class)
233 GObjectClass *object_class = G_OBJECT_CLASS (class);
235 GParamSpec *description_spec =
236 g_param_spec_string ("description",
238 "A string describing the usage of the window",
239 "??????", /*Should be overridden by derived classes */
240 G_PARAM_CONSTRUCT_ONLY | G_PARAM_READWRITE);
242 GParamSpec *filename_spec =
243 g_param_spec_string ("filename",
245 "The name of the file associated with this window, if any",
247 G_PARAM_CONSTRUCT | G_PARAM_READWRITE);
249 g_unichar_to_utf8 (0x2014, mdash);
251 object_class->set_property = psppire_window_set_property;
252 object_class->get_property = psppire_window_get_property;
254 g_object_class_install_property (object_class,
258 g_object_class_install_property (object_class,
262 parent_class = g_type_class_peek_parent (class);
267 psppire_window_base_init (PsppireWindowClass *class)
269 GObjectClass *object_class = G_OBJECT_CLASS (class);
271 object_class->finalize = psppire_window_finalize;
277 psppire_window_base_finalize (PsppireWindowClass *class,
283 menu_toggled (GtkCheckMenuItem *mi, gpointer data)
285 /* Prohibit changes to the state */
286 mi->active = !mi->active;
290 /* Look up the window associated with this menuitem and present it to the user */
292 menu_activate (GtkMenuItem *mi, gpointer data)
294 const gchar *key = data;
296 PsppireWindowRegister *reg = psppire_window_register_new ();
298 PsppireWindow *window = psppire_window_register_lookup (reg, key);
300 gtk_window_present (GTK_WINDOW (window));
304 insert_menuitem_into_menu (PsppireWindow *window, gpointer key)
306 gchar *filename = g_filename_display_name (key);
307 GtkWidget *item = gtk_check_menu_item_new_with_label (filename);
311 g_signal_connect (item, "toggled", G_CALLBACK (menu_toggled), NULL);
312 g_signal_connect (item, "activate", G_CALLBACK (menu_activate), key);
314 gtk_widget_show (item);
316 gtk_menu_shell_append (window->menu, item);
318 /* Set the state without emitting a signal */
319 GTK_CHECK_MENU_ITEM (item)->active =
320 (psppire_window_register_lookup (psppire_window_register_new (), key) == window);
322 g_hash_table_insert (window->menuitem_table, key, item);
326 insert_item (gpointer key, gpointer value, gpointer data)
328 PsppireWindow *window = PSPPIRE_WINDOW (data);
330 if ( NULL != g_hash_table_lookup (window->menuitem_table, key))
333 insert_menuitem_into_menu (window, key);
336 /* Insert a new item into the window menu */
338 insert_menuitem (GObject *reg, const gchar *key, gpointer data)
340 PsppireWindow *window = PSPPIRE_WINDOW (data);
342 insert_menuitem_into_menu (window, (gpointer) key);
347 remove_menuitem (PsppireWindowRegister *reg, const gchar *key, gpointer data)
349 PsppireWindow *window = PSPPIRE_WINDOW (data);
352 item = g_hash_table_lookup (window->menuitem_table, key);
354 g_hash_table_remove (window->menuitem_table, key);
356 if (GTK_IS_CONTAINER (window->menu))
357 gtk_container_remove (GTK_CONTAINER (window->menu), item);
361 insert_existing_items (PsppireWindow *window)
363 psppire_window_register_foreach (psppire_window_register_new (), insert_item, window);
368 on_delete (PsppireWindow *w, GdkEvent *event, gpointer user_data)
370 PsppireWindowRegister *reg = psppire_window_register_new ();
372 const gchar *base = G_OBJECT_TYPE_NAME (w);
374 PsppireConf *conf = psppire_conf_new ();
376 psppire_conf_save_window_geometry (conf, base, GTK_WINDOW (w));
381 gint response = psppire_window_query_save (w);
386 case GTK_RESPONSE_CANCEL:
389 case GTK_RESPONSE_APPLY:
390 psppire_window_save (w);
392 case GTK_RESPONSE_REJECT:
397 if ( 1 == psppire_window_register_n_items (reg))
405 psppire_window_init (PsppireWindow *window)
409 window->description = xstrdup ("");
411 window->menuitem_table = g_hash_table_new (g_str_hash, g_str_equal);
414 g_signal_connect (window, "realize", G_CALLBACK (insert_existing_items), NULL);
416 window->insert_handler = g_signal_connect (psppire_window_register_new (),
418 G_CALLBACK (insert_menuitem),
421 window->remove_handler = g_signal_connect (psppire_window_register_new (),
423 G_CALLBACK (remove_menuitem),
426 window->dirty = FALSE;
428 g_signal_connect_swapped (window, "delete-event", G_CALLBACK (on_delete), window);
430 g_object_set (window, "icon-name", "psppicon", NULL);
432 g_signal_connect (window, "realize",
433 G_CALLBACK (on_realize), window);
438 Ask the user if the buffer should be saved.
442 psppire_window_query_save (PsppireWindow *se)
447 GtkWidget *cancel_button;
449 const gchar *description;
450 const gchar *filename = psppire_window_get_filename (se);
454 g_get_current_time (&time);
456 g_object_get (se, "description", &description, NULL);
458 g_return_val_if_fail (filename != NULL, GTK_RESPONSE_NONE);
461 fn = g_filename_display_basename (filename);
464 gtk_message_dialog_new (GTK_WINDOW (se),
468 _("Save the changes to \"%s\" before closing?"),
472 g_object_set (dialog, "icon-name", "psppicon", NULL);
474 gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog),
475 _("If you don't save, changes from the last %ld seconds will be permanently lost."),
476 time.tv_sec - se->savetime.tv_sec);
478 gtk_dialog_add_button (GTK_DIALOG (dialog),
479 _("Close _without saving"),
480 GTK_RESPONSE_REJECT);
482 cancel_button = gtk_dialog_add_button (GTK_DIALOG (dialog),
484 GTK_RESPONSE_CANCEL);
486 gtk_dialog_add_button (GTK_DIALOG (dialog),
490 gtk_widget_grab_focus (cancel_button);
492 response = gtk_dialog_run (GTK_DIALOG (dialog));
494 gtk_widget_destroy (dialog);
502 psppire_window_get_filename (PsppireWindow *w)
504 const gchar *name = NULL;
505 g_object_get (w, "filename", &name, NULL);
511 psppire_window_set_filename (PsppireWindow *w, const gchar *filename)
513 g_object_set (w, "filename", filename, NULL);
517 psppire_window_set_unsaved (PsppireWindow *w)
519 if ( w->dirty == FALSE)
520 g_get_current_time (&w->savetime);
524 psppire_window_set_title (w);
528 psppire_window_get_unsaved (PsppireWindow *w)
538 minimise_window (gpointer key, gpointer value, gpointer data)
540 gtk_window_iconify (GTK_WINDOW (value));
545 psppire_window_minimise_all (void)
547 PsppireWindowRegister *reg = psppire_window_register_new ();
549 g_hash_table_foreach (reg->name_table, minimise_window, NULL);
556 psppire_window_model_get_type (void)
558 static GType window_model_type = 0;
560 if (! window_model_type)
562 static const GTypeInfo window_model_info =
564 sizeof (PsppireWindowIface), /* class_size */
565 NULL, /* base_init */
566 NULL, /* base_finalize */
568 NULL, /* class_finalize */
569 NULL, /* class_data */
576 g_type_register_static (G_TYPE_INTERFACE, "PsppireWindowModel",
577 &window_model_info, 0);
579 g_type_interface_add_prerequisite (window_model_type, G_TYPE_OBJECT);
582 return window_model_type;
587 psppire_window_save (PsppireWindow *w)
589 PsppireWindowIface *i = PSPPIRE_WINDOW_MODEL_GET_IFACE (w);
591 g_assert (PSPPIRE_IS_WINDOW_MODEL (w));
595 g_return_if_fail (i->save);
600 psppire_window_set_title (w);
603 extern GtkRecentManager *the_recent_mgr;
605 static void add_most_recent (const char *file_name, GtkRecentManager *rm);
606 static void delete_recent (const char *file_name, GtkRecentManager *rm);
609 psppire_window_load (PsppireWindow *w, const gchar *file)
612 PsppireWindowIface *i = PSPPIRE_WINDOW_MODEL_GET_IFACE (w);
614 g_assert (PSPPIRE_IS_WINDOW_MODEL (w));
618 g_return_val_if_fail (i->load, FALSE);
620 ok = i->load (w, file);
624 psppire_window_set_filename (w, file);
625 add_most_recent (file, the_recent_mgr);
629 delete_recent (file, the_recent_mgr);
631 psppire_window_set_title (w);
637 /* Puts FILE_NAME into the recent list.
638 If it's already in the list, it moves it to the top
641 add_most_recent (const char *file_name, GtkRecentManager *rm)
643 gchar *uri = g_filename_to_uri (file_name, NULL, NULL);
646 gtk_recent_manager_add_item (rm, uri);
654 If FILE_NAME exists in the recent list, then delete it.
657 delete_recent (const char *file_name, GtkRecentManager *rm)
659 gchar *uri = g_filename_to_uri (file_name, NULL, NULL);
662 gtk_recent_manager_remove_item (rm, uri, NULL);