[empathy/mc5: 144/483] Add api to remove accounts



commit 2e87bc47e7c03fa0d2145b2c3904df545b941a76
Author: Sjoerd Simons <sjoerd simons collabora co uk>
Date:   Tue Jul 21 19:11:50 2009 +0100

    Add api to remove accounts

 libempathy/empathy-account.c |   48 ++++++++++++++++++++++++++++++++++++++++++
 libempathy/empathy-account.h |    5 ++++
 2 files changed, 53 insertions(+), 0 deletions(-)
---
diff --git a/libempathy/empathy-account.c b/libempathy/empathy-account.c
index 51dd263..8d49095 100644
--- a/libempathy/empathy-account.c
+++ b/libempathy/empathy-account.c
@@ -987,3 +987,51 @@ empathy_account_update_settings_finish (EmpathyAccount *account,
 
   return TRUE;
 }
+
+static void
+empathy_account_remove_cb (TpAccount *proxy,
+    const GError *error,
+    gpointer user_data,
+    GObject *weak_object)
+{
+  GSimpleAsyncResult *result = G_SIMPLE_ASYNC_RESULT (user_data);
+
+  if (error != NULL)
+    {
+      g_simple_async_result_set_from_error (result, (GError *) error);
+    }
+
+  g_simple_async_result_complete (result);
+  g_object_unref (G_OBJECT (result));
+}
+
+void
+empathy_account_remove_async (EmpathyAccount *account,
+  GAsyncReadyCallback callback, gpointer user_data)
+{
+  EmpathyAccountPriv *priv = GET_PRIV (account);
+  GSimpleAsyncResult *result = g_simple_async_result_new (G_OBJECT (account),
+      callback, user_data, empathy_account_remove_finish);
+
+  tp_cli_account_call_remove (priv->account,
+      -1,
+      empathy_account_remove_cb,
+      result,
+      NULL,
+      G_OBJECT (account));
+}
+
+gboolean
+empathy_account_remove_finish (EmpathyAccount *account,
+  GAsyncResult *result, GError **error)
+{
+  if (g_simple_async_result_propagate_error (G_SIMPLE_ASYNC_RESULT (result),
+      error))
+    return FALSE;
+
+  g_return_val_if_fail (g_simple_async_result_is_valid (result,
+    G_OBJECT (account), empathy_account_update_settings_finish), FALSE);
+
+  return TRUE;
+}
+
diff --git a/libempathy/empathy-account.h b/libempathy/empathy-account.h
index 58f174e..00daa46 100644
--- a/libempathy/empathy-account.h
+++ b/libempathy/empathy-account.h
@@ -79,6 +79,11 @@ void empathy_account_update_settings_async (EmpathyAccount *account,
 gboolean empathy_account_update_settings_finish (EmpathyAccount *account,
   GAsyncResult *result, GError **error);
 
+void empathy_account_remove_async (EmpathyAccount *account,
+  GAsyncReadyCallback callback, gpointer user_data);
+gboolean empathy_account_remove_finish (EmpathyAccount *account,
+  GAsyncResult *result, GError **error);
+
 void empathy_account_set_display_name (EmpathyAccount *account,
     const gchar *display_name);
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]