From be19c59c2e0f254538f72ba136d7524d8619045a Mon Sep 17 00:00:00 2001 From: Chris Toshok Date: Wed, 23 May 2001 09:19:07 +0000 Subject: add sequence_complete_id to EAddressbookModel and stop_state_changed to 2001-05-23 Chris Toshok * gui/widgets/e-addressbook-model.h: add sequence_complete_id to EAddressbookModel and stop_state_changed to EAddressbookModelClass. also, add prototype for e_addressbook_model_can_stop. * gui/widgets/e-addressbook-model.c (remove_book_view): disconnect from "sequence_complete", and set search_in_progress to FALSE. (sequence_complete): set search_in_progress to FALSE and emit "stop_state_changed." (e_addressbook_model_class_init): create the "stop_state_changed" signal. (e_addressbook_model_init): init stuff. (book_view_loaded): connect to "sequence_complete" signal. (book_view_loaded): set search_in_progress to TRUE and emit "stop_state_changed" (e_addressbook_model_stop): set search_in_progress to false, emit "stop_state_changed", and set our status to "Search Interrupted." (e_addressbook_model_can_stop): return search_in_progress. * gui/widgets/e-addressbook-view.c (e_addressbook_view_init): connect to the stop_state_changed signal on EAddressbookModel. (stop_state_changed): new function. (e_addressbook_view_can_stop): call e_addressbook_model_can_stop. * gui/component/addressbook.c (update_command_state): use e_addressbook_view_can_stop to set the sensitivity of the stop button. svn path=/trunk/; revision=9940 --- addressbook/gui/widgets/e-addressbook-model.h | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) (limited to 'addressbook/gui/widgets/e-addressbook-model.h') diff --git a/addressbook/gui/widgets/e-addressbook-model.h b/addressbook/gui/widgets/e-addressbook-model.h index 5443e2dbfb..d6d605efe5 100644 --- a/addressbook/gui/widgets/e-addressbook-model.h +++ b/addressbook/gui/widgets/e-addressbook-model.h @@ -29,8 +29,9 @@ struct _EAddressbookModel { int data_count; int allocated_count; - int create_card_id, remove_card_id, modify_card_id, status_message_id, writable_status_id; + int create_card_id, remove_card_id, modify_card_id, status_message_id, writable_status_id, sequence_complete_id; + guint search_in_progress : 1; guint editable : 1; guint first_get_view : 1; }; @@ -42,12 +43,13 @@ struct _EAddressbookModelClass { /* * Signals */ - void (*writable_status) (EAddressbookModel *model, gboolean writable); - void (*status_message) (EAddressbookModel *model, const gchar *message); - void (*card_added) (EAddressbookModel *model, gint index, gint count); - void (*card_removed) (EAddressbookModel *model, gint index); - void (*card_changed) (EAddressbookModel *model, gint index); - void (*model_changed) (EAddressbookModel *model); + void (*writable_status) (EAddressbookModel *model, gboolean writable); + void (*status_message) (EAddressbookModel *model, const gchar *message); + void (*card_added) (EAddressbookModel *model, gint index, gint count); + void (*card_removed) (EAddressbookModel *model, gint index); + void (*card_changed) (EAddressbookModel *model, gint index); + void (*model_changed) (EAddressbookModel *model); + void (*stop_state_changed) (EAddressbookModel *model); }; @@ -59,8 +61,8 @@ ECard *e_addressbook_model_get_card (EAddressbookModel *model, int row); EBook *e_addressbook_model_get_ebook (EAddressbookModel *model); -void e_addressbook_model_stop (EAddressbookModel *model); - +void e_addressbook_model_stop (EAddressbookModel *model); +gboolean e_addressbook_model_can_stop (EAddressbookModel *model); int e_addressbook_model_card_count (EAddressbookModel *model); ECard *e_addressbook_model_card_at (EAddressbookModel *model, int index); -- cgit v1.2.3