From d2fe58c56857e9e4b2e37f87174da6956b0d985c Mon Sep 17 00:00:00 2001 From: Federico Mena Quintero Date: Sat, 12 Feb 2000 02:03:58 +0000 Subject: Implemented. 2000-02-11 Federico Mena Quintero * cal-client.c (cal_client_update_object): Implemented. * cal.c (cal_notify_update): New function to notify the listener about an updated object. (Cal_update_object): Implemented. (Cal_get_uids): set_release() the sequence to TRUE. (Cal_get_events_in_range): Likewise. * cal-backend.c (remove_object): New function to remove objects from a calendar backend. (cal_backend_update_object): New public function to update an object and notify clients about it. * evolution-calendar.idl (Cal): Added update_object() and delete_object() methods. (Listener): Removed the obj_changed method and renamed obj_added to obj_updated. We now only have updated and removed notifiers. * cal-listener.[ch]: Removed the "changed" notification code. Changed the "added" notification code to the "updated" notification. * cal-client.c: Likewise. * tlacuache.c (create_cal_factory): Connect to "destroy" on the factory and exit the main loop when the factory is destroyed. * cal-factory.c (backend_destroy_cb): New callback used when a backend is destroyed. Removes the backend from the factory's hash table and unrefs the factory if all backends go away. (add_calendar_client): Free the environment. * cal.c (cal_new): Use bonobo_object_unref() if we fail to initialize. * cal-listener.c (cal_listener_new): Likewise. * layout.c (layout_events): Plug li.partition memory leak. svn path=/trunk/; revision=1742 --- calendar/tl-test.c | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) (limited to 'calendar/tl-test.c') diff --git a/calendar/tl-test.c b/calendar/tl-test.c index bebaa42d87..d2374db275 100644 --- a/calendar/tl-test.c +++ b/calendar/tl-test.c @@ -57,13 +57,15 @@ list_uids (gpointer data) printf ("------------------------------\n%s", calobj); printf ("------------------------------\n"); + cal_client_update_object (client, uid, calobj); + g_free (calobj); } } cal_obj_uid_list_free (uids); - gtk_object_unref (GTK_OBJECT (client)); +/* gtk_object_unref (GTK_OBJECT (client)); */ return FALSE; } @@ -84,6 +86,13 @@ cal_loaded (CalClient *client, CalClientLoadStatus status, gpointer data) gtk_object_unref (GTK_OBJECT (client)); } +/* Callback used when an object is updated */ +static void +obj_updated (CalClient *client, const char *uid, gpointer data) +{ + cl_printf (client, "Object updated: %s\n", uid); +} + /* Creates a calendar client and tries to load the specified URI into it */ static CalClient * create_client (const char *uri, gboolean load) @@ -100,13 +109,16 @@ create_client (const char *uri, gboolean load) gtk_signal_connect (GTK_OBJECT (client), "cal_loaded", GTK_SIGNAL_FUNC (cal_loaded), NULL); + gtk_signal_connect (GTK_OBJECT (client), "obj_updated", + GTK_SIGNAL_FUNC (obj_updated), + NULL); printf ("Calendar loading `%s'...\n", uri); if (load) result = cal_client_load_calendar (client, uri); else - result = cal_client_create_calendar (client, uri); + result = cal_client_load_calendar (client, uri); if (!result) { g_message ("create_client(): failure when issuing calendar load/create request `%s'", -- cgit v1.2.3