From: Xavier Claessens Date: Sat, 8 Sep 2007 21:59:18 +0000 (+0000) Subject: Request media channel when clicking on call icon. X-Git-Url: https://git.0d.be/?p=empathy.git;a=commitdiff_plain;h=0608d84a95a32c6a29132e006c221ff3718e3245 Request media channel when clicking on call icon. 2007-09-08 Xavier Claessens * libempathy-gtk/empathy-contact-list-view.c: * libempathy-gtk/empathy-chat-window.c: Request media channel when clicking on call icon. svn path=/trunk/; revision=294 --- diff --git a/ChangeLog b/ChangeLog index 6f38aa62..954aaeb1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2007-09-08 Xavier Claessens + + * libempathy-gtk/empathy-contact-list-view.c: + * libempathy-gtk/empathy-chat-window.c: Request media channel when + clicking on call icon. + 2007-09-08 Xavier Claessens * libempathy-gtk/empathy-images.h: diff --git a/doc/libempathy/tmpl/empathy-contact.sgml b/doc/libempathy/tmpl/empathy-contact.sgml index 571414de..43969ae2 100644 --- a/doc/libempathy/tmpl/empathy-contact.sgml +++ b/doc/libempathy/tmpl/empathy-contact.sgml @@ -33,6 +33,11 @@ EmpathyContact + + + + + diff --git a/libempathy-gtk/empathy-chat-window.c b/libempathy-gtk/empathy-chat-window.c index 6a2d776f..7a180708 100644 --- a/libempathy-gtk/empathy-chat-window.c +++ b/libempathy-gtk/empathy-chat-window.c @@ -915,12 +915,21 @@ chat_window_call_activate_cb (GtkWidget *menuitem, priv = GET_PRIV (window); if (!empathy_chat_is_group_chat (priv->current_chat)) { + MissionControl *mc; EmpathyPrivateChat *chat; EmpathyContact *contact; chat = EMPATHY_PRIVATE_CHAT (priv->current_chat); contact = empathy_private_chat_get_contact (chat); - /* FIXME: Start VoIP */ + + mc = empathy_mission_control_new (); + mission_control_request_channel (mc, + empathy_contact_get_account (contact), + TP_IFACE_CHANNEL_TYPE_STREAMED_MEDIA, + empathy_contact_get_handle (contact), + TP_HANDLE_TYPE_CONTACT, + NULL, NULL); + g_object_unref (mc); } } diff --git a/libempathy-gtk/empathy-contact-list-view.c b/libempathy-gtk/empathy-contact-list-view.c index 2cadb220..8e6b2cf0 100644 --- a/libempathy-gtk/empathy-contact-list-view.c +++ b/libempathy-gtk/empathy-contact-list-view.c @@ -1387,6 +1387,15 @@ static void contact_list_view_voip_activated (EmpathyContactListView *view, EmpathyContact *contact) { - /* FIXME: Not implemented */ + MissionControl *mc; + + mc = empathy_mission_control_new (); + mission_control_request_channel (mc, + empathy_contact_get_account (contact), + TP_IFACE_CHANNEL_TYPE_STREAMED_MEDIA, + empathy_contact_get_handle (contact), + TP_HANDLE_TYPE_CONTACT, + NULL, NULL); + g_object_unref (mc); }