diff options
author | Larry Ewing <lewing@ximian.com> | 2004-06-02 14:23:27 +0800 |
---|---|---|
committer | Larry Ewing <lewing@src.gnome.org> | 2004-06-02 14:23:27 +0800 |
commit | 55e7f9a951704df272a3c56468be510cf0482e48 (patch) | |
tree | ce39e1492731ced3022f18ba2e5846190e3ac4e5 /addressbook/gui/contact-list-editor/e-contact-list-editor.h | |
parent | b3a61aaf1f5b61add460daef51b806957568a9bd (diff) | |
download | gsoc2013-evolution-55e7f9a951704df272a3c56468be510cf0482e48.tar.gz gsoc2013-evolution-55e7f9a951704df272a3c56468be510cf0482e48.tar.zst gsoc2013-evolution-55e7f9a951704df272a3c56468be510cf0482e48.zip |
Add in a source option menu to the dialog and make is sensitive only on
2004-06-01 Larry Ewing <lewing@ximian.com>
* gui/contact-list-editor/e-contact-list-editor.c: Add in a source
option menu to the dialog and make is sensitive only on new lists.
* gui/contact-list-editor/e-contact-list-editor.h: add load_book
fields for async book loading.
* gui/contact-list-editor/contact-list-editor.glade: add the new
source selector in a table reorder some of the other widgets.
svn path=/trunk/; revision=26150
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 | 6 |
1 files changed, 6 insertions, 0 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 3272cf39f0..601cb23fe2 100644 --- a/addressbook/gui/contact-list-editor/e-contact-list-editor.h +++ b/addressbook/gui/contact-list-editor/e-contact-list-editor.h @@ -49,6 +49,7 @@ struct _EContactListEditor /* item specific fields */ EBook *book; + EContact *contact; /* UI handler */ @@ -66,6 +67,7 @@ struct _EContactListEditor GtkWidget *list_image_button; GtkWidget *visible_addrs_checkbutton; GtkWidget *list_image; + GtkWidget *source_menu; /* Whether we are editing a new contact or an existing one */ guint is_new_list : 1; @@ -81,6 +83,10 @@ struct _EContactListEditor /* Whether an async wombat call is in progress */ guint in_async_call : 1; + + /* ID for async load_source call */ + guint load_source_id; + EBook *load_book; }; struct _EContactListEditorClass |