diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2002-05-17 02:48:59 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2002-05-17 02:48:59 +0800 |
commit | 073927075b22b5a2988e299e91d2ccb7ec58c1c8 (patch) | |
tree | bca81ff15073987dcff9ddf5cf19377a22a05ba4 /addressbook/gui/contact-list-editor/e-contact-list-editor.h | |
parent | 3a868a57bb55512cf7315b3178d9557d6350be32 (diff) | |
download | gsoc2013-evolution-073927075b22b5a2988e299e91d2ccb7ec58c1c8.tar.gz gsoc2013-evolution-073927075b22b5a2988e299e91d2ccb7ec58c1c8.tar.zst gsoc2013-evolution-073927075b22b5a2988e299e91d2ccb7ec58c1c8.zip |
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
Diffstat (limited to 'addressbook/gui/contact-list-editor/e-contact-list-editor.h')
-rw-r--r-- | addressbook/gui/contact-list-editor/e-contact-list-editor.h | 20 |
1 files changed, 11 insertions, 9 deletions
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 } |