From 62a2dc7c2e5c5a11184ac23fc626aa22f499ab03 Mon Sep 17 00:00:00 2001 From: Jason Leach Date: Fri, 19 Jan 2001 15:58:02 +0000 Subject: (Adding a boolean "entry_changed" BonoboPropertyBag arg) 2001-01-19 Jason Leach (Adding a boolean "entry_changed" BonoboPropertyBag arg) * gui/component/select-names/e-select-names-bonobo.c (entry_set_property_fn): Use a gtk_object_set_data to set the property to TRUE here. (entry_changed): New function, calls bonobo_control_set_property if entry_changed hasn't been set to TRUE yet. (impl_SelectNames_get_entry_for_section): Connect "changed" on each entry_widget to the new entry_changed() func. 2001-01-19 Jason Leach * e-msg-composer-hdrs.c (create_addressbook_entry): Listen for property bag changes to "entry_changed" on here, which means on the To, Cc, and Bcc entries. (addressbook_entry_changed): New function that gets called when "entry_changed" property is changed (to TRUE). svn path=/trunk/; revision=7649 --- composer/ChangeLog | 8 ++++++++ composer/e-msg-composer-hdrs.c | 23 ++++++++++++++++++++++- 2 files changed, 30 insertions(+), 1 deletion(-) (limited to 'composer') diff --git a/composer/ChangeLog b/composer/ChangeLog index cff16bc2d7..b2492fd67c 100644 --- a/composer/ChangeLog +++ b/composer/ChangeLog @@ -1,3 +1,11 @@ +2001-01-19 Jason Leach + + * e-msg-composer-hdrs.c (create_addressbook_entry): Listen for + property bag changes to "entry_changed" on here, which means on + the To, Cc, and Bcc entries. + (addressbook_entry_changed): New function that gets called when + "entry_changed" property is changed (to TRUE). + 2001-01-18 Jeffrey Stedfast * e-msg-composer.c (build_message): Updated to reflect changes to diff --git a/composer/e-msg-composer-hdrs.c b/composer/e-msg-composer-hdrs.c index af22dcf611..834d63214a 100644 --- a/composer/e-msg-composer-hdrs.c +++ b/composer/e-msg-composer-hdrs.c @@ -191,6 +191,18 @@ create_optionmenu (EMsgComposerHdrs *hdrs, return omenu; } +static void +addressbook_entry_changed (BonoboListener *listener, + char *event_name, + CORBA_any *arg, + CORBA_Environment *ev, + gpointer user_data) +{ + EMsgComposerHdrs *hdrs = E_MSG_COMPOSER_HDRS (user_data); + + hdrs->has_changed = TRUE; +} + static GtkWidget * create_addressbook_entry (EMsgComposerHdrs *hdrs, const char *name) @@ -200,6 +212,8 @@ create_addressbook_entry (EMsgComposerHdrs *hdrs, Bonobo_Control corba_control; GtkWidget *control_widget; CORBA_Environment ev; + BonoboControlFrame *cf; + Bonobo_PropertyBag pb = CORBA_OBJECT_NIL; priv = hdrs->priv; corba_select_names = priv->corba_select_names; @@ -223,6 +237,13 @@ create_addressbook_entry (EMsgComposerHdrs *hdrs, control_widget = bonobo_widget_new_control_from_objref (corba_control, CORBA_OBJECT_NIL); + cf = bonobo_widget_get_control_frame (BONOBO_WIDGET (control_widget)); + pb = bonobo_control_frame_get_control_property_bag (cf, NULL); + + bonobo_event_source_client_add_listener (pb, addressbook_entry_changed, + "Bonobo/Property:change:entry_changed", + NULL, hdrs); + return control_widget; } @@ -232,7 +253,7 @@ entry_changed (GtkWidget *entry, EMsgComposerHdrs *hdrs) gchar *tmp; gchar *subject; - /* Mark the headers as changed */ + /* Mark the composer as changed so it prompts to save on close */ hdrs->has_changed = TRUE; tmp = e_msg_composer_hdrs_get_subject (hdrs); -- cgit v1.2.3