]> git.0d.be Git - empathy.git/blobdiff - libempathy-gtk/empathy-share-my-desktop.c
sort contacts by most recent event
[empathy.git] / libempathy-gtk / empathy-share-my-desktop.c
index 879fc96f89315dfae0532c92996d0201a1acb8ed..07edfce469a79b10ac14af61af1ea7055a4259ec 100644 (file)
  * Authors: Arnaud Maillet <arnaud.maillet@collabora.co.uk>
  */
 
-#include <gtk/gtk.h>
-
-#include <dbus/dbus-glib.h>
-#include <telepathy-glib/util.h>
-#include <telepathy-glib/contact.h>
-#include <telepathy-glib/channel.h>
-#include <telepathy-glib/interfaces.h>
+#include "config.h"
+#include "empathy-share-my-desktop.h"
 
-#include <libempathy/empathy-dispatcher.h>
+#include <telepathy-glib/telepathy-glib-dbus.h>
 
 #define DEBUG_FLAG EMPATHY_DEBUG_SHARE_DESKTOP
-#include <libempathy/empathy-debug.h>
+#include "empathy-debug.h"
 
-#include "empathy-share-my-desktop.h"
+static void
+create_tube_channel_cb (GObject *source,
+    GAsyncResult *result,
+    gpointer user_data)
+{
+  GError *error = NULL;
+
+  if (!tp_account_channel_request_create_channel_finish (
+        TP_ACCOUNT_CHANNEL_REQUEST (source), result, &error))
+    {
+      DEBUG ("Failed to create tube channel: %s", error->message);
+      g_error_free (error);
+    }
+}
 
 void
 empathy_share_my_desktop_share_with_contact (EmpathyContact *contact)
 {
-  EmpathyDispatcher *dispatcher;
-  GHashTable *request;
+  TpAccountChannelRequest *req;
   TpContact *tp_contact;
 
   tp_contact = empathy_contact_get_tp_contact (contact);
@@ -50,23 +57,14 @@ empathy_share_my_desktop_share_with_contact (EmpathyContact *contact)
       return;
     }
 
-  dispatcher = empathy_dispatcher_dup_singleton ();
+  req = tp_account_channel_request_new_stream_tube (
+      empathy_contact_get_account (contact), "rfb",
+      TP_USER_ACTION_TIME_CURRENT_TIME);
 
-  request = tp_asv_new (
-      TP_PROP_CHANNEL_CHANNEL_TYPE, G_TYPE_STRING,
-        TP_IFACE_CHANNEL_TYPE_STREAM_TUBE,
-      TP_PROP_CHANNEL_TARGET_HANDLE_TYPE, G_TYPE_UINT,
-        TP_HANDLE_TYPE_CONTACT,
-      TP_PROP_CHANNEL_TARGET_HANDLE, G_TYPE_UINT,
-        tp_contact_get_handle (tp_contact),
-      TP_PROP_CHANNEL_TYPE_STREAM_TUBE_SERVICE, G_TYPE_STRING, "rfb",
-      NULL);
+  tp_account_channel_request_set_target_contact (req, tp_contact);
 
-  empathy_dispatcher_create_channel (dispatcher,
-      tp_contact_get_connection (tp_contact), request,
-      EMPATHY_DISPATCHER_CURRENT_TIME,
-      NULL, NULL);
+  tp_account_channel_request_create_channel_async (req, NULL, NULL,
+      create_tube_channel_cb, NULL);
 
-  g_object_unref (dispatcher);
-  g_hash_table_unref (request);
+  g_object_unref (req);
 }