]> git.0d.be Git - empathy.git/blob - src/empathy-call-window.c
Merge branch 'change-audio'
[empathy.git] / src / empathy-call-window.c
1 /*
2  * empathy-call-window.c - Source for EmpathyCallWindow
3  * Copyright (C) 2008-2011 Collabora Ltd.
4  * @author Sjoerd Simons <sjoerd.simons@collabora.co.uk>
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  */
20
21
22 #include <stdio.h>
23 #include <stdlib.h>
24
25 #include <math.h>
26
27 #include <gdk/gdkkeysyms.h>
28 #include <gst/gst.h>
29 #include <gtk/gtk.h>
30 #include <glib/gi18n.h>
31
32 #include <clutter/clutter.h>
33 #include <clutter-gtk/clutter-gtk.h>
34 #include <clutter-gst/clutter-gst.h>
35
36 #include <telepathy-glib/util.h>
37 #include <telepathy-farstream/telepathy-farstream.h>
38 #include <telepathy-glib/util.h>
39
40 #include <gst/farsight/fs-element-added-notifier.h>
41 #include <gst/farsight/fs-utils.h>
42
43 #include <libempathy/empathy-camera-monitor.h>
44 #include <libempathy/empathy-gsettings.h>
45 #include <libempathy/empathy-tp-contact-factory.h>
46 #include <libempathy/empathy-utils.h>
47
48 #include <libempathy-gtk/empathy-avatar-image.h>
49 #include <libempathy-gtk/empathy-ui-utils.h>
50 #include <libempathy-gtk/empathy-sound-manager.h>
51 #include <libempathy-gtk/empathy-geometry.h>
52 #include <libempathy-gtk/empathy-images.h>
53
54 #define DEBUG_FLAG EMPATHY_DEBUG_VOIP
55 #include <libempathy/empathy-debug.h>
56
57 #include "empathy-call-window.h"
58 #include "empathy-call-window-fullscreen.h"
59 #include "empathy-call-factory.h"
60 #include "empathy-video-widget.h"
61 #include "empathy-audio-src.h"
62 #include "empathy-audio-sink.h"
63 #include "empathy-video-src.h"
64 #include "empathy-mic-menu.h"
65
66 #define CONTENT_HBOX_BORDER_WIDTH 6
67 #define CONTENT_HBOX_SPACING 3
68 #define CONTENT_HBOX_CHILDREN_PACKING_PADDING 3
69
70 #define SELF_VIDEO_SECTION_WIDTH 120
71 #define SELF_VIDEO_SECTION_HEIGTH 90
72
73 /* The avatar's default width and height are set to the same value because we
74    want a square icon. */
75 #define REMOTE_CONTACT_AVATAR_DEFAULT_WIDTH EMPATHY_VIDEO_WIDGET_DEFAULT_HEIGHT
76 #define REMOTE_CONTACT_AVATAR_DEFAULT_HEIGHT \
77   EMPATHY_VIDEO_WIDGET_DEFAULT_HEIGHT
78
79 #define SMALL_TOOLBAR_SIZE 36
80
81 /* If an video input error occurs, the error message will start with "v4l" */
82 #define VIDEO_INPUT_ERROR_PREFIX "v4l"
83
84 /* The time interval in milliseconds between 2 outgoing rings */
85 #define MS_BETWEEN_RING 500
86
87 G_DEFINE_TYPE(EmpathyCallWindow, empathy_call_window, GTK_TYPE_WINDOW)
88
89 enum {
90   PROP_CALL_HANDLER = 1,
91 };
92
93 typedef enum {
94   CONNECTING,
95   CONNECTED,
96   HELD,
97   DISCONNECTED,
98   REDIALING
99 } CallState;
100
101 typedef enum {
102   CAMERA_STATE_OFF = 0,
103   CAMERA_STATE_ON,
104 } CameraState;
105
106 struct _EmpathyCallWindowPriv
107 {
108   gboolean dispose_has_run;
109   EmpathyCallHandler *handler;
110
111   EmpathyContact *contact;
112
113   EmpathyCameraMonitor *camera_monitor;
114
115   guint call_state;
116   gboolean outgoing;
117
118   GtkUIManager *ui_manager;
119   GtkWidget *errors_vbox;
120   /* widget displays the video received from the remote user. This widget is
121    * alive only during call. */
122   ClutterActor *video_output;
123   ClutterActor *video_preview;
124   ClutterActor *preview_hidden_button;
125   GtkWidget *video_container;
126   GtkWidget *remote_user_avatar_widget;
127   GtkWidget *remote_user_avatar_toolbar;
128   GtkWidget *remote_user_name_toolbar;
129   GtkWidget *status_label;
130   GtkWidget *hangup_button;
131   GtkWidget *audio_call_button;
132   GtkWidget *video_call_button;
133   GtkWidget *mic_button;
134   GtkWidget *camera_button;
135   GtkWidget *dialpad_button;
136   GtkWidget *toolbar;
137   GtkWidget *bottom_toolbar;
138   GtkWidget *pane;
139   GtkAction *menu_fullscreen;
140
141   /* The box that contains self and remote avatar and video
142      input/output. When we redial, we destroy and re-create the box */
143   ClutterActor *video_box;
144   ClutterLayoutManager *video_layout;
145
146   /* We keep a reference on the hbox which contains the main content so we can
147      easilly repack everything when toggling fullscreen */
148   GtkWidget *content_hbox;
149
150   gulong video_output_motion_handler_id;
151   guint bus_message_source_id;
152
153   gdouble volume;
154
155   GtkWidget *dtmf_panel;
156
157   /* Details vbox */
158   GtkWidget *details_vbox;
159   GtkWidget *vcodec_encoding_label;
160   GtkWidget *acodec_encoding_label;
161   GtkWidget *vcodec_decoding_label;
162   GtkWidget *acodec_decoding_label;
163
164   GtkWidget *audio_remote_candidate_label;
165   GtkWidget *audio_local_candidate_label;
166   GtkWidget *video_remote_candidate_label;
167   GtkWidget *video_local_candidate_label;
168   GtkWidget *video_remote_candidate_info_img;
169   GtkWidget *video_local_candidate_info_img;
170   GtkWidget *audio_remote_candidate_info_img;
171   GtkWidget *audio_local_candidate_info_img;
172
173   GstElement *video_input;
174   GstElement *video_preview_sink;
175   GstElement *video_output_sink;
176   GstElement *audio_input;
177   GstElement *audio_output;
178   GstElement *pipeline;
179   GstElement *video_tee;
180
181   GstElement *funnel;
182
183   GList *notifiers;
184
185   GTimer *timer;
186   guint timer_id;
187
188   GMutex *lock;
189   gboolean call_started;
190   gboolean sending_video;
191   CameraState camera_state;
192
193   EmpathyCallWindowFullscreen *fullscreen;
194   gboolean is_fullscreen;
195
196   gboolean got_video;
197   guint got_video_src;
198
199   /* Those fields represent the state of the window before it actually was in
200      fullscreen mode. */
201   gboolean dialpad_was_visible_before_fs;
202   gint original_width_before_fs;
203   gint original_height_before_fs;
204
205   gint x, y, w, h, dialpad_width;
206   gboolean maximized;
207
208   /* TRUE if the call should be started when the pipeline is playing */
209   gboolean start_call_when_playing;
210   /* TRUE if we requested to set the pipeline in the playing state */
211   gboolean pipeline_playing;
212
213   EmpathySoundManager *sound_mgr;
214
215   GSettings *settings;
216   EmpathyMicMenu *mic_menu;
217 };
218
219 #define GET_PRIV(o) (EMPATHY_CALL_WINDOW (o)->priv)
220
221 static void empathy_call_window_realized_cb (GtkWidget *widget,
222   EmpathyCallWindow *window);
223
224 static gboolean empathy_call_window_delete_cb (GtkWidget *widget,
225   GdkEvent *event, EmpathyCallWindow *window);
226
227 static gboolean empathy_call_window_state_event_cb (GtkWidget *widget,
228   GdkEventWindowState *event, EmpathyCallWindow *window);
229
230 static void empathy_call_window_set_send_video (EmpathyCallWindow *window,
231   CameraState state);
232
233 static void empathy_call_window_mic_toggled_cb (
234   GtkToggleToolButton *toggle, EmpathyCallWindow *window);
235
236 static void empathy_call_window_hangup_cb (gpointer object,
237   EmpathyCallWindow *window);
238
239 static void empathy_call_window_fullscreen_cb (gpointer object,
240   EmpathyCallWindow *window);
241
242 static void empathy_call_window_fullscreen_toggle (EmpathyCallWindow *window);
243
244 static gboolean empathy_call_window_video_button_press_cb (
245   GtkWidget *video_output, GdkEventButton *event, EmpathyCallWindow *window);
246
247 static gboolean empathy_call_window_key_press_cb (GtkWidget *video_output,
248   GdkEventKey *event, EmpathyCallWindow *window);
249
250 static gboolean empathy_call_window_video_output_motion_notify (
251   GtkWidget *widget, GdkEventMotion *event, EmpathyCallWindow *window);
252
253 static void empathy_call_window_video_menu_popup (EmpathyCallWindow *window,
254   guint button);
255
256 static void empathy_call_window_dialpad_cb (GtkToggleToolButton *button,
257   EmpathyCallWindow *window);
258
259 static void empathy_call_window_restart_call (EmpathyCallWindow *window);
260
261 static void empathy_call_window_status_message (EmpathyCallWindow *window,
262   gchar *message);
263
264 static gboolean empathy_call_window_bus_message (GstBus *bus,
265   GstMessage *message, gpointer user_data);
266
267 static void
268 empathy_call_window_volume_changed_cb (GtkScaleButton *button,
269   gdouble value, EmpathyCallWindow *window);
270
271 static void
272 empathy_call_window_show_hangup_button (EmpathyCallWindow *self,
273     gboolean show)
274 {
275   gtk_widget_set_visible (self->priv->hangup_button, show);
276   gtk_widget_set_visible (self->priv->audio_call_button, !show);
277   gtk_widget_set_visible (self->priv->video_call_button, !show);
278 }
279
280 static void
281 empathy_call_window_audio_call_cb (GtkToggleToolButton *button,
282     EmpathyCallWindow *self)
283 {
284   g_object_set (self->priv->handler, "initial-video", FALSE, NULL);
285   empathy_call_window_restart_call (self);
286 }
287
288 static void
289 empathy_call_window_video_call_cb (GtkToggleToolButton *button,
290     EmpathyCallWindow *self)
291 {
292   empathy_call_window_set_send_video (self, CAMERA_STATE_ON);
293   g_object_set (self->priv->handler, "initial-video", TRUE, NULL);
294   empathy_call_window_restart_call (self);
295 }
296
297 static void
298 dtmf_button_pressed_cb (GtkButton *button, EmpathyCallWindow *window)
299 {
300   EmpathyCallWindowPriv *priv = GET_PRIV (window);
301   TpyCallChannel *call;
302   GQuark button_quark;
303   TpDTMFEvent event;
304
305   g_object_get (priv->handler, "call-channel", &call, NULL);
306
307   button_quark = g_quark_from_static_string (EMPATHY_DTMF_BUTTON_ID);
308   event = GPOINTER_TO_UINT (g_object_get_qdata (G_OBJECT (button),
309     button_quark));
310
311   tpy_call_channel_dtmf_start_tone (call, event);
312
313   g_object_unref (call);
314 }
315
316 static void
317 dtmf_button_released_cb (GtkButton *button, EmpathyCallWindow *window)
318 {
319   EmpathyCallWindowPriv *priv = GET_PRIV (window);
320   TpyCallChannel *call;
321
322   g_object_get (priv->handler, "call-channel", &call, NULL);
323
324   tpy_call_channel_dtmf_stop_tone (call);
325
326   g_object_unref (call);
327 }
328
329 static void
330 empathy_call_window_mic_volume_changed (EmpathyCallWindow *self)
331 {
332   EmpathyCallWindowPriv *priv = GET_PRIV (self);
333   gdouble volume;
334
335   volume = g_settings_get_double (priv->settings,
336       EMPATHY_PREFS_CALL_SOUND_VOLUME) / 100.0;
337
338   /* Don't store the volume because of muting */
339   if (volume > 0 || gtk_toggle_tool_button_get_active (
340         GTK_TOGGLE_TOOL_BUTTON (priv->mic_button)))
341     priv->volume = volume;
342
343   /* Ensure that the toggle button is active if the volume is > 0 and inactive
344    * if it's smaller than 0 */
345   if ((volume > 0) != gtk_toggle_tool_button_get_active (
346         GTK_TOGGLE_TOOL_BUTTON (priv->mic_button)))
347     gtk_toggle_tool_button_set_active (
348       GTK_TOGGLE_TOOL_BUTTON (priv->mic_button), volume > 0);
349
350   empathy_audio_src_set_volume (EMPATHY_GST_AUDIO_SRC (priv->audio_input),
351     volume);
352 }
353
354 static void
355 empathy_call_window_prefs_volume_changed_cb (GSettings *settings,
356     gchar *key,
357     EmpathyCallWindow *self)
358 {
359   empathy_call_window_mic_volume_changed (self);
360 }
361
362 static void
363 empathy_call_window_show_video_output (EmpathyCallWindow *self,
364     gboolean show)
365 {
366   if (self->priv->video_output != NULL)
367     g_object_set (self->priv->video_output, "visible", show, NULL);
368
369   gtk_widget_set_visible (self->priv->remote_user_avatar_widget, !show);
370 }
371
372 static void
373 create_video_output_widget (EmpathyCallWindow *self)
374 {
375   EmpathyCallWindowPriv *priv = GET_PRIV (self);
376
377   g_assert (priv->video_output == NULL);
378   g_assert (priv->pipeline != NULL);
379
380   priv->video_output = clutter_texture_new ();
381
382   clutter_texture_set_keep_aspect_ratio (CLUTTER_TEXTURE (priv->video_output),
383       TRUE);
384
385   priv->video_output_sink = clutter_gst_video_sink_new (
386       CLUTTER_TEXTURE (priv->video_output));
387
388   clutter_container_add_actor (CLUTTER_CONTAINER (priv->video_box),
389       priv->video_output);
390
391   gtk_widget_add_events (priv->video_container,
392       GDK_BUTTON_PRESS_MASK | GDK_POINTER_MOTION_MASK);
393   g_signal_connect (G_OBJECT (priv->video_container), "button-press-event",
394       G_CALLBACK (empathy_call_window_video_button_press_cb), self);
395 }
396
397 static void
398 create_video_input (EmpathyCallWindow *self)
399 {
400   EmpathyCallWindowPriv *priv = GET_PRIV (self);
401
402   g_assert (priv->video_input == NULL);
403   priv->video_input = empathy_video_src_new ();
404   gst_object_ref (priv->video_input);
405   gst_object_sink (priv->video_input);
406 }
407
408 static void
409 create_audio_input (EmpathyCallWindow *self)
410 {
411   EmpathyCallWindowPriv *priv = GET_PRIV (self);
412
413   g_assert (priv->audio_input == NULL);
414   priv->audio_input = empathy_audio_src_new ();
415   gst_object_ref (priv->audio_input);
416   gst_object_sink (priv->audio_input);
417 }
418
419 static void
420 add_video_preview_to_pipeline (EmpathyCallWindow *self)
421 {
422   EmpathyCallWindowPriv *priv = GET_PRIV (self);
423   GstElement *preview;
424
425   g_assert (priv->video_preview != NULL);
426   g_assert (priv->pipeline != NULL);
427   g_assert (priv->video_input != NULL);
428   g_assert (priv->video_tee != NULL);
429
430   preview = priv->video_preview_sink;
431
432   if (!gst_bin_add (GST_BIN (priv->pipeline), priv->video_input))
433     {
434       g_warning ("Could not add video input to pipeline");
435       return;
436     }
437
438   if (!gst_bin_add (GST_BIN (priv->pipeline), preview))
439     {
440       g_warning ("Could not add video preview to pipeline");
441       return;
442     }
443
444   if (!gst_element_link (priv->video_input, priv->video_tee))
445     {
446       g_warning ("Could not link video input to video tee");
447       return;
448     }
449
450   if (!gst_element_link (priv->video_tee, preview))
451     {
452       g_warning ("Could not link video tee to video preview");
453       return;
454     }
455 }
456
457 static void
458 empathy_call_window_disable_camera_cb (GtkAction *action,
459     EmpathyCallWindow *self)
460 {
461   clutter_actor_destroy (self->priv->preview_hidden_button);
462
463   gtk_toggle_tool_button_set_active (
464       GTK_TOGGLE_TOOL_BUTTON (self->priv->camera_button), FALSE);
465 }
466
467 static void
468 empathy_call_window_minimise_camera_cb (GtkAction *action,
469     EmpathyCallWindow *self)
470 {
471   clutter_actor_hide (self->priv->video_preview);
472   clutter_actor_show (self->priv->preview_hidden_button);
473 }
474
475 static void
476 empathy_call_window_maximise_camera_cb (GtkAction *action,
477     EmpathyCallWindow *self)
478 {
479   clutter_actor_show (self->priv->video_preview);
480   clutter_actor_hide (self->priv->preview_hidden_button);
481 }
482
483 static void
484 empathy_call_window_preview_button_clicked_cb (GtkButton *button,
485     EmpathyCallWindow *self)
486 {
487   GtkWidget *menu;
488
489   menu = gtk_ui_manager_get_widget (self->priv->ui_manager,
490       "/preview-menu");
491   gtk_menu_popup (GTK_MENU (menu), NULL, NULL, NULL, NULL,
492       0, gtk_get_current_event_time ());
493   gtk_menu_shell_select_first (GTK_MENU_SHELL (menu), FALSE);
494 }
495
496 static void
497 empathy_call_window_preview_hidden_button_clicked_cb (GtkButton *button,
498     EmpathyCallWindow *self)
499 {
500   GtkWidget *menu;
501
502   menu = gtk_ui_manager_get_widget (self->priv->ui_manager,
503       "/preview-hidden-menu");
504   gtk_menu_popup (GTK_MENU (menu), NULL, NULL, NULL, NULL,
505       0, gtk_get_current_event_time ());
506   gtk_menu_shell_select_first (GTK_MENU_SHELL (menu), FALSE);
507 }
508
509 static void
510 create_video_preview (EmpathyCallWindow *self)
511 {
512   EmpathyCallWindowPriv *priv = GET_PRIV (self);
513   ClutterLayoutManager *layout, *layout_center;
514   ClutterActor *preview;
515   ClutterActor *box;
516   ClutterActor *b;
517   GtkWidget *button;
518
519   g_assert (priv->video_preview == NULL);
520
521   preview = clutter_texture_new ();
522   clutter_actor_set_size (preview,
523       SELF_VIDEO_SECTION_WIDTH, SELF_VIDEO_SECTION_HEIGTH);
524   priv->video_preview_sink = clutter_gst_video_sink_new (
525       CLUTTER_TEXTURE (preview));
526
527   /* Flip the video preview */
528   clutter_actor_set_rotation (preview,
529       CLUTTER_Y_AXIS,
530       180,
531       SELF_VIDEO_SECTION_WIDTH * 0.5,
532       0.0,
533       0.0);
534
535   /* Add a little offset to the video preview */
536   layout = clutter_bin_layout_new (CLUTTER_BIN_ALIGNMENT_END,
537       CLUTTER_BIN_ALIGNMENT_START);
538   priv->video_preview = clutter_box_new (layout);
539   clutter_actor_set_size (priv->video_preview,
540       SELF_VIDEO_SECTION_WIDTH + 10, SELF_VIDEO_SECTION_HEIGTH + 10);
541
542   layout_center = clutter_bin_layout_new (CLUTTER_BIN_ALIGNMENT_CENTER,
543       CLUTTER_BIN_ALIGNMENT_CENTER);
544   box = clutter_box_new (layout_center);
545   clutter_actor_set_size (box,
546       SELF_VIDEO_SECTION_WIDTH, SELF_VIDEO_SECTION_HEIGTH);
547
548   clutter_container_add_actor (CLUTTER_CONTAINER (box), preview);
549   clutter_container_add_actor (CLUTTER_CONTAINER (priv->video_preview), box);
550
551   g_object_set (priv->video_preview_sink,
552       "sync", FALSE,
553       "async", TRUE,
554       NULL);
555
556   /* Translators: this is an "Info" label. It should be as short
557    * as possible. */
558   button = gtk_button_new_with_label (_("i"));
559   b = gtk_clutter_actor_new_with_contents (button);
560
561   clutter_bin_layout_add (CLUTTER_BIN_LAYOUT (layout_center),
562       b,
563       CLUTTER_BIN_ALIGNMENT_END,
564       CLUTTER_BIN_ALIGNMENT_END);
565
566   g_signal_connect (button, "clicked",
567       G_CALLBACK (empathy_call_window_preview_button_clicked_cb),
568       self);
569
570   /* Translators: this is an "Info" label. It should be as short
571    * as possible. */
572   button = gtk_button_new_with_label (_("i"));
573   priv->preview_hidden_button =
574       gtk_clutter_actor_new_with_contents (button);
575
576   clutter_bin_layout_add (CLUTTER_BIN_LAYOUT (priv->video_layout),
577       priv->preview_hidden_button,
578       CLUTTER_BIN_ALIGNMENT_START,
579       CLUTTER_BIN_ALIGNMENT_END);
580
581   clutter_actor_hide (priv->preview_hidden_button);
582
583   g_signal_connect (button, "clicked",
584       G_CALLBACK (empathy_call_window_preview_hidden_button_clicked_cb),
585       self);
586
587   clutter_bin_layout_add (CLUTTER_BIN_LAYOUT (priv->video_layout),
588       priv->video_preview,
589       CLUTTER_BIN_ALIGNMENT_START,
590       CLUTTER_BIN_ALIGNMENT_END);
591 }
592
593 static void
594 play_camera (EmpathyCallWindow *window,
595     gboolean play)
596 {
597   EmpathyCallWindowPriv *priv = GET_PRIV (window);
598   GstElement *preview;
599   GstState state;
600
601   if (priv->video_preview == NULL)
602     {
603       create_video_preview (window);
604       add_video_preview_to_pipeline (window);
605     }
606
607   if (play)
608     state = GST_STATE_PLAYING;
609   else
610     state = GST_STATE_NULL;
611
612   preview = priv->video_preview_sink;
613
614   gst_element_set_state (preview, state);
615   gst_element_set_state (priv->video_input, state);
616   gst_element_set_state (priv->video_tee, state);
617 }
618
619 static void
620 display_video_preview (EmpathyCallWindow *self,
621     gboolean display)
622 {
623   EmpathyCallWindowPriv *priv = GET_PRIV (self);
624
625   if (display)
626     {
627       /* Display the video preview */
628       DEBUG ("Show video preview");
629
630       play_camera (self, TRUE);
631       clutter_actor_show (priv->video_preview);
632     }
633   else
634     {
635       /* Hide the video preview */
636       DEBUG ("Hide video preview");
637
638       if (priv->video_preview != NULL)
639         {
640           clutter_actor_hide (priv->video_preview);
641           play_camera (self, FALSE);
642         }
643     }
644 }
645
646 static void
647 empathy_call_window_set_state_connecting (EmpathyCallWindow *window)
648 {
649   EmpathyCallWindowPriv *priv = GET_PRIV (window);
650
651   empathy_call_window_status_message (window, _("Connecting…"));
652   priv->call_state = CONNECTING;
653
654   if (priv->outgoing)
655     empathy_sound_manager_start_playing (priv->sound_mgr, GTK_WIDGET (window),
656         EMPATHY_SOUND_PHONE_OUTGOING, MS_BETWEEN_RING);
657 }
658
659 static void
660 disable_camera (EmpathyCallWindow *self)
661 {
662   EmpathyCallWindowPriv *priv = GET_PRIV (self);
663
664   if (priv->camera_state == CAMERA_STATE_OFF)
665     return;
666
667   DEBUG ("Disable camera");
668
669   display_video_preview (self, FALSE);
670
671   if (priv->camera_state == CAMERA_STATE_ON)
672     empathy_call_window_set_send_video (self, CAMERA_STATE_OFF);
673
674   priv->camera_state = CAMERA_STATE_OFF;
675 }
676
677 static void
678 enable_camera (EmpathyCallWindow *self)
679 {
680   EmpathyCallWindowPriv *priv = GET_PRIV (self);
681
682   if (priv->camera_state == CAMERA_STATE_ON)
683     return;
684
685   if (priv->video_input == NULL)
686     {
687       DEBUG ("Can't enable camera, no input");
688       return;
689     }
690
691   DEBUG ("Enable camera");
692
693   empathy_call_window_set_send_video (self, CAMERA_STATE_ON);
694
695   priv->camera_state = CAMERA_STATE_ON;
696 }
697
698 static void
699 empathy_call_window_camera_toggled_cb (GtkToggleToolButton *toggle,
700   EmpathyCallWindow *self)
701 {
702   if (gtk_toggle_tool_button_get_active (toggle))
703     enable_camera (self);
704   else
705     disable_camera (self);
706 }
707
708 static void
709 create_pipeline (EmpathyCallWindow *self)
710 {
711   EmpathyCallWindowPriv *priv = GET_PRIV (self);
712   GstBus *bus;
713
714   g_assert (priv->pipeline == NULL);
715
716   priv->pipeline = gst_pipeline_new (NULL);
717   priv->pipeline_playing = FALSE;
718
719   priv->video_tee = gst_element_factory_make ("tee", NULL);
720   gst_object_ref (priv->video_tee);
721   gst_object_sink (priv->video_tee);
722
723   gst_bin_add (GST_BIN (priv->pipeline), priv->video_tee);
724
725   bus = gst_pipeline_get_bus (GST_PIPELINE (priv->pipeline));
726   priv->bus_message_source_id = gst_bus_add_watch (bus,
727       empathy_call_window_bus_message, self);
728
729   g_object_unref (bus);
730 }
731
732 static gboolean
733 empathy_call_window_configure_event_cb (GtkWidget *widget,
734     GdkEvent  *event,
735     EmpathyCallWindow *self)
736 {
737   GdkWindow *gdk_window;
738   GdkWindowState window_state;
739
740   gtk_window_get_position (GTK_WINDOW (self), &self->priv->x, &self->priv->y);
741   gtk_window_get_size (GTK_WINDOW (self), &self->priv->w, &self->priv->h);
742
743   gtk_widget_get_preferred_width (self->priv->dtmf_panel,
744       &self->priv->dialpad_width, NULL);
745
746   gdk_window = gtk_widget_get_window (widget);
747   window_state = gdk_window_get_state (gdk_window);
748   self->priv->maximized = (window_state & GDK_WINDOW_STATE_MAXIMIZED);
749
750   return FALSE;
751 }
752
753 static void
754 empathy_call_window_destroyed_cb (GtkWidget *object,
755     EmpathyCallWindow *self)
756 {
757   if (gtk_widget_get_visible (self->priv->dtmf_panel))
758     {
759       /* Save the geometry as if the dialpad was hidden. */
760       empathy_geometry_save_values (GTK_WINDOW (self),
761           self->priv->x, self->priv->y,
762           self->priv->w - self->priv->dialpad_width, self->priv->h,
763           self->priv->maximized);
764     }
765 }
766
767 static void
768 empathy_call_window_init (EmpathyCallWindow *self)
769 {
770   EmpathyCallWindowPriv *priv;
771   GtkBuilder *gui;
772   GtkWidget *top_vbox;
773   gchar *filename;
774   ClutterConstraint *size_constraint;
775   ClutterActor *remote_avatar;
776   GtkStyleContext *context;
777   GdkRGBA rgba;
778   ClutterColor bg;
779
780   priv = self->priv = G_TYPE_INSTANCE_GET_PRIVATE (self,
781     EMPATHY_TYPE_CALL_WINDOW, EmpathyCallWindowPriv);
782
783   filename = empathy_file_lookup ("empathy-call-window.ui", "src");
784   gui = empathy_builder_get_file (filename,
785     "call_window_vbox", &top_vbox,
786     "errors_vbox", &priv->errors_vbox,
787     "pane", &priv->pane,
788     "remote_user_name_toolbar", &priv->remote_user_name_toolbar,
789     "remote_user_avatar_toolbar", &priv->remote_user_avatar_toolbar,
790     "status_label", &priv->status_label,
791     "audiocall", &priv->audio_call_button,
792     "videocall", &priv->video_call_button,
793     "microphone", &priv->mic_button,
794     "camera", &priv->camera_button,
795     "hangup", &priv->hangup_button,
796     "dialpad", &priv->dialpad_button,
797     "toolbar", &priv->toolbar,
798     "bottom_toolbar", &priv->bottom_toolbar,
799     "ui_manager", &priv->ui_manager,
800     "menufullscreen", &priv->menu_fullscreen,
801     "details_vbox",  &priv->details_vbox,
802     "vcodec_encoding_label", &priv->vcodec_encoding_label,
803     "acodec_encoding_label", &priv->acodec_encoding_label,
804     "acodec_decoding_label", &priv->acodec_decoding_label,
805     "vcodec_decoding_label", &priv->vcodec_decoding_label,
806     "audio_remote_candidate_label", &priv->audio_remote_candidate_label,
807     "audio_local_candidate_label", &priv->audio_local_candidate_label,
808     "video_remote_candidate_label", &priv->video_remote_candidate_label,
809     "video_local_candidate_label", &priv->video_local_candidate_label,
810     "video_remote_candidate_info_img", &priv->video_remote_candidate_info_img,
811     "video_local_candidate_info_img", &priv->video_local_candidate_info_img,
812     "audio_remote_candidate_info_img", &priv->audio_remote_candidate_info_img,
813     "audio_local_candidate_info_img", &priv->audio_local_candidate_info_img,
814     NULL);
815   g_free (filename);
816
817   empathy_builder_connect (gui, self,
818     "menuhangup", "activate", empathy_call_window_hangup_cb,
819     "hangup", "clicked", empathy_call_window_hangup_cb,
820     "audiocall", "clicked", empathy_call_window_audio_call_cb,
821     "videocall", "clicked", empathy_call_window_video_call_cb,
822     "volume", "value-changed", empathy_call_window_volume_changed_cb,
823     "microphone", "toggled", empathy_call_window_mic_toggled_cb,
824     "camera", "toggled", empathy_call_window_camera_toggled_cb,
825     "dialpad", "toggled", empathy_call_window_dialpad_cb,
826     "menufullscreen", "activate", empathy_call_window_fullscreen_cb,
827     "menupreviewdisable", "activate", empathy_call_window_disable_camera_cb,
828     "menupreviewminimise", "activate", empathy_call_window_minimise_camera_cb,
829     "menupreviewmaximise", "activate", empathy_call_window_maximise_camera_cb,
830     NULL);
831
832   gtk_action_set_sensitive (priv->menu_fullscreen, FALSE);
833
834   priv->camera_monitor = empathy_camera_monitor_dup_singleton ();
835
836   g_object_bind_property (priv->camera_monitor, "available",
837       priv->camera_button, "sensitive",
838       G_BINDING_SYNC_CREATE);
839
840   priv->lock = g_mutex_new ();
841
842   gtk_container_add (GTK_CONTAINER (self), top_vbox);
843
844   priv->content_hbox = gtk_hbox_new (FALSE, CONTENT_HBOX_SPACING);
845   gtk_container_set_border_width (GTK_CONTAINER (priv->content_hbox),
846                                   CONTENT_HBOX_BORDER_WIDTH);
847   gtk_box_pack_start (GTK_BOX (priv->pane), priv->content_hbox,
848       TRUE, TRUE, 0);
849
850   /* avatar/video box */
851   priv->video_layout = clutter_bin_layout_new (CLUTTER_BIN_ALIGNMENT_CENTER,
852       CLUTTER_BIN_ALIGNMENT_CENTER);
853
854   priv->video_box = clutter_box_new (priv->video_layout);
855
856   priv->video_container = gtk_clutter_embed_new ();
857
858   /* Set the background color to that of the rest of the window */
859   context = gtk_widget_get_style_context (priv->content_hbox);
860   gtk_style_context_get_background_color (context,
861       GTK_STATE_FLAG_NORMAL, &rgba);
862   bg.red = CLAMP (rgba.red * 255.0, 0, 255);
863   bg.green = CLAMP (rgba.green * 255.0, 0, 255);
864   bg.blue = CLAMP (rgba.blue * 255.0, 0, 255);
865   bg.alpha = CLAMP (rgba.alpha * 255.0, 0, 255);
866   clutter_stage_set_color (
867       CLUTTER_STAGE (gtk_clutter_embed_get_stage (
868           GTK_CLUTTER_EMBED (priv->video_container))),
869       &bg);
870
871   clutter_container_add (
872       CLUTTER_CONTAINER (gtk_clutter_embed_get_stage (
873           GTK_CLUTTER_EMBED (priv->video_container))),
874       priv->video_box,
875       NULL);
876
877   size_constraint = clutter_bind_constraint_new (
878       gtk_clutter_embed_get_stage (GTK_CLUTTER_EMBED (priv->video_container)),
879       CLUTTER_BIND_SIZE, 0);
880   clutter_actor_add_constraint (priv->video_box, size_constraint);
881
882   priv->remote_user_avatar_widget = gtk_image_new ();
883   remote_avatar = gtk_clutter_actor_new_with_contents (
884       priv->remote_user_avatar_widget);
885
886   clutter_container_add_actor (CLUTTER_CONTAINER (priv->video_box),
887       remote_avatar);
888
889   gtk_box_pack_start (GTK_BOX (priv->content_hbox),
890       priv->video_container, TRUE, TRUE,
891       CONTENT_HBOX_CHILDREN_PACKING_PADDING);
892
893   create_pipeline (self);
894   create_video_output_widget (self);
895   create_audio_input (self);
896   create_video_input (self);
897
898   /* The call will be started as soon the pipeline is playing */
899   priv->start_call_when_playing = TRUE;
900
901   priv->dtmf_panel = empathy_create_dtmf_dialpad (G_OBJECT (self),
902       G_CALLBACK (dtmf_button_pressed_cb),
903       G_CALLBACK (dtmf_button_released_cb));
904
905   gtk_box_pack_start (GTK_BOX (priv->pane), priv->dtmf_panel,
906       FALSE, FALSE, 0);
907
908   gtk_box_pack_start (GTK_BOX (priv->pane), priv->details_vbox,
909       FALSE, FALSE, 0);
910
911   gtk_widget_set_sensitive (priv->dtmf_panel, FALSE);
912
913   gtk_widget_show_all (top_vbox);
914
915   gtk_widget_hide (priv->dtmf_panel);
916   gtk_widget_hide (priv->details_vbox);
917
918   priv->fullscreen = empathy_call_window_fullscreen_new (self);
919
920   empathy_call_window_fullscreen_set_video_widget (priv->fullscreen,
921       priv->video_container);
922
923   g_signal_connect (G_OBJECT (priv->fullscreen->leave_fullscreen_button),
924       "clicked", G_CALLBACK (empathy_call_window_fullscreen_cb), self);
925
926   g_signal_connect (G_OBJECT (self), "realize",
927     G_CALLBACK (empathy_call_window_realized_cb), self);
928
929   g_signal_connect (G_OBJECT (self), "delete-event",
930     G_CALLBACK (empathy_call_window_delete_cb), self);
931
932   g_signal_connect (G_OBJECT (self), "window-state-event",
933     G_CALLBACK (empathy_call_window_state_event_cb), self);
934
935   g_signal_connect (G_OBJECT (self), "key-press-event",
936       G_CALLBACK (empathy_call_window_key_press_cb), self);
937
938   priv->timer = g_timer_new ();
939
940   g_object_ref (priv->ui_manager);
941   g_object_unref (gui);
942
943   priv->sound_mgr = empathy_sound_manager_dup_singleton ();
944   priv->mic_menu = empathy_mic_menu_new (self);
945
946   empathy_call_window_show_hangup_button (self, TRUE);
947
948   priv->settings = g_settings_new (EMPATHY_PREFS_CALL_SCHEMA);
949   g_signal_connect (priv->settings, "changed::"EMPATHY_PREFS_CALL_SOUND_VOLUME,
950       G_CALLBACK (empathy_call_window_prefs_volume_changed_cb), self);
951
952   empathy_geometry_bind (GTK_WINDOW (self), "call-window");
953   /* These signals are used to track the window position and save it
954    * when the window is destroyed. We need to do this as we don't want
955    * the window geometry to be saved with the dialpad taken into account. */
956   g_signal_connect (self, "destroy",
957       G_CALLBACK (empathy_call_window_destroyed_cb), self);
958   g_signal_connect (self, "configure-event",
959       G_CALLBACK (empathy_call_window_configure_event_cb), self);
960   g_signal_connect (self, "window-state-event",
961       G_CALLBACK (empathy_call_window_configure_event_cb), self);
962 }
963
964 /* Instead of specifying a width and a height, we specify only one size. That's
965    because we want a square avatar icon.  */
966 static void
967 init_contact_avatar_with_size (EmpathyContact *contact,
968     GtkWidget *image_widget,
969     gint size)
970 {
971   GdkPixbuf *pixbuf_avatar = NULL;
972
973   if (contact != NULL)
974     {
975       pixbuf_avatar = empathy_pixbuf_avatar_from_contact_scaled (contact,
976         size, size);
977     }
978
979   if (pixbuf_avatar == NULL)
980     {
981       pixbuf_avatar = empathy_pixbuf_from_icon_name_sized (
982           EMPATHY_IMAGE_AVATAR_DEFAULT, size);
983     }
984
985   gtk_image_set_from_pixbuf (GTK_IMAGE (image_widget), pixbuf_avatar);
986
987   if (pixbuf_avatar != NULL)
988     g_object_unref (pixbuf_avatar);
989 }
990
991 static void
992 set_window_title (EmpathyCallWindow *self)
993 {
994   EmpathyCallWindowPriv *priv = GET_PRIV (self);
995   gchar *tmp;
996
997   if (priv->contact != NULL)
998     {
999       /* translators: Call is a noun and %s is the contact name. This string
1000        * is used in the window title */
1001       tmp = g_strdup_printf (_("Call with %s"),
1002           empathy_contact_get_alias (priv->contact));
1003       gtk_window_set_title (GTK_WINDOW (self), tmp);
1004       g_free (tmp);
1005     }
1006   else
1007     {
1008       gtk_window_set_title (GTK_WINDOW (self), _("Call with %d participants"));
1009     }
1010 }
1011
1012 static void
1013 set_remote_user_name (EmpathyCallWindow *self,
1014   EmpathyContact *contact)
1015 {
1016   const gchar *alias = empathy_contact_get_alias (contact);
1017   const gchar *status = empathy_contact_get_status (contact);
1018   gchar *label;
1019
1020   label = g_strdup_printf ("%s\n<small>%s</small>", alias, status);
1021   gtk_label_set_markup (GTK_LABEL (self->priv->remote_user_name_toolbar),
1022       label);
1023   g_free (label);
1024 }
1025
1026 static void
1027 contact_name_changed_cb (EmpathyContact *contact,
1028     GParamSpec *pspec,
1029     EmpathyCallWindow *self)
1030 {
1031   set_window_title (self);
1032   set_remote_user_name (self, contact);
1033 }
1034
1035 static void
1036 contact_presence_changed_cb (EmpathyContact *contact,
1037     GParamSpec *pspec,
1038     EmpathyCallWindow *self)
1039 {
1040   set_remote_user_name (self, contact);
1041 }
1042
1043 static void
1044 contact_avatar_changed_cb (EmpathyContact *contact,
1045     GParamSpec *pspec,
1046     EmpathyCallWindow *self)
1047 {
1048   int size;
1049   GtkAllocation allocation;
1050   GtkWidget *avatar_widget;
1051
1052   avatar_widget = self->priv->remote_user_avatar_widget;
1053
1054   gtk_widget_get_allocation (avatar_widget, &allocation);
1055   size = allocation.height;
1056
1057   if (size == 0)
1058     {
1059       /* the widget is not allocated yet, set a default size */
1060       size = MIN (REMOTE_CONTACT_AVATAR_DEFAULT_HEIGHT,
1061           REMOTE_CONTACT_AVATAR_DEFAULT_WIDTH);
1062     }
1063
1064   init_contact_avatar_with_size (contact, avatar_widget, size);
1065
1066   avatar_widget = self->priv->remote_user_avatar_toolbar;
1067
1068   gtk_widget_get_allocation (avatar_widget, &allocation);
1069   size = allocation.height;
1070
1071   if (size == 0)
1072     {
1073       /* the widget is not allocated yet, set a default size */
1074       size = SMALL_TOOLBAR_SIZE;
1075     }
1076
1077   init_contact_avatar_with_size (contact, avatar_widget, size);
1078 }
1079
1080 static void
1081 empathy_call_window_setup_avatars (EmpathyCallWindow *self,
1082     EmpathyCallHandler *handler)
1083 {
1084   EmpathyCallWindowPriv *priv = GET_PRIV (self);
1085
1086   tp_g_signal_connect_object (priv->contact, "notify::name",
1087       G_CALLBACK (contact_name_changed_cb), self, 0);
1088   tp_g_signal_connect_object (priv->contact, "notify::avatar",
1089     G_CALLBACK (contact_avatar_changed_cb), self, 0);
1090   tp_g_signal_connect_object (priv->contact, "notify::presence",
1091       G_CALLBACK (contact_presence_changed_cb), self, 0);
1092
1093   set_window_title (self);
1094   set_remote_user_name (self, priv->contact);
1095
1096   init_contact_avatar_with_size (priv->contact,
1097       priv->remote_user_avatar_widget,
1098       MIN (REMOTE_CONTACT_AVATAR_DEFAULT_WIDTH,
1099           REMOTE_CONTACT_AVATAR_DEFAULT_HEIGHT));
1100
1101   init_contact_avatar_with_size (priv->contact,
1102       priv->remote_user_avatar_toolbar,
1103       SMALL_TOOLBAR_SIZE);
1104
1105   /* The remote avatar is shown by default and will be hidden when we receive
1106      video from the remote side. */
1107   clutter_actor_hide (priv->video_output);
1108   gtk_widget_show (priv->remote_user_avatar_widget);
1109 }
1110
1111 static void
1112 update_send_codec (EmpathyCallWindow *self,
1113     gboolean audio)
1114 {
1115   EmpathyCallWindowPriv *priv = GET_PRIV (self);
1116   FsCodec *codec;
1117   GtkWidget *widget;
1118   gchar *tmp;
1119
1120   if (audio)
1121     {
1122       codec = empathy_call_handler_get_send_audio_codec (priv->handler);
1123       widget = priv->acodec_encoding_label;
1124     }
1125   else
1126     {
1127       codec = empathy_call_handler_get_send_video_codec (priv->handler);
1128       widget = priv->vcodec_encoding_label;
1129     }
1130
1131   if (codec == NULL)
1132     return;
1133
1134   tmp = g_strdup_printf ("%s/%u", codec->encoding_name, codec->clock_rate);
1135   gtk_label_set_text (GTK_LABEL (widget), tmp);
1136   g_free (tmp);
1137 }
1138
1139 static void
1140 send_audio_codec_notify_cb (GObject *object,
1141     GParamSpec *pspec,
1142     gpointer user_data)
1143 {
1144   EmpathyCallWindow *self = user_data;
1145
1146   update_send_codec (self, TRUE);
1147 }
1148
1149 static void
1150 send_video_codec_notify_cb (GObject *object,
1151     GParamSpec *pspec,
1152     gpointer user_data)
1153 {
1154   EmpathyCallWindow *self = user_data;
1155
1156   update_send_codec (self, FALSE);
1157 }
1158
1159 static void
1160 update_recv_codec (EmpathyCallWindow *self,
1161     gboolean audio)
1162 {
1163   EmpathyCallWindowPriv *priv = GET_PRIV (self);
1164   GList *codecs, *l;
1165   GtkWidget *widget;
1166   GString *str = NULL;
1167
1168   if (audio)
1169     {
1170       codecs = empathy_call_handler_get_recv_audio_codecs (priv->handler);
1171       widget = priv->acodec_decoding_label;
1172     }
1173   else
1174     {
1175       codecs = empathy_call_handler_get_recv_video_codecs (priv->handler);
1176       widget = priv->vcodec_decoding_label;
1177     }
1178
1179   if (codecs == NULL)
1180     return;
1181
1182   for (l = codecs; l != NULL; l = g_list_next (l))
1183     {
1184       FsCodec *codec = l->data;
1185
1186       if (str == NULL)
1187         str = g_string_new (NULL);
1188       else
1189         g_string_append (str, ", ");
1190
1191       g_string_append_printf (str, "%s/%u", codec->encoding_name,
1192           codec->clock_rate);
1193     }
1194
1195   gtk_label_set_text (GTK_LABEL (widget), str->str);
1196   g_string_free (str, TRUE);
1197 }
1198
1199 static void
1200 recv_audio_codecs_notify_cb (GObject *object,
1201     GParamSpec *pspec,
1202     gpointer user_data)
1203 {
1204   EmpathyCallWindow *self = user_data;
1205
1206   update_recv_codec (self, TRUE);
1207 }
1208
1209 static void
1210 recv_video_codecs_notify_cb (GObject *object,
1211     GParamSpec *pspec,
1212     gpointer user_data)
1213 {
1214   EmpathyCallWindow *self = user_data;
1215
1216   update_recv_codec (self, FALSE);
1217 }
1218
1219 static const gchar *
1220 candidate_type_to_str (FsCandidate *candidate)
1221 {
1222   switch (candidate->type)
1223     {
1224       case FS_CANDIDATE_TYPE_HOST:
1225         return "host";
1226       case FS_CANDIDATE_TYPE_SRFLX:
1227         return "server reflexive";
1228       case FS_CANDIDATE_TYPE_PRFLX:
1229         return "peer reflexive";
1230       case FS_CANDIDATE_TYPE_RELAY:
1231         return "relay";
1232       case FS_CANDIDATE_TYPE_MULTICAST:
1233         return "multicast";
1234     }
1235
1236   return NULL;
1237 }
1238
1239 static const gchar *
1240 candidate_type_to_desc (FsCandidate *candidate)
1241 {
1242   switch (candidate->type)
1243     {
1244       case FS_CANDIDATE_TYPE_HOST:
1245         return _("The IP address as seen by the machine");
1246       case FS_CANDIDATE_TYPE_SRFLX:
1247         return _("The IP address as seen by a server on the Internet");
1248       case FS_CANDIDATE_TYPE_PRFLX:
1249         return _("The IP address of the peer as seen by the other side");
1250       case FS_CANDIDATE_TYPE_RELAY:
1251         return _("The IP address of a relay server");
1252       case FS_CANDIDATE_TYPE_MULTICAST:
1253         return _("The IP address of the multicast group");
1254     }
1255
1256   return NULL;
1257 }
1258
1259 static void
1260 update_candidat_widget (EmpathyCallWindow *self,
1261     GtkWidget *label,
1262     GtkWidget *img,
1263     FsCandidate *candidate)
1264 {
1265   gchar *str;
1266
1267   g_assert (candidate != NULL);
1268   str = g_strdup_printf ("%s %u (%s)", candidate->ip,
1269       candidate->port, candidate_type_to_str (candidate));
1270
1271   gtk_label_set_text (GTK_LABEL (label), str);
1272   gtk_widget_set_tooltip_text (img, candidate_type_to_desc (candidate));
1273
1274   g_free (str);
1275 }
1276
1277 static void
1278 candidates_changed_cb (GObject *object,
1279     FsMediaType type,
1280     EmpathyCallWindow *self)
1281 {
1282   EmpathyCallWindowPriv *priv = GET_PRIV (self);
1283   FsCandidate *candidate = NULL;
1284
1285   if (type == FS_MEDIA_TYPE_VIDEO)
1286     {
1287       /* Update remote candidate */
1288       candidate = empathy_call_handler_get_video_remote_candidate (
1289           priv->handler);
1290
1291       update_candidat_widget (self, priv->video_remote_candidate_label,
1292           priv->video_remote_candidate_info_img, candidate);
1293
1294       /* Update local candidate */
1295       candidate = empathy_call_handler_get_video_local_candidate (
1296           priv->handler);
1297
1298       update_candidat_widget (self, priv->video_local_candidate_label,
1299           priv->video_local_candidate_info_img, candidate);
1300     }
1301   else
1302     {
1303       /* Update remote candidate */
1304       candidate = empathy_call_handler_get_audio_remote_candidate (
1305           priv->handler);
1306
1307       update_candidat_widget (self, priv->audio_remote_candidate_label,
1308           priv->audio_remote_candidate_info_img, candidate);
1309
1310       /* Update local candidate */
1311       candidate = empathy_call_handler_get_audio_local_candidate (
1312           priv->handler);
1313
1314       update_candidat_widget (self, priv->audio_local_candidate_label,
1315           priv->audio_local_candidate_info_img, candidate);
1316     }
1317 }
1318
1319 static void
1320 empathy_call_window_constructed (GObject *object)
1321 {
1322   EmpathyCallWindow *self = EMPATHY_CALL_WINDOW (object);
1323   EmpathyCallWindowPriv *priv = GET_PRIV (self);
1324   TpyCallChannel *call;
1325
1326   g_assert (priv->handler != NULL);
1327
1328   g_object_get (priv->handler, "call-channel", &call, NULL);
1329   priv->outgoing = (call == NULL);
1330   if (call != NULL)
1331     g_object_unref (call);
1332
1333   g_object_get (priv->handler, "target-contact", &priv->contact, NULL);
1334   g_assert (priv->contact != NULL);
1335
1336   empathy_call_window_setup_avatars (self, priv->handler);
1337   empathy_call_window_set_state_connecting (self);
1338
1339   if (!empathy_call_handler_has_initial_video (priv->handler))
1340     {
1341       gtk_toggle_tool_button_set_active (
1342           GTK_TOGGLE_TOOL_BUTTON (priv->camera_button), FALSE);
1343     }
1344   /* If call has InitialVideo, the preview will be started once the call has
1345    * been started (start_call()). */
1346
1347   update_send_codec (self, TRUE);
1348   update_send_codec (self, FALSE);
1349   update_recv_codec (self, TRUE);
1350   update_recv_codec (self, FALSE);
1351
1352   tp_g_signal_connect_object (priv->handler, "notify::send-audio-codec",
1353       G_CALLBACK (send_audio_codec_notify_cb), self, 0);
1354   tp_g_signal_connect_object (priv->handler, "notify::send-video-codec",
1355       G_CALLBACK (send_video_codec_notify_cb), self, 0);
1356   tp_g_signal_connect_object (priv->handler, "notify::recv-audio-codecs",
1357       G_CALLBACK (recv_audio_codecs_notify_cb), self, 0);
1358   tp_g_signal_connect_object (priv->handler, "notify::recv-video-codecs",
1359       G_CALLBACK (recv_video_codecs_notify_cb), self, 0);
1360
1361   tp_g_signal_connect_object (priv->handler, "candidates-changed",
1362       G_CALLBACK (candidates_changed_cb), self, 0);
1363 }
1364
1365 static void empathy_call_window_dispose (GObject *object);
1366 static void empathy_call_window_finalize (GObject *object);
1367
1368 static void
1369 empathy_call_window_set_property (GObject *object,
1370   guint property_id, const GValue *value, GParamSpec *pspec)
1371 {
1372   EmpathyCallWindowPriv *priv = GET_PRIV (object);
1373
1374   switch (property_id)
1375     {
1376       case PROP_CALL_HANDLER:
1377         priv->handler = g_value_dup_object (value);
1378         break;
1379       default:
1380         G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
1381     }
1382 }
1383
1384 static void
1385 empathy_call_window_get_property (GObject *object,
1386   guint property_id, GValue *value, GParamSpec *pspec)
1387 {
1388   EmpathyCallWindowPriv *priv = GET_PRIV (object);
1389
1390   switch (property_id)
1391     {
1392       case PROP_CALL_HANDLER:
1393         g_value_set_object (value, priv->handler);
1394         break;
1395       default:
1396         G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
1397     }
1398 }
1399
1400 static void
1401 empathy_call_window_class_init (
1402   EmpathyCallWindowClass *empathy_call_window_class)
1403 {
1404   GObjectClass *object_class = G_OBJECT_CLASS (empathy_call_window_class);
1405   GParamSpec *param_spec;
1406
1407   g_type_class_add_private (empathy_call_window_class,
1408     sizeof (EmpathyCallWindowPriv));
1409
1410   object_class->constructed = empathy_call_window_constructed;
1411   object_class->set_property = empathy_call_window_set_property;
1412   object_class->get_property = empathy_call_window_get_property;
1413
1414   object_class->dispose = empathy_call_window_dispose;
1415   object_class->finalize = empathy_call_window_finalize;
1416
1417   param_spec = g_param_spec_object ("handler",
1418     "handler", "The call handler",
1419     EMPATHY_TYPE_CALL_HANDLER,
1420     G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS);
1421   g_object_class_install_property (object_class,
1422     PROP_CALL_HANDLER, param_spec);
1423 }
1424
1425 void
1426 empathy_call_window_dispose (GObject *object)
1427 {
1428   EmpathyCallWindow *self = EMPATHY_CALL_WINDOW (object);
1429   EmpathyCallWindowPriv *priv = GET_PRIV (self);
1430
1431   if (priv->dispose_has_run)
1432     return;
1433
1434   priv->dispose_has_run = TRUE;
1435
1436   if (priv->handler != NULL)
1437     {
1438       empathy_call_handler_stop_call (priv->handler);
1439       tp_clear_object (&priv->handler);
1440     }
1441
1442   if (priv->bus_message_source_id != 0)
1443     {
1444       g_source_remove (priv->bus_message_source_id);
1445       priv->bus_message_source_id = 0;
1446     }
1447
1448   if (priv->got_video_src > 0)
1449     {
1450       g_source_remove (priv->got_video_src);
1451       priv->got_video_src = 0;
1452     }
1453
1454   tp_clear_object (&priv->pipeline);
1455   tp_clear_object (&priv->video_input);
1456   tp_clear_object (&priv->audio_input);
1457   tp_clear_object (&priv->video_tee);
1458   tp_clear_object (&priv->ui_manager);
1459   tp_clear_object (&priv->fullscreen);
1460   tp_clear_object (&priv->camera_monitor);
1461   tp_clear_object (&priv->settings);
1462
1463   g_list_free_full (priv->notifiers, g_object_unref);
1464
1465   if (priv->timer_id != 0)
1466     g_source_remove (priv->timer_id);
1467   priv->timer_id = 0;
1468
1469   if (priv->contact != NULL)
1470     {
1471       g_signal_handlers_disconnect_by_func (priv->contact,
1472           contact_name_changed_cb, self);
1473       priv->contact = NULL;
1474     }
1475
1476
1477   tp_clear_object (&priv->sound_mgr);
1478
1479   tp_clear_object (&priv->mic_menu);
1480
1481   G_OBJECT_CLASS (empathy_call_window_parent_class)->dispose (object);
1482 }
1483
1484 static void
1485 disconnect_video_output_motion_handler (EmpathyCallWindow *self)
1486 {
1487   EmpathyCallWindowPriv *priv = GET_PRIV (self);
1488
1489   if (priv->video_output_motion_handler_id != 0)
1490     {
1491       g_signal_handler_disconnect (G_OBJECT (priv->video_container),
1492           priv->video_output_motion_handler_id);
1493       priv->video_output_motion_handler_id = 0;
1494     }
1495 }
1496
1497 void
1498 empathy_call_window_finalize (GObject *object)
1499 {
1500   EmpathyCallWindow *self = EMPATHY_CALL_WINDOW (object);
1501   EmpathyCallWindowPriv *priv = GET_PRIV (self);
1502
1503   disconnect_video_output_motion_handler (self);
1504
1505   /* free any data held directly by the object here */
1506   g_mutex_free (priv->lock);
1507
1508   g_timer_destroy (priv->timer);
1509
1510   G_OBJECT_CLASS (empathy_call_window_parent_class)->finalize (object);
1511 }
1512
1513
1514 EmpathyCallWindow *
1515 empathy_call_window_new (EmpathyCallHandler *handler)
1516 {
1517   return EMPATHY_CALL_WINDOW (
1518     g_object_new (EMPATHY_TYPE_CALL_WINDOW, "handler", handler, NULL));
1519 }
1520
1521 static void
1522 empathy_call_window_conference_added_cb (EmpathyCallHandler *handler,
1523   GstElement *conference, gpointer user_data)
1524 {
1525   EmpathyCallWindow *self = EMPATHY_CALL_WINDOW (user_data);
1526   EmpathyCallWindowPriv *priv = GET_PRIV (self);
1527   FsElementAddedNotifier *notifier;
1528   GKeyFile *keyfile;
1529
1530   DEBUG ("Conference added");
1531
1532   /* Add notifier to set the various element properties as needed */
1533   notifier = fs_element_added_notifier_new ();
1534   keyfile = fs_utils_get_default_element_properties (conference);
1535
1536   if (keyfile != NULL)
1537     fs_element_added_notifier_set_properties_from_keyfile (notifier, keyfile);
1538
1539   fs_element_added_notifier_add (notifier, GST_BIN (priv->pipeline));
1540
1541   priv->notifiers = g_list_prepend (priv->notifiers, notifier);
1542
1543   gst_bin_add (GST_BIN (priv->pipeline), conference);
1544   gst_element_set_state (conference, GST_STATE_PLAYING);
1545 }
1546
1547 static void
1548 empathy_call_window_conference_removed_cb (EmpathyCallHandler *handler,
1549   GstElement *conference, gpointer user_data)
1550 {
1551   EmpathyCallWindow *self = EMPATHY_CALL_WINDOW (user_data);
1552   EmpathyCallWindowPriv *priv = GET_PRIV (self);
1553
1554   gst_bin_remove (GST_BIN (priv->pipeline), conference);
1555   gst_element_set_state (conference, GST_STATE_NULL);
1556 }
1557
1558 static gboolean
1559 empathy_call_window_reset_pipeline (EmpathyCallWindow *self)
1560 {
1561   GstStateChangeReturn state_change_return;
1562   EmpathyCallWindowPriv *priv = GET_PRIV (self);
1563
1564   if (priv->pipeline == NULL)
1565     return TRUE;
1566
1567   if (priv->bus_message_source_id != 0)
1568     {
1569       g_source_remove (priv->bus_message_source_id);
1570       priv->bus_message_source_id = 0;
1571     }
1572
1573   state_change_return = gst_element_set_state (priv->pipeline, GST_STATE_NULL);
1574
1575   if (state_change_return == GST_STATE_CHANGE_SUCCESS ||
1576         state_change_return == GST_STATE_CHANGE_NO_PREROLL)
1577     {
1578       if (priv->pipeline != NULL)
1579         g_object_unref (priv->pipeline);
1580       priv->pipeline = NULL;
1581
1582       if (priv->audio_output != NULL)
1583         g_object_unref (priv->audio_output);
1584       priv->audio_output = NULL;
1585
1586       if (priv->video_tee != NULL)
1587         g_object_unref (priv->video_tee);
1588       priv->video_tee = NULL;
1589
1590       if (priv->video_preview != NULL)
1591         clutter_actor_destroy (priv->video_preview);
1592       priv->video_preview = NULL;
1593
1594       priv->funnel = NULL;
1595
1596       create_pipeline (self);
1597       /* Call will be started when user will hit the 'redial' button */
1598       priv->start_call_when_playing = FALSE;
1599       gst_element_set_state (priv->pipeline, GST_STATE_PAUSED);
1600
1601       return TRUE;
1602     }
1603   else
1604     {
1605       g_message ("Error: could not destroy pipeline. Closing call window");
1606       gtk_widget_destroy (GTK_WIDGET (self));
1607
1608       return FALSE;
1609     }
1610 }
1611
1612 static void
1613 reset_details_pane (EmpathyCallWindow *self)
1614 {
1615   EmpathyCallWindowPriv *priv = GET_PRIV (self);
1616
1617   gtk_label_set_text (GTK_LABEL (priv->vcodec_encoding_label), _("Unknown"));
1618   gtk_label_set_text (GTK_LABEL (priv->acodec_encoding_label), _("Unknown"));
1619   gtk_label_set_text (GTK_LABEL (priv->vcodec_decoding_label), _("Unknown"));
1620   gtk_label_set_text (GTK_LABEL (priv->acodec_decoding_label), _("Unknown"));
1621 }
1622
1623 static gboolean
1624 empathy_call_window_disconnected (EmpathyCallWindow *self,
1625     gboolean restart)
1626 {
1627   gboolean could_disconnect = FALSE;
1628   EmpathyCallWindowPriv *priv = GET_PRIV (self);
1629   gboolean could_reset_pipeline;
1630
1631   /* Leave full screen mode if needed */
1632   gtk_window_unfullscreen (GTK_WINDOW (self));
1633
1634   gtk_action_set_sensitive (priv->menu_fullscreen, FALSE);
1635   gtk_widget_set_sensitive (priv->dtmf_panel, FALSE);
1636
1637   could_reset_pipeline = empathy_call_window_reset_pipeline (self);
1638
1639   if (priv->call_state == CONNECTING)
1640       empathy_sound_manager_stop (priv->sound_mgr, EMPATHY_SOUND_PHONE_OUTGOING);
1641
1642   if (priv->call_state != REDIALING)
1643     priv->call_state = DISCONNECTED;
1644
1645   if (could_reset_pipeline)
1646     {
1647       g_mutex_lock (priv->lock);
1648
1649       g_timer_stop (priv->timer);
1650
1651       if (priv->timer_id != 0)
1652         g_source_remove (priv->timer_id);
1653       priv->timer_id = 0;
1654
1655       g_mutex_unlock (priv->lock);
1656
1657       if (!restart)
1658         /* We are about to destroy the window, no need to update it or create
1659          * a video preview */
1660         return TRUE;
1661
1662       empathy_call_window_status_message (self, _("Disconnected"));
1663
1664       empathy_call_window_show_hangup_button (self, FALSE);
1665
1666       /* Unsensitive the camera and mic button */
1667       gtk_widget_set_sensitive (priv->camera_button, FALSE);
1668       gtk_widget_set_sensitive (priv->mic_button, FALSE);
1669
1670       /* Be sure that the mic button is enabled */
1671       gtk_toggle_tool_button_set_active (
1672           GTK_TOGGLE_TOOL_BUTTON (priv->mic_button), TRUE);
1673
1674       if (priv->camera_state == CAMERA_STATE_ON)
1675         {
1676           /* Restart the preview with the new pipeline. */
1677           display_video_preview (self, TRUE);
1678         }
1679
1680       /* destroy the video output; it will be recreated when we'll redial */
1681       disconnect_video_output_motion_handler (self);
1682       if (priv->video_output != NULL)
1683         clutter_actor_destroy (priv->video_output);
1684       priv->video_output = NULL;
1685       if (priv->got_video_src > 0)
1686         {
1687           g_source_remove (priv->got_video_src);
1688           priv->got_video_src = 0;
1689         }
1690
1691       gtk_widget_show (priv->remote_user_avatar_widget);
1692
1693       reset_details_pane (self);
1694
1695       priv->sending_video = FALSE;
1696       priv->call_started = FALSE;
1697
1698       could_disconnect = TRUE;
1699
1700       /* TODO: display the self avatar of the preview (depends if the "Always
1701        * Show Video Preview" is enabled or not) */
1702     }
1703
1704   return could_disconnect;
1705 }
1706
1707
1708 static void
1709 empathy_call_window_channel_closed_cb (EmpathyCallHandler *handler,
1710     gpointer user_data)
1711 {
1712   EmpathyCallWindow *self = EMPATHY_CALL_WINDOW (user_data);
1713   EmpathyCallWindowPriv *priv = GET_PRIV (self);
1714
1715   if (empathy_call_window_disconnected (self, TRUE) &&
1716       priv->call_state == REDIALING)
1717       empathy_call_window_restart_call (self);
1718 }
1719
1720 static gboolean
1721 empathy_call_window_sink_removed_cb (EmpathyCallHandler *handler,
1722     GstPad *sink,
1723     FsMediaType media_type,
1724     EmpathyCallWindow *self)
1725 {
1726   EmpathyCallWindowPriv *priv = GET_PRIV (self);
1727
1728   DEBUG ("removing content");
1729
1730   /*
1731    * This assumes that there is only one video stream per channel...
1732    */
1733
1734   if ((guint) media_type == FS_MEDIA_TYPE_VIDEO)
1735     {
1736       if (priv->funnel != NULL)
1737         {
1738           GstElement *output;
1739
1740           output = priv->video_output_sink;
1741
1742           gst_element_set_state (output, GST_STATE_NULL);
1743           gst_element_set_state (priv->funnel, GST_STATE_NULL);
1744
1745           gst_bin_remove (GST_BIN (priv->pipeline), output);
1746           gst_bin_remove (GST_BIN (priv->pipeline), priv->funnel);
1747           priv->funnel = NULL;
1748           return TRUE;
1749         }
1750     }
1751   else if (media_type == FS_MEDIA_TYPE_AUDIO)
1752     {
1753       if (priv->audio_output != NULL)
1754         {
1755           gst_element_set_state (priv->audio_output, GST_STATE_NULL);
1756
1757           gst_bin_remove (GST_BIN (priv->pipeline), priv->audio_output);
1758           priv->audio_output = NULL;
1759           return TRUE;
1760         }
1761     }
1762
1763   return FALSE;
1764 }
1765
1766 /* Called with global lock held */
1767 static GstPad *
1768 empathy_call_window_get_video_sink_pad (EmpathyCallWindow *self)
1769 {
1770   EmpathyCallWindowPriv *priv = GET_PRIV (self);
1771   GstPad *pad;
1772   GstElement *output;
1773
1774   if (priv->funnel == NULL)
1775     {
1776       output = priv->video_output_sink;
1777
1778       priv->funnel = gst_element_factory_make ("fsfunnel", NULL);
1779
1780       if (!priv->funnel)
1781         {
1782           g_warning ("Could not create fsfunnel");
1783           return NULL;
1784         }
1785
1786       if (!gst_bin_add (GST_BIN (priv->pipeline), priv->funnel))
1787         {
1788           gst_object_unref (priv->funnel);
1789           priv->funnel = NULL;
1790           g_warning ("Could  not add funnel to pipeline");
1791           return NULL;
1792         }
1793
1794       if (!gst_bin_add (GST_BIN (priv->pipeline), output))
1795         {
1796           g_warning ("Could not add the video output widget to the pipeline");
1797           goto error;
1798         }
1799
1800       if (!gst_element_link (priv->funnel, output))
1801         {
1802           g_warning ("Could not link output sink to funnel");
1803           goto error_output_added;
1804         }
1805
1806       if (gst_element_set_state (output, GST_STATE_PLAYING) == GST_STATE_CHANGE_FAILURE)
1807         {
1808           g_warning ("Could not start video sink");
1809           goto error_output_added;
1810         }
1811
1812       if (gst_element_set_state (priv->funnel, GST_STATE_PLAYING) == GST_STATE_CHANGE_FAILURE)
1813         {
1814           g_warning ("Could not start funnel");
1815           goto error_output_added;
1816         }
1817     }
1818
1819   pad = gst_element_get_request_pad (priv->funnel, "sink%d");
1820
1821   if (!pad)
1822     g_warning ("Could not get request pad from funnel");
1823
1824   return pad;
1825
1826
1827  error_output_added:
1828
1829   gst_element_set_locked_state (priv->funnel, TRUE);
1830   gst_element_set_locked_state (output, TRUE);
1831
1832   gst_element_set_state (priv->funnel, GST_STATE_NULL);
1833   gst_element_set_state (output, GST_STATE_NULL);
1834
1835   gst_bin_remove (GST_BIN (priv->pipeline), output);
1836   gst_element_set_locked_state (output, FALSE);
1837
1838  error:
1839
1840   gst_bin_remove (GST_BIN (priv->pipeline), priv->funnel);
1841   priv->funnel = NULL;
1842
1843   return NULL;
1844 }
1845
1846 /* Called with global lock held */
1847 static GstPad *
1848 empathy_call_window_get_audio_sink_pad (EmpathyCallWindow *self)
1849 {
1850   EmpathyCallWindowPriv *priv = GET_PRIV (self);
1851   GstPad *pad;
1852   GstPadTemplate *template;
1853
1854   if (priv->audio_output == NULL)
1855     {
1856       priv->audio_output = empathy_audio_sink_new ();
1857       g_object_ref_sink (priv->audio_output);
1858
1859       if (!gst_bin_add (GST_BIN (priv->pipeline), priv->audio_output))
1860         {
1861           g_warning ("Could not add audio sink to pipeline");
1862           g_object_unref (priv->audio_output);
1863           goto error_add_output;
1864         }
1865
1866       if (gst_element_set_state (priv->audio_output, GST_STATE_PLAYING) == GST_STATE_CHANGE_FAILURE)
1867         {
1868           g_warning ("Could not start audio sink");
1869           goto error;
1870         }
1871     }
1872
1873   template = gst_element_class_get_pad_template (
1874     GST_ELEMENT_GET_CLASS (priv->audio_output), "sink%d");
1875
1876   pad = gst_element_request_pad (priv->audio_output,
1877     template, NULL, NULL);
1878
1879   if (pad == NULL)
1880     {
1881       g_warning ("Could not get sink pad from sink");
1882       return NULL;
1883     }
1884
1885   return pad;
1886
1887 error:
1888   gst_element_set_locked_state (priv->audio_output, TRUE);
1889   gst_element_set_state (priv->audio_output, GST_STATE_NULL);
1890   gst_bin_remove (GST_BIN (priv->pipeline), priv->audio_output);
1891   priv->audio_output = NULL;
1892
1893 error_add_output:
1894
1895   return NULL;
1896 }
1897
1898 static gboolean
1899 empathy_call_window_update_timer (gpointer user_data)
1900 {
1901   EmpathyCallWindow *self = EMPATHY_CALL_WINDOW (user_data);
1902   EmpathyCallWindowPriv *priv = GET_PRIV (self);
1903   gchar *str;
1904   gdouble time_;
1905
1906   time_ = g_timer_elapsed (priv->timer, NULL);
1907
1908   /* Translators: 'status - minutes:seconds' the caller has been connected */
1909   str = g_strdup_printf (_("%s â€” %d:%02dm"),
1910       priv->call_state == HELD ? _("On hold") : _("Connected"),
1911       (int) time_ / 60, (int) time_ % 60);
1912   empathy_call_window_status_message (self, str);
1913   g_free (str);
1914
1915   return TRUE;
1916 }
1917
1918 #if 0
1919 static void
1920 display_error (EmpathyCallWindow *self,
1921     TpyCallChannel *call,
1922     const gchar *img,
1923     const gchar *title,
1924     const gchar *desc,
1925     const gchar *details)
1926 {
1927   EmpathyCallWindowPriv *priv = GET_PRIV (self);
1928   GtkWidget *info_bar;
1929   GtkWidget *content_area;
1930   GtkWidget *hbox;
1931   GtkWidget *vbox;
1932   GtkWidget *image;
1933   GtkWidget *label;
1934   gchar *txt;
1935
1936   /* Create info bar */
1937   info_bar = gtk_info_bar_new_with_buttons (GTK_STOCK_CLOSE, GTK_RESPONSE_CLOSE,
1938       NULL);
1939
1940   gtk_info_bar_set_message_type (GTK_INFO_BAR (info_bar), GTK_MESSAGE_WARNING);
1941
1942   content_area = gtk_info_bar_get_content_area (GTK_INFO_BAR (info_bar));
1943
1944   /* hbox containing the image and the messages vbox */
1945   hbox = gtk_hbox_new (FALSE, 3);
1946   gtk_container_add (GTK_CONTAINER (content_area), hbox);
1947
1948   /* Add image */
1949   image = gtk_image_new_from_icon_name (img, GTK_ICON_SIZE_DIALOG);
1950   gtk_box_pack_start (GTK_BOX (hbox), image, FALSE, FALSE, 0);
1951
1952   /* vbox containing the main message and the details expander */
1953   vbox = gtk_vbox_new (FALSE, 3);
1954   gtk_box_pack_start (GTK_BOX (hbox), vbox, TRUE, TRUE, 0);
1955
1956   /* Add text */
1957   txt = g_strdup_printf ("<b>%s</b>\n%s", title, desc);
1958
1959   label = gtk_label_new (NULL);
1960   gtk_label_set_markup (GTK_LABEL (label), txt);
1961   gtk_label_set_line_wrap (GTK_LABEL (label), TRUE);
1962   gtk_misc_set_alignment (GTK_MISC (label), 0, 0);
1963   g_free (txt);
1964
1965   gtk_box_pack_start (GTK_BOX (vbox), label, TRUE, TRUE, 0);
1966
1967   /* Add details */
1968   if (details != NULL)
1969     {
1970       GtkWidget *expander;
1971
1972       expander = gtk_expander_new (_("Technical Details"));
1973
1974       txt = g_strdup_printf ("<i>%s</i>", details);
1975
1976       label = gtk_label_new (NULL);
1977       gtk_label_set_markup (GTK_LABEL (label), txt);
1978       gtk_label_set_line_wrap (GTK_LABEL (label), TRUE);
1979       gtk_misc_set_alignment (GTK_MISC (label), 0, 0);
1980       g_free (txt);
1981
1982       gtk_container_add (GTK_CONTAINER (expander), label);
1983       gtk_box_pack_start (GTK_BOX (vbox), expander, TRUE, TRUE, 0);
1984     }
1985
1986   g_signal_connect (info_bar, "response",
1987       G_CALLBACK (gtk_widget_destroy), NULL);
1988
1989   gtk_box_pack_start (GTK_BOX (priv->errors_vbox), info_bar,
1990       FALSE, FALSE, CONTENT_HBOX_CHILDREN_PACKING_PADDING);
1991   gtk_widget_show_all (info_bar);
1992 }
1993
1994 static gchar *
1995 media_stream_error_to_txt (EmpathyCallWindow *self,
1996     TpyCallChannel *call,
1997     gboolean audio,
1998     TpMediaStreamError error)
1999 {
2000   EmpathyCallWindowPriv *priv = GET_PRIV (self);
2001   const gchar *cm = NULL;
2002   gchar *url;
2003   gchar *result;
2004
2005   switch (error)
2006     {
2007       case TP_MEDIA_STREAM_ERROR_CODEC_NEGOTIATION_FAILED:
2008         if (audio)
2009           return g_strdup_printf (
2010               _("%s's software does not understand any of the audio formats "
2011                 "supported by your computer"),
2012             empathy_contact_get_alias (priv->contact));
2013         else
2014           return g_strdup_printf (
2015               _("%s's software does not understand any of the video formats "
2016                 "supported by your computer"),
2017             empathy_contact_get_alias (priv->contact));
2018
2019       case TP_MEDIA_STREAM_ERROR_CONNECTION_FAILED:
2020         return g_strdup_printf (
2021             _("Can't establish a connection to %s. "
2022               "One of you might be on a network that does not allow "
2023               "direct connections."),
2024           empathy_contact_get_alias (priv->contact));
2025
2026       case TP_MEDIA_STREAM_ERROR_NETWORK_ERROR:
2027           return g_strdup (_("There was a failure on the network"));
2028
2029       case TP_MEDIA_STREAM_ERROR_NO_CODECS:
2030         if (audio)
2031           return g_strdup (_("The audio formats necessary for this call "
2032                 "are not installed on your computer"));
2033         else
2034           return g_strdup (_("The video formats necessary for this call "
2035                 "are not installed on your computer"));
2036
2037       case TP_MEDIA_STREAM_ERROR_INVALID_CM_BEHAVIOR:
2038         tp_connection_parse_object_path (
2039             tp_channel_borrow_connection (TP_CHANNEL (call)),
2040             NULL, &cm);
2041
2042         url = g_strdup_printf ("http://bugs.freedesktop.org/enter_bug.cgi?"
2043             "product=Telepathy&amp;component=%s", cm);
2044
2045         result = g_strdup_printf (
2046             _("Something unexpected happened in a Telepathy component. "
2047               "Please <a href=\"%s\">report this bug</a> and attach "
2048               "logs gathered from the 'Debug' window in the Help menu."), url);
2049
2050         g_free (url);
2051         g_free (cm);
2052         return result;
2053
2054       case TP_MEDIA_STREAM_ERROR_MEDIA_ERROR:
2055         return g_strdup (_("There was a failure in the call engine"));
2056
2057       case TP_MEDIA_STREAM_ERROR_EOS:
2058         return g_strdup (_("The end of the stream was reached"));
2059
2060       case TP_MEDIA_STREAM_ERROR_UNKNOWN:
2061       default:
2062         return NULL;
2063     }
2064 }
2065
2066 static void
2067 empathy_call_window_stream_error (EmpathyCallWindow *self,
2068     TpyCallChannel *call,
2069     gboolean audio,
2070     guint code,
2071     const gchar *msg,
2072     const gchar *icon,
2073     const gchar *title)
2074 {
2075   gchar *desc;
2076
2077   desc = media_stream_error_to_txt (self, call, audio, code);
2078   if (desc == NULL)
2079     {
2080       /* No description, use the error message. That's not great as it's not
2081        * localized but it's better than nothing. */
2082       display_error (self, call, icon, title, msg, NULL);
2083     }
2084   else
2085     {
2086       display_error (self, call, icon, title, desc, msg);
2087       g_free (desc);
2088     }
2089 }
2090
2091 static void
2092 empathy_call_window_audio_stream_error (TpyCallChannel *call,
2093     guint code,
2094     const gchar *msg,
2095     EmpathyCallWindow *self)
2096 {
2097   empathy_call_window_stream_error (self, call, TRUE, code, msg,
2098       "gnome-stock-mic", _("Can't establish audio stream"));
2099 }
2100
2101 static void
2102 empathy_call_window_video_stream_error (TpyCallChannel *call,
2103     guint code,
2104     const gchar *msg,
2105     EmpathyCallWindow *self)
2106 {
2107   empathy_call_window_stream_error (self, call, FALSE, code, msg,
2108       "camera-web", _("Can't establish video stream"));
2109 }
2110 #endif
2111
2112 static void
2113 empathy_call_window_state_changed_cb (EmpathyCallHandler *handler,
2114     TpyCallState state,
2115     EmpathyCallWindow *self)
2116 {
2117   EmpathyCallWindowPriv *priv = GET_PRIV (self);
2118   TpyCallChannel *call;
2119   gboolean can_send_video;
2120
2121   if (state != TPY_CALL_STATE_ACCEPTED)
2122     return;
2123
2124   if (priv->call_state == CONNECTED)
2125     return;
2126
2127   g_timer_start (priv->timer);
2128   priv->call_state = CONNECTED;
2129
2130   empathy_sound_manager_stop (priv->sound_mgr, EMPATHY_SOUND_PHONE_OUTGOING);
2131
2132   can_send_video = priv->video_input != NULL &&
2133     empathy_contact_can_voip_video (priv->contact) &&
2134     empathy_camera_monitor_get_available (priv->camera_monitor);
2135
2136   g_object_get (priv->handler, "call-channel", &call, NULL);
2137
2138   if (tpy_call_channel_has_dtmf (call))
2139     gtk_widget_set_sensitive (priv->dtmf_panel, TRUE);
2140
2141   if (priv->video_input == NULL)
2142     empathy_call_window_set_send_video (self, CAMERA_STATE_OFF);
2143
2144   gtk_widget_set_sensitive (priv->camera_button, can_send_video);
2145
2146   empathy_call_window_show_hangup_button (self, TRUE);
2147
2148   gtk_widget_set_sensitive (priv->mic_button, TRUE);
2149
2150   clutter_actor_hide (priv->video_output);
2151   gtk_widget_show (priv->remote_user_avatar_widget);
2152
2153   g_object_unref (call);
2154
2155   g_mutex_lock (priv->lock);
2156
2157   priv->timer_id = g_timeout_add_seconds (1,
2158     empathy_call_window_update_timer, self);
2159
2160   g_mutex_unlock (priv->lock);
2161
2162   empathy_call_window_update_timer (self);
2163
2164   gtk_action_set_sensitive (priv->menu_fullscreen, TRUE);
2165 }
2166
2167 static gboolean
2168 empathy_call_window_show_video_output_cb (gpointer user_data)
2169 {
2170   EmpathyCallWindow *self = EMPATHY_CALL_WINDOW (user_data);
2171
2172   if (self->priv->video_output != NULL)
2173     {
2174       gtk_widget_hide (self->priv->remote_user_avatar_widget);
2175       clutter_actor_show (self->priv->video_output);
2176     }
2177
2178   return FALSE;
2179 }
2180
2181 static gboolean
2182 empathy_call_window_check_video_cb (gpointer data)
2183 {
2184   EmpathyCallWindow *self = data;
2185
2186   if (self->priv->got_video)
2187     {
2188       self->priv->got_video = FALSE;
2189       return TRUE;
2190     }
2191
2192   /* No video in the last N seconds, display the remote avatar */
2193   empathy_call_window_show_video_output (self, FALSE);
2194
2195   return TRUE;
2196 }
2197
2198 /* Called from the streaming thread */
2199 static gboolean
2200 empathy_call_window_video_probe_cb (GstPad *pad,
2201     GstMiniObject *mini_obj,
2202     EmpathyCallWindow *self)
2203 {
2204   /* Ignore events */
2205   if (GST_IS_EVENT (mini_obj))
2206     return TRUE;
2207
2208   if (G_UNLIKELY (!self->priv->got_video))
2209     {
2210       /* show the remote video */
2211       g_idle_add_full (G_PRIORITY_DEFAULT_IDLE,
2212           empathy_call_window_show_video_output_cb,
2213           g_object_ref (self), g_object_unref);
2214
2215       self->priv->got_video = TRUE;
2216     }
2217
2218   return TRUE;
2219 }
2220
2221 /* Called from the streaming thread */
2222 static gboolean
2223 empathy_call_window_src_added_cb (EmpathyCallHandler *handler,
2224   GstPad *src, guint media_type, gpointer user_data)
2225 {
2226   EmpathyCallWindow *self = EMPATHY_CALL_WINDOW (user_data);
2227   EmpathyCallWindowPriv *priv = GET_PRIV (self);
2228   gboolean retval = FALSE;
2229
2230   GstPad *pad;
2231
2232   g_mutex_lock (priv->lock);
2233
2234   switch (media_type)
2235     {
2236       case TP_MEDIA_STREAM_TYPE_AUDIO:
2237         pad = empathy_call_window_get_audio_sink_pad (self);
2238         break;
2239       case TP_MEDIA_STREAM_TYPE_VIDEO:
2240         g_idle_add (empathy_call_window_show_video_output_cb, self);
2241         pad = empathy_call_window_get_video_sink_pad (self);
2242
2243         gst_pad_add_data_probe (src,
2244             G_CALLBACK (empathy_call_window_video_probe_cb), self);
2245         if (priv->got_video_src > 0)
2246           g_source_remove (priv->got_video_src);
2247         priv->got_video_src = g_timeout_add_seconds (5,
2248             empathy_call_window_check_video_cb, self);
2249         break;
2250       default:
2251         g_assert_not_reached ();
2252     }
2253
2254   if (pad == NULL)
2255     goto out;
2256
2257   if (GST_PAD_LINK_FAILED (gst_pad_link (src, pad)))
2258       g_warning ("Could not link %s sink pad",
2259           media_type == TP_MEDIA_STREAM_TYPE_AUDIO ? "audio" : "video");
2260   else
2261       retval = TRUE;
2262
2263   gst_object_unref (pad);
2264
2265  out:
2266
2267   /* If no sink could be linked, try to add fakesink to prevent the whole call
2268    * aborting */
2269
2270   if (!retval)
2271     {
2272       GstElement *fakesink = gst_element_factory_make ("fakesink", NULL);
2273
2274       if (gst_bin_add (GST_BIN (priv->pipeline), fakesink))
2275         {
2276           GstPad *sinkpad = gst_element_get_static_pad (fakesink, "sink");
2277           if (gst_element_set_state (fakesink, GST_STATE_PLAYING) == GST_STATE_CHANGE_FAILURE ||
2278               GST_PAD_LINK_FAILED (gst_pad_link (src, sinkpad)))
2279             {
2280               gst_element_set_locked_state (fakesink, TRUE);
2281               gst_element_set_state (fakesink, GST_STATE_NULL);
2282               gst_bin_remove (GST_BIN (priv->pipeline), fakesink);
2283             }
2284           else
2285             {
2286               DEBUG ("Could not link real sink, linked fakesink instead");
2287             }
2288           gst_object_unref (sinkpad);
2289         }
2290       else
2291         {
2292           gst_object_unref (fakesink);
2293         }
2294     }
2295
2296
2297   g_mutex_unlock (priv->lock);
2298
2299   return TRUE;
2300 }
2301
2302 static gboolean
2303 empathy_call_window_sink_added_cb (EmpathyCallHandler *handler,
2304   GstPad *sink, FsMediaType media_type, gpointer user_data)
2305 {
2306   EmpathyCallWindow *self = EMPATHY_CALL_WINDOW (user_data);
2307   EmpathyCallWindowPriv *priv = GET_PRIV (self);
2308   GstPad *pad;
2309   gboolean retval = FALSE;
2310
2311   switch (media_type)
2312     {
2313       case FS_MEDIA_TYPE_AUDIO:
2314         if (!gst_bin_add (GST_BIN (priv->pipeline), priv->audio_input))
2315           {
2316             g_warning ("Could not add audio source to pipeline");
2317             break;
2318           }
2319
2320         pad = gst_element_get_static_pad (priv->audio_input, "src");
2321         if (!pad)
2322           {
2323             gst_bin_remove (GST_BIN (priv->pipeline), priv->audio_input);
2324             g_warning ("Could not get source pad from audio source");
2325             break;
2326           }
2327
2328         if (GST_PAD_LINK_FAILED (gst_pad_link (pad, sink)))
2329           {
2330             gst_bin_remove (GST_BIN (priv->pipeline), priv->audio_input);
2331             g_warning ("Could not link audio source to farsight");
2332             break;
2333           }
2334
2335         if (gst_element_set_state (priv->audio_input, GST_STATE_PLAYING) == GST_STATE_CHANGE_FAILURE)
2336           {
2337             g_warning ("Could not start audio source");
2338             gst_element_set_state (priv->audio_input, GST_STATE_NULL);
2339             gst_bin_remove (GST_BIN (priv->pipeline), priv->audio_input);
2340             break;
2341           }
2342
2343         retval = TRUE;
2344         break;
2345       case FS_MEDIA_TYPE_VIDEO:
2346         if (priv->video_tee != NULL)
2347           {
2348             pad = gst_element_get_request_pad (priv->video_tee, "src%d");
2349             if (GST_PAD_LINK_FAILED (gst_pad_link (pad, sink)))
2350               {
2351                 g_warning ("Could not link video source input pipeline");
2352                 break;
2353               }
2354             gst_object_unref (pad);
2355           }
2356
2357         retval = TRUE;
2358         break;
2359       default:
2360         g_assert_not_reached ();
2361     }
2362
2363   return retval;
2364 }
2365
2366 static void
2367 empathy_call_window_remove_video_input (EmpathyCallWindow *self)
2368 {
2369   EmpathyCallWindowPriv *priv = GET_PRIV (self);
2370   GstElement *preview;
2371
2372   disable_camera (self);
2373
2374   DEBUG ("remove video input");
2375   preview = priv->video_preview_sink;
2376
2377   gst_element_set_state (priv->video_input, GST_STATE_NULL);
2378   gst_element_set_state (priv->video_tee, GST_STATE_NULL);
2379   gst_element_set_state (preview, GST_STATE_NULL);
2380
2381   gst_bin_remove_many (GST_BIN (priv->pipeline), priv->video_input,
2382     preview, NULL);
2383
2384   g_object_unref (priv->video_input);
2385   priv->video_input = NULL;
2386   g_object_unref (priv->video_tee);
2387   priv->video_tee = NULL;
2388   clutter_actor_destroy (priv->video_preview);
2389   priv->video_preview = NULL;
2390
2391   gtk_widget_set_sensitive (priv->camera_button, FALSE);
2392 }
2393
2394 static void
2395 start_call (EmpathyCallWindow *self)
2396 {
2397   EmpathyCallWindowPriv *priv = GET_PRIV (self);
2398
2399   priv->call_started = TRUE;
2400   empathy_call_handler_start_call (priv->handler,
2401       gtk_get_current_event_time ());
2402
2403   if (empathy_call_handler_has_initial_video (priv->handler))
2404     {
2405       TpyCallChannel *call;
2406       TpySendingState s;
2407
2408       g_object_get (priv->handler, "call-channel", &call, NULL);
2409       s = tpy_call_channel_get_video_state (call);
2410
2411       if (s == TPY_SENDING_STATE_PENDING_SEND ||
2412           s == TPY_SENDING_STATE_SENDING)
2413         {
2414           /* Enable 'send video' buttons and display the preview */
2415           gtk_toggle_tool_button_set_active (
2416             GTK_TOGGLE_TOOL_BUTTON (priv->camera_button), TRUE);
2417         }
2418       else
2419         {
2420           gtk_toggle_tool_button_set_active (
2421             GTK_TOGGLE_TOOL_BUTTON (priv->camera_button), FALSE);
2422
2423           if (priv->video_preview == NULL)
2424             {
2425               create_video_preview (self);
2426               add_video_preview_to_pipeline (self);
2427             }
2428         }
2429
2430       g_object_unref (call);
2431     }
2432 }
2433
2434 static gboolean
2435 empathy_call_window_bus_message (GstBus *bus, GstMessage *message,
2436   gpointer user_data)
2437 {
2438   EmpathyCallWindow *self = EMPATHY_CALL_WINDOW (user_data);
2439   EmpathyCallWindowPriv *priv = GET_PRIV (self);
2440   GstState newstate;
2441
2442   empathy_call_handler_bus_message (priv->handler, bus, message);
2443
2444   switch (GST_MESSAGE_TYPE (message))
2445     {
2446       case GST_MESSAGE_STATE_CHANGED:
2447         if (GST_MESSAGE_SRC (message) == GST_OBJECT (priv->video_input))
2448           {
2449             gst_message_parse_state_changed (message, NULL, &newstate, NULL);
2450           }
2451         if (GST_MESSAGE_SRC (message) == GST_OBJECT (priv->pipeline) &&
2452             !priv->call_started)
2453           {
2454             gst_message_parse_state_changed (message, NULL, &newstate, NULL);
2455             if (newstate == GST_STATE_PAUSED)
2456               {
2457                 gst_element_set_state (priv->pipeline, GST_STATE_PLAYING);
2458                 priv->pipeline_playing = TRUE;
2459
2460                 if (priv->start_call_when_playing)
2461                   start_call (self);
2462               }
2463           }
2464         break;
2465       case GST_MESSAGE_ERROR:
2466         {
2467           GError *error = NULL;
2468           GstElement *gst_error;
2469           gchar *debug;
2470
2471           gst_message_parse_error (message, &error, &debug);
2472           gst_error = GST_ELEMENT (GST_MESSAGE_SRC (message));
2473
2474           g_message ("Element error: %s -- %s\n", error->message, debug);
2475
2476           if (g_str_has_prefix (gst_element_get_name (gst_error),
2477                 VIDEO_INPUT_ERROR_PREFIX))
2478             {
2479               /* Remove the video input and continue */
2480               if (priv->video_input != NULL)
2481                 empathy_call_window_remove_video_input (self);
2482               gst_element_set_state (priv->pipeline, GST_STATE_PLAYING);
2483             }
2484           else
2485             {
2486               empathy_call_window_disconnected (self, TRUE);
2487             }
2488           g_error_free (error);
2489           g_free (debug);
2490         }
2491       case GST_MESSAGE_UNKNOWN:
2492       case GST_MESSAGE_EOS:
2493       case GST_MESSAGE_WARNING:
2494       case GST_MESSAGE_INFO:
2495       case GST_MESSAGE_TAG:
2496       case GST_MESSAGE_BUFFERING:
2497       case GST_MESSAGE_STATE_DIRTY:
2498       case GST_MESSAGE_STEP_DONE:
2499       case GST_MESSAGE_CLOCK_PROVIDE:
2500       case GST_MESSAGE_CLOCK_LOST:
2501       case GST_MESSAGE_NEW_CLOCK:
2502       case GST_MESSAGE_STRUCTURE_CHANGE:
2503       case GST_MESSAGE_STREAM_STATUS:
2504       case GST_MESSAGE_APPLICATION:
2505       case GST_MESSAGE_ELEMENT:
2506       case GST_MESSAGE_SEGMENT_START:
2507       case GST_MESSAGE_SEGMENT_DONE:
2508       case GST_MESSAGE_DURATION:
2509       case GST_MESSAGE_ANY:
2510       default:
2511         break;
2512     }
2513
2514   return TRUE;
2515 }
2516
2517 static void
2518 empathy_call_window_members_changed_cb (TpyCallChannel *call,
2519     GHashTable *members,
2520     EmpathyCallWindow *self)
2521 {
2522   EmpathyCallWindowPriv *priv = GET_PRIV (self);
2523   GHashTableIter iter;
2524   gpointer key, value;
2525   gboolean held = FALSE;
2526
2527   g_hash_table_iter_init (&iter, members);
2528   while (g_hash_table_iter_next (&iter, &key, &value))
2529     {
2530       if (GPOINTER_TO_INT (value) & TPY_CALL_MEMBER_FLAG_HELD)
2531         {
2532           /* This assumes this is a 1-1 call, otherwise one participant
2533            * putting the call on hold wouldn't mean the call is on hold
2534            * for everyone. */
2535           held = TRUE;
2536           break;
2537         }
2538     }
2539
2540   if (held)
2541     priv->call_state = HELD;
2542   else if (priv->call_state == HELD)
2543     priv->call_state = CONNECTED;
2544 }
2545
2546 static void
2547 call_handler_notify_call_cb (EmpathyCallHandler *handler,
2548     GParamSpec *spec,
2549     EmpathyCallWindow *self)
2550 {
2551   EmpathyCallWindowPriv *priv = GET_PRIV (self);
2552   TpyCallChannel *call;
2553
2554   g_object_get (priv->handler, "call-channel", &call, NULL);
2555   if (call == NULL)
2556     return;
2557
2558 /* FIXME
2559   tp_g_signal_connect_object (call, "audio-stream-error",
2560       G_CALLBACK (empathy_call_window_audio_stream_error), self, 0);
2561   tp_g_signal_connect_object (call, "video-stream-error",
2562       G_CALLBACK (empathy_call_window_video_stream_error), self, 0);
2563 */
2564
2565   tp_g_signal_connect_object (call, "members-changed",
2566       G_CALLBACK (empathy_call_window_members_changed_cb), self, 0);
2567
2568   g_object_unref (call);
2569 }
2570
2571 static void
2572 empathy_call_window_realized_cb (GtkWidget *widget, EmpathyCallWindow *window)
2573 {
2574   EmpathyCallWindowPriv *priv = GET_PRIV (window);
2575   TpyCallChannel *call;
2576   gint width;
2577
2578   /* Make the hangup button twice as wide */
2579   width = gtk_widget_get_allocated_width (priv->hangup_button);
2580   gtk_widget_set_size_request (priv->hangup_button, width * 2, -1);
2581
2582   g_signal_connect (priv->handler, "state-changed",
2583     G_CALLBACK (empathy_call_window_state_changed_cb), window);
2584   g_signal_connect (priv->handler, "conference-added",
2585     G_CALLBACK (empathy_call_window_conference_added_cb), window);
2586   g_signal_connect (priv->handler, "conference-removed",
2587     G_CALLBACK (empathy_call_window_conference_removed_cb), window);
2588   g_signal_connect (priv->handler, "closed",
2589     G_CALLBACK (empathy_call_window_channel_closed_cb), window);
2590   g_signal_connect (priv->handler, "src-pad-added",
2591     G_CALLBACK (empathy_call_window_src_added_cb), window);
2592   g_signal_connect (priv->handler, "sink-pad-added",
2593     G_CALLBACK (empathy_call_window_sink_added_cb), window);
2594   g_signal_connect (priv->handler, "sink-pad-removed",
2595     G_CALLBACK (empathy_call_window_sink_removed_cb), window);
2596
2597   g_object_get (priv->handler, "call-channel", &call, NULL);
2598   if (call != NULL)
2599     {
2600       call_handler_notify_call_cb (priv->handler, NULL, window);
2601       g_object_unref (call);
2602     }
2603   else
2604     {
2605       /* call-channel doesn't exist yet, we'll connect signals once it has been
2606        * set */
2607       g_signal_connect (priv->handler, "notify::call-channel",
2608         G_CALLBACK (call_handler_notify_call_cb), window);
2609     }
2610
2611   gst_element_set_state (priv->pipeline, GST_STATE_PAUSED);
2612 }
2613
2614 static gboolean
2615 empathy_call_window_delete_cb (GtkWidget *widget, GdkEvent*event,
2616   EmpathyCallWindow *window)
2617 {
2618   EmpathyCallWindowPriv *priv = GET_PRIV (window);
2619
2620   if (priv->pipeline != NULL)
2621     {
2622       if (priv->bus_message_source_id != 0)
2623         {
2624           g_source_remove (priv->bus_message_source_id);
2625           priv->bus_message_source_id = 0;
2626         }
2627
2628       gst_element_set_state (priv->pipeline, GST_STATE_NULL);
2629     }
2630
2631   if (priv->call_state == CONNECTING)
2632     empathy_sound_manager_stop (priv->sound_mgr, EMPATHY_SOUND_PHONE_OUTGOING);
2633
2634   return FALSE;
2635 }
2636
2637 static void
2638 show_controls (EmpathyCallWindow *window, gboolean set_fullscreen)
2639 {
2640   GtkWidget *menu;
2641   EmpathyCallWindowPriv *priv = GET_PRIV (window);
2642
2643   menu = gtk_ui_manager_get_widget (priv->ui_manager,
2644             "/menubar1");
2645
2646   if (set_fullscreen)
2647     {
2648       gtk_widget_hide (priv->dtmf_panel);
2649       gtk_widget_hide (menu);
2650       gtk_widget_hide (priv->toolbar);
2651     }
2652   else
2653     {
2654       if (priv->dialpad_was_visible_before_fs)
2655         gtk_widget_show (priv->dtmf_panel);
2656
2657       gtk_widget_show (menu);
2658       gtk_widget_show (priv->toolbar);
2659
2660       gtk_window_resize (GTK_WINDOW (window), priv->original_width_before_fs,
2661           priv->original_height_before_fs);
2662     }
2663 }
2664
2665 static void
2666 show_borders (EmpathyCallWindow *window, gboolean set_fullscreen)
2667 {
2668   EmpathyCallWindowPriv *priv = GET_PRIV (window);
2669
2670   gtk_container_set_border_width (GTK_CONTAINER (priv->content_hbox),
2671       set_fullscreen ? 0 : CONTENT_HBOX_BORDER_WIDTH);
2672   gtk_box_set_spacing (GTK_BOX (priv->content_hbox),
2673       set_fullscreen ? 0 : CONTENT_HBOX_SPACING);
2674
2675   if (priv->video_output != NULL)
2676     {
2677 #if 0
2678       gtk_box_set_child_packing (GTK_BOX (priv->content_hbox),
2679           priv->video_output, TRUE, TRUE,
2680           set_fullscreen ? 0 : CONTENT_HBOX_CHILDREN_PACKING_PADDING,
2681           GTK_PACK_START);
2682 #endif
2683     }
2684 }
2685
2686 static gboolean
2687 empathy_call_window_state_event_cb (GtkWidget *widget,
2688   GdkEventWindowState *event, EmpathyCallWindow *window)
2689 {
2690   if (event->changed_mask & GDK_WINDOW_STATE_FULLSCREEN)
2691     {
2692       EmpathyCallWindowPriv *priv = GET_PRIV (window);
2693       gboolean set_fullscreen = event->new_window_state &
2694         GDK_WINDOW_STATE_FULLSCREEN;
2695
2696       if (set_fullscreen)
2697         {
2698           gboolean dialpad_was_visible;
2699           GtkAllocation allocation;
2700           gint original_width, original_height;
2701
2702           gtk_widget_get_allocation (GTK_WIDGET (window), &allocation);
2703           original_width = allocation.width;
2704           original_height = allocation.height;
2705
2706           g_object_get (priv->dtmf_panel,
2707               "visible", &dialpad_was_visible,
2708               NULL);
2709
2710           priv->dialpad_was_visible_before_fs = dialpad_was_visible;
2711           priv->original_width_before_fs = original_width;
2712           priv->original_height_before_fs = original_height;
2713
2714           if (priv->video_output_motion_handler_id == 0 &&
2715                 priv->video_output != NULL)
2716             {
2717               priv->video_output_motion_handler_id = g_signal_connect (
2718                   G_OBJECT (priv->video_container), "motion-notify-event",
2719                   G_CALLBACK (empathy_call_window_video_output_motion_notify),
2720                   window);
2721             }
2722         }
2723       else
2724         {
2725           disconnect_video_output_motion_handler (window);
2726         }
2727
2728       empathy_call_window_fullscreen_set_fullscreen (priv->fullscreen,
2729           set_fullscreen);
2730       show_controls (window, set_fullscreen);
2731       show_borders (window, set_fullscreen);
2732       gtk_action_set_stock_id (priv->menu_fullscreen,
2733           (set_fullscreen ? "gtk-leave-fullscreen" : "gtk-fullscreen"));
2734       priv->is_fullscreen = set_fullscreen;
2735   }
2736
2737   return FALSE;
2738 }
2739
2740 static void
2741 empathy_call_window_show_dialpad (EmpathyCallWindow *window,
2742     gboolean active)
2743 {
2744   EmpathyCallWindowPriv *priv = GET_PRIV (window);
2745   int w, h, dialpad_width;
2746   GtkAllocation allocation;
2747
2748   gtk_widget_get_allocation (GTK_WIDGET (window), &allocation);
2749   w = allocation.width;
2750   h = allocation.height;
2751
2752   gtk_widget_get_preferred_width (priv->dtmf_panel, &dialpad_width, NULL);
2753
2754   if (active)
2755     {
2756       gtk_widget_show (priv->dtmf_panel);
2757       w += dialpad_width;
2758     }
2759   else
2760     {
2761       w -= dialpad_width;
2762       gtk_widget_hide (priv->dtmf_panel);
2763     }
2764
2765   if (w > 0 && h > 0)
2766     gtk_window_resize (GTK_WINDOW (window), w, h);
2767 }
2768
2769 static void
2770 empathy_call_window_set_send_video (EmpathyCallWindow *window,
2771   CameraState state)
2772 {
2773   EmpathyCallWindowPriv *priv = GET_PRIV (window);
2774   TpyCallChannel *call;
2775
2776   priv->sending_video = (state == CAMERA_STATE_ON);
2777
2778   if (state == CAMERA_STATE_ON)
2779     {
2780       /* When we start sending video, we want to show the video preview by
2781          default. */
2782       display_video_preview (window, TRUE);
2783     }
2784   else
2785     {
2786       display_video_preview (window, FALSE);
2787     }
2788
2789   if (priv->call_state != CONNECTED)
2790     return;
2791
2792   g_object_get (priv->handler, "call-channel", &call, NULL);
2793   DEBUG ("%s sending video", priv->sending_video ? "start": "stop");
2794   tpy_call_channel_send_video (call, priv->sending_video);
2795   g_object_unref (call);
2796 }
2797
2798 static void
2799 empathy_call_window_mic_toggled_cb (GtkToggleToolButton *toggle,
2800   EmpathyCallWindow *window)
2801 {
2802   EmpathyCallWindowPriv *priv = GET_PRIV (window);
2803   gboolean active;
2804
2805   active = (gtk_toggle_tool_button_get_active (toggle));
2806
2807   if (active)
2808     {
2809       g_settings_set_double (priv->settings, EMPATHY_PREFS_CALL_SOUND_VOLUME,
2810           priv->volume * 100);
2811     }
2812   else
2813     {
2814       /* TODO, Instead of setting the input volume to 0 we should probably
2815        * stop sending but this would cause the audio call to drop if both
2816        * sides mute at the same time on certain CMs AFAIK. Need to revisit this
2817        * in the future. GNOME #574574
2818        */
2819       g_settings_set_double (priv->settings, EMPATHY_PREFS_CALL_SOUND_VOLUME,
2820           0);
2821     }
2822 }
2823
2824 static void
2825 empathy_call_window_hangup_cb (gpointer object,
2826                                EmpathyCallWindow *window)
2827 {
2828   EmpathyCallWindowPriv *priv = GET_PRIV (window);
2829
2830   empathy_call_handler_stop_call (priv->handler);
2831
2832   if (empathy_call_window_disconnected (window, FALSE))
2833     gtk_widget_destroy (GTK_WIDGET (window));
2834 }
2835
2836 static void
2837 empathy_call_window_restart_call (EmpathyCallWindow *window)
2838 {
2839   EmpathyCallWindowPriv *priv = GET_PRIV (window);
2840
2841   /* Remove error info bars */
2842   gtk_container_forall (GTK_CONTAINER (priv->errors_vbox),
2843       (GtkCallback) gtk_widget_destroy, NULL);
2844
2845   create_video_output_widget (window);
2846
2847   /* While the call was disconnected, the input volume might have changed.
2848    * However, since the audio_input source was destroyed, its volume has not
2849    * been updated during that time. That's why we manually update it here */
2850   empathy_call_window_mic_volume_changed (window);
2851
2852   priv->outgoing = TRUE;
2853   empathy_call_window_set_state_connecting (window);
2854
2855   if (priv->pipeline_playing)
2856     start_call (window);
2857   else
2858     /* call will be started when the pipeline is ready */
2859     priv->start_call_when_playing = TRUE;
2860
2861   empathy_call_window_setup_avatars (window, priv->handler);
2862
2863   empathy_call_window_show_hangup_button (window, TRUE);
2864 }
2865
2866 static void
2867 empathy_call_window_dialpad_cb (GtkToggleToolButton *button,
2868     EmpathyCallWindow *window)
2869 {
2870   gboolean active;
2871
2872   active = gtk_toggle_tool_button_get_active (button);
2873
2874   empathy_call_window_show_dialpad (window, active);
2875 }
2876
2877 static void
2878 empathy_call_window_fullscreen_cb (gpointer object,
2879                                    EmpathyCallWindow *window)
2880 {
2881   empathy_call_window_fullscreen_toggle (window);
2882 }
2883
2884 static void
2885 empathy_call_window_fullscreen_toggle (EmpathyCallWindow *window)
2886 {
2887   EmpathyCallWindowPriv *priv = GET_PRIV (window);
2888
2889   if (priv->is_fullscreen)
2890     gtk_window_unfullscreen (GTK_WINDOW (window));
2891   else
2892     gtk_window_fullscreen (GTK_WINDOW (window));
2893 }
2894
2895 static gboolean
2896 empathy_call_window_video_button_press_cb (GtkWidget *video_preview,
2897   GdkEventButton *event, EmpathyCallWindow *window)
2898 {
2899   if (event->button == 3 && event->type == GDK_BUTTON_PRESS)
2900     {
2901       empathy_call_window_video_menu_popup (window, event->button);
2902       return TRUE;
2903     }
2904
2905   return FALSE;
2906 }
2907
2908 static gboolean
2909 empathy_call_window_key_press_cb (GtkWidget *video_output,
2910   GdkEventKey *event, EmpathyCallWindow *window)
2911 {
2912   EmpathyCallWindowPriv *priv = GET_PRIV (window);
2913
2914   if (priv->is_fullscreen && event->keyval == GDK_KEY_Escape)
2915     {
2916       /* Since we are in fullscreen mode, toggling will bring us back to
2917          normal mode. */
2918       empathy_call_window_fullscreen_toggle (window);
2919       return TRUE;
2920     }
2921
2922   return FALSE;
2923 }
2924
2925 static gboolean
2926 empathy_call_window_video_output_motion_notify (GtkWidget *widget,
2927     GdkEventMotion *event, EmpathyCallWindow *window)
2928 {
2929   EmpathyCallWindowPriv *priv = GET_PRIV (window);
2930
2931   if (priv->is_fullscreen)
2932     {
2933       empathy_call_window_fullscreen_show_popup (priv->fullscreen);
2934       return TRUE;
2935     }
2936   return FALSE;
2937 }
2938
2939 static void
2940 empathy_call_window_video_menu_popup (EmpathyCallWindow *window,
2941   guint button)
2942 {
2943   GtkWidget *menu;
2944   EmpathyCallWindowPriv *priv = GET_PRIV (window);
2945
2946   menu = gtk_ui_manager_get_widget (priv->ui_manager,
2947             "/video-popup");
2948   gtk_menu_popup (GTK_MENU (menu), NULL, NULL, NULL, NULL,
2949       button, gtk_get_current_event_time ());
2950   gtk_menu_shell_select_first (GTK_MENU_SHELL (menu), FALSE);
2951 }
2952
2953 static void
2954 empathy_call_window_status_message (EmpathyCallWindow *self,
2955   gchar *message)
2956 {
2957   gtk_label_set_label (GTK_LABEL (self->priv->status_label), message);
2958 }
2959
2960 static void
2961 empathy_call_window_volume_changed_cb (GtkScaleButton *button,
2962   gdouble value, EmpathyCallWindow *window)
2963 {
2964   EmpathyCallWindowPriv *priv = GET_PRIV (window);
2965
2966   if (priv->audio_output == NULL)
2967     return;
2968
2969   empathy_audio_sink_set_volume (EMPATHY_GST_AUDIO_SINK (priv->audio_output),
2970     value);
2971 }
2972
2973 GtkUIManager *
2974 empathy_call_window_get_ui_manager (EmpathyCallWindow *window)
2975 {
2976   EmpathyCallWindowPriv *priv = GET_PRIV (window);
2977
2978   return priv->ui_manager;
2979 }
2980
2981 EmpathyGstAudioSrc *
2982 empathy_call_window_get_audio_src (EmpathyCallWindow *window)
2983 {
2984   EmpathyCallWindowPriv *priv = GET_PRIV (window);
2985
2986   return (EmpathyGstAudioSrc *) priv->audio_input;
2987 }