diff options
author | JP Rosevear <jpr@ximian.com> | 2002-05-27 00:21:28 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2002-05-27 00:21:28 +0800 |
commit | fb1d17d150cb5178ca1d63431958d3df9dfc60b3 (patch) | |
tree | 5c17aae3a1d8b6a5d52909a30bcc5391c03f465f /calendar/gui/component-factory.c | |
parent | e6298a6cd5faa861d4185c1399fe627e6d70d8f8 (diff) | |
download | gsoc2013-evolution-fb1d17d150cb5178ca1d63431958d3df9dfc60b3.tar.gz gsoc2013-evolution-fb1d17d150cb5178ca1d63431958d3df9dfc60b3.tar.zst gsoc2013-evolution-fb1d17d150cb5178ca1d63431958d3df9dfc60b3.zip |
a registry of comp editors so we can close them all centrally
2002-05-26 JP Rosevear <jpr@ximian.com>
* gui/e-comp-editor-registry.[hc]: a registry of comp editors so
we can close them all centrally
* gui/gnome-cal.c (gnome_calendar_init): there is no editor hash
now
(gnome_calendar_destroy): ditto
(gnome_calendar_edit_object): look for the event editor in the
registry, if it isn't there, create it and add it to the registry
* gui/e-calendar-table.c (open_task): look for the task editor in
the registry, if it isn't there, create it and add it to the
registry
* gui/component-factory.c (request_quit): close all open editors
(create_object): add a request_quit function to the shell
component
* gui/comp-editor-factory.c (free_client): there is no
uid_comp_hash to free any more
(editor_destroy_cb): we get an OpenClient as callback data now,
reduce the editor count and destroy it if it is 0
(edit_existing): don't create the Component, add the new editor to
the registry, increase the editor count
(edit_new): ditto
(open_client): set the editor count to 0
(impl_editExisting): look in the registry for the editor
* gui/Makefile.am: Build new sources
* gui/main.c (main): create the registry
* gui/dialogs/comp-editor.c (comp_editor_close): prompt to save
and then close dialog
* gui/dialogs/comp-editor.h: new proto
* gui/GNOME_Evolution_Calendar.oaf.in: remove dead summary stuff
svn path=/trunk/; revision=17018
Diffstat (limited to 'calendar/gui/component-factory.c')
-rw-r--r-- | calendar/gui/component-factory.c | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/calendar/gui/component-factory.c b/calendar/gui/component-factory.c index 355da4c387..f1d09b90ed 100644 --- a/calendar/gui/component-factory.c +++ b/calendar/gui/component-factory.c @@ -42,7 +42,8 @@ #include "calendar-config.h" #include "tasks-control.h" #include "tasks-migrate.h" - +#include "e-comp-editor-registry.h" +#include "dialogs/comp-editor.h" /* OAFIID for the component. */ @@ -60,6 +61,7 @@ char *evolution_dir; EvolutionShellClient *global_shell_client = NULL; +extern ECompEditorRegistry *comp_editor_registry; static const EvolutionShellComponentFolderType folder_types[] = { { FOLDER_CALENDAR, @@ -467,6 +469,14 @@ xfer_folder (EvolutionShellComponent *shell_component, CORBA_exception_free (&ev); } +static gboolean +request_quit (EvolutionShellComponent *shell_component, void *closure) +{ + e_comp_editor_registry_close_all (comp_editor_registry); + + return TRUE; +} + static GList *shells = NULL; static void @@ -677,7 +687,7 @@ create_object (void) xfer_folder, NULL, /* populate_folder_context_menu_fn */ NULL, /* get_dnd_selection_fn */ - NULL, /* request_quit */ + request_quit, NULL /* closure */); /* Offline handler */ |