diff options
author | Emilio Pozuelo Monfort <emilio.pozuelo@collabora.co.uk> | 2011-02-19 00:26:28 +0800 |
---|---|---|
committer | Emilio Pozuelo Monfort <emilio.pozuelo@collabora.co.uk> | 2011-06-08 23:39:18 +0800 |
commit | ee49de4c751017cb80ea6008560b61b0ee389d76 (patch) | |
tree | 50cf91704f2892d723cf0670d7d58f264eb2f01b /libempathy-gtk | |
parent | 00144b08212c401230a79de080316fcbdb5d7a59 (diff) | |
download | gsoc2013-empathy-ee49de4c751017cb80ea6008560b61b0ee389d76.tar gsoc2013-empathy-ee49de4c751017cb80ea6008560b61b0ee389d76.tar.gz gsoc2013-empathy-ee49de4c751017cb80ea6008560b61b0ee389d76.tar.bz2 gsoc2013-empathy-ee49de4c751017cb80ea6008560b61b0ee389d76.tar.lz gsoc2013-empathy-ee49de4c751017cb80ea6008560b61b0ee389d76.tar.xz gsoc2013-empathy-ee49de4c751017cb80ea6008560b61b0ee389d76.tar.zst gsoc2013-empathy-ee49de4c751017cb80ea6008560b61b0ee389d76.zip |
NewCallDialog: support Calls
Conflicts:
libempathy-gtk/Makefile.am
libempathy-gtk/empathy-new-call-dialog.c
Diffstat (limited to 'libempathy-gtk')
-rw-r--r-- | libempathy-gtk/Makefile.am | 2 | ||||
-rw-r--r-- | libempathy-gtk/empathy-new-call-dialog.c | 77 |
2 files changed, 43 insertions, 36 deletions
diff --git a/libempathy-gtk/Makefile.am b/libempathy-gtk/Makefile.am index be1aeeea3..3b00f6ebd 100644 --- a/libempathy-gtk/Makefile.am +++ b/libempathy-gtk/Makefile.am @@ -8,6 +8,7 @@ AM_CPPFLAGS = \ -DPKGDATADIR=\""$(pkgdatadir)"\" \ -DGCR_API_SUBJECT_TO_CHANGE \ $(EMPATHY_CFLAGS) \ + $(YELL_CFLAGS) \ $(ENCHANT_CFLAGS) \ $(LIBCHAMPLAIN_CFLAGS) \ $(GEOCLUE_CFLAGS) \ @@ -159,6 +160,7 @@ nodist_libempathy_gtk_la_SOURCES =\ libempathy_gtk_la_LIBADD = \ $(EMPATHY_LIBS) \ + $(EMPATHY_LIBS) \ $(GTK_LIBS) \ $(LIBNOTIFY_LIBS) \ $(CANBERRA_LIBS) \ diff --git a/libempathy-gtk/empathy-new-call-dialog.c b/libempathy-gtk/empathy-new-call-dialog.c index 86430cd24..8ecb042be 100644 --- a/libempathy-gtk/empathy-new-call-dialog.c +++ b/libempathy-gtk/empathy-new-call-dialog.c @@ -28,6 +28,10 @@ #include <telepathy-glib/interfaces.h> +#if HAVE_CALL +#include <telepathy-yell/telepathy-yell.h> +#endif + #include <libempathy/empathy-tp-contact-factory.h> #include <libempathy/empathy-contact-manager.h> #include <libempathy/empathy-utils.h> @@ -54,6 +58,11 @@ typedef struct { gpointer user_data; } FilterCallbackData; +typedef struct { + gboolean video; + gint64 timestamp; +} ContactCallbackData; + struct _EmpathyNewCallDialogPriv { GtkWidget *check_video; }; @@ -62,21 +71,6 @@ struct _EmpathyNewCallDialogPriv { (G_TYPE_INSTANCE_GET_PRIVATE ((o), EMPATHY_TYPE_NEW_CALL_DIALOG, \ EmpathyNewCallDialogPriv)) -static void -create_media_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 media channel: %s", error->message); - g_error_free (error); - } -} - /** * SECTION:empathy-new-call-dialog * @title: EmpathyNewCallDialog @@ -88,31 +82,38 @@ create_media_channel_cb (GObject *source, */ static void +got_contact_cb (TpConnection *connection, + EmpathyContact *contact, + const GError *error, + gpointer user_data, + GObject *weak_object) +{ + ContactCallbackData *data = user_data; + + if (error != NULL) + g_warning ("Could not get contact: %s", error->message); + else + empathy_call_new_with_streams (contact, + TRUE, data->video, data->timestamp); + + g_slice_free (ContactCallbackData, data); +} + +static void call_contact (TpAccount *account, const gchar *contact_id, gboolean video, gint64 timestamp) { - GHashTable *request; - TpAccountChannelRequest *req; - - request = tp_asv_new ( - TP_PROP_CHANNEL_CHANNEL_TYPE, G_TYPE_STRING, - TP_IFACE_CHANNEL_TYPE_STREAMED_MEDIA, - TP_PROP_CHANNEL_TARGET_HANDLE_TYPE, G_TYPE_UINT, TP_HANDLE_TYPE_CONTACT, - TP_PROP_CHANNEL_TARGET_ID, G_TYPE_STRING, contact_id, - TP_PROP_CHANNEL_TYPE_STREAMED_MEDIA_INITIAL_AUDIO, G_TYPE_BOOLEAN, - TRUE, - TP_PROP_CHANNEL_TYPE_STREAMED_MEDIA_INITIAL_VIDEO, G_TYPE_BOOLEAN, - video, - NULL); - - req = tp_account_channel_request_new (account, request, timestamp); - - tp_account_channel_request_create_channel_async (req, EMPATHY_AV_BUS_NAME, - NULL, create_media_channel_cb, NULL); - - g_object_unref (req); + ContactCallbackData *data = g_slice_new0 (ContactCallbackData); + + data->video = video; + data->timestamp = timestamp; + + empathy_tp_contact_factory_get_from_id (tp_account_get_connection (account), + contact_id, + got_contact_cb, data, + NULL, NULL); } static void @@ -169,7 +170,11 @@ conn_prepared_cb (GObject *conn, chan_type = tp_asv_get_string (fixed, TP_PROP_CHANNEL_CHANNEL_TYPE); - if (tp_strdiff (chan_type, TP_IFACE_CHANNEL_TYPE_STREAMED_MEDIA)) + if (tp_strdiff (chan_type, TP_IFACE_CHANNEL_TYPE_STREAMED_MEDIA) +#if HAVE_CALL + && tp_strdiff (chan_type, TPY_IFACE_CHANNEL_TYPE_CALL) +#endif + ) continue; if (tp_asv_get_uint32 (fixed, TP_PROP_CHANNEL_TARGET_HANDLE_TYPE, NULL) != |