From 073927075b22b5a2988e299e91d2ccb7ec58c1c8 Mon Sep 17 00:00:00 2001 From: Ettore Perazzoli Date: Thu, 16 May 2002 18:48:59 +0000 Subject: New, quit handler for the EvolutionShellComponent. (add_creatable_item): * gui/component/addressbook-component.c (request_quit): New, quit handler for the EvolutionShellComponent. (add_creatable_item): Set it up. * gui/contact-editor/e-contact-list-editor.c (e_contact_list_editor_request_close_all): New. (e_contact_list_editor_new): Put the contact editor in a static list and gtk_object_weakref() it. (contact_list_editor_destroy_notify): New, GtkDestroyNotify function for the contact editors. * gui/contact-editor/e-contact-editor.c (e_contact_editor_request_close_all): New. (e_contact_editor_new): Put the contact editor in a static list and gtk_object_weakref() it. (contact_editor_destroy_notify): New, GtkDestroyNotify function for the contact editors. svn path=/trunk/; revision=16934 --- .../contact-list-editor/e-contact-list-editor.c | 37 ++++++++++++++++++++++ .../contact-list-editor/e-contact-list-editor.h | 20 ++++++------ 2 files changed, 48 insertions(+), 9 deletions(-) (limited to 'addressbook/gui/contact-list-editor') diff --git a/addressbook/gui/contact-list-editor/e-contact-list-editor.c b/addressbook/gui/contact-list-editor/e-contact-list-editor.c index c88af3005e..abb08d30f8 100644 --- a/addressbook/gui/contact-list-editor/e-contact-list-editor.c +++ b/addressbook/gui/contact-list-editor/e-contact-list-editor.c @@ -97,6 +97,8 @@ enum { ARG_EDITABLE }; +static GSList *all_contact_list_editors = NULL; + GtkType e_contact_list_editor_get_type (void) { @@ -538,6 +540,14 @@ create_ui (EContactListEditor *ce) e_pixmaps_update (ce->uic, pixmaps); } +static void +contact_list_editor_destroy_notify (void *data) +{ + EContactListEditor *ce = E_CONTACT_LIST_EDITOR (data); + + all_contact_list_editors = g_slist_remove (all_contact_list_editors, ce); +} + EContactListEditor * e_contact_list_editor_new (EBook *book, ECard *list_card, @@ -548,6 +558,9 @@ e_contact_list_editor_new (EBook *book, ce = E_CONTACT_LIST_EDITOR (gtk_type_new (E_CONTACT_LIST_EDITOR_TYPE)); + all_contact_list_editors = g_slist_prepend (all_contact_list_editors, ce); + gtk_object_weakref (GTK_OBJECT (ce), contact_list_editor_destroy_notify, ce); + gtk_object_set (GTK_OBJECT (ce), "book", book, "card", list_card, @@ -978,3 +991,27 @@ fill_in_info(EContactListEditor *editor) } } } + + +gboolean +e_contact_list_editor_request_close_all (void) +{ + GSList *p; + GSList *pnext; + gboolean retval; + + retval = TRUE; + for (p = all_contact_list_editors; p != NULL; p = pnext) { + pnext = p->next; + + e_contact_list_editor_raise (E_CONTACT_LIST_EDITOR (p->data)); + if (! prompt_to_save_changes (E_CONTACT_LIST_EDITOR (p->data))) { + retval = FALSE; + break; + } + + close_dialog (E_CONTACT_LIST_EDITOR (p->data)); + } + + return retval; +} diff --git a/addressbook/gui/contact-list-editor/e-contact-list-editor.h b/addressbook/gui/contact-list-editor/e-contact-list-editor.h index 37f54df170..a091c6c680 100644 --- a/addressbook/gui/contact-list-editor/e-contact-list-editor.h +++ b/addressbook/gui/contact-list-editor/e-contact-list-editor.h @@ -92,15 +92,17 @@ struct _EContactListEditorClass void (* editor_closed) (EContactListEditor *cle); }; -EContactListEditor *e_contact_list_editor_new (EBook *book, - ECard *list_card, - gboolean is_new_list, - gboolean editable); -GtkType e_contact_list_editor_get_type (void); -void e_contact_list_editor_show (EContactListEditor *editor); -void e_contact_list_editor_raise (EContactListEditor *editor); - -gboolean e_contact_list_editor_confirm_delete (GtkWindow *parent); +EContactListEditor *e_contact_list_editor_new (EBook *book, + ECard *list_card, + gboolean is_new_list, + gboolean editable); +GtkType e_contact_list_editor_get_type (void); +void e_contact_list_editor_show (EContactListEditor *editor); +void e_contact_list_editor_raise (EContactListEditor *editor); + +gboolean e_contact_list_editor_confirm_delete (GtkWindow *parent); + +gboolean e_contact_list_editor_request_close_all (void); #ifdef __cplusplus } -- cgit v1.2.3