]> git.0d.be Git - empathy.git/blob - src/empathy-call-window.c
Merge branch 'gnome-3-6'
[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 #include "config.h"
22
23 #include <stdio.h>
24 #include <stdlib.h>
25
26 #include <math.h>
27
28 #include <gdk/gdkkeysyms.h>
29 #include <gst/gst.h>
30 #include <gtk/gtk.h>
31 #include <glib/gi18n.h>
32
33 #include <clutter/clutter.h>
34 #include <clutter-gtk/clutter-gtk.h>
35 #include <clutter-gst/clutter-gst.h>
36
37 #include <telepathy-farstream/telepathy-farstream.h>
38 #include <telepathy-glib/telepathy-glib.h>
39
40 #include <farstream/fs-element-added-notifier.h>
41 #include <farstream/fs-utils.h>
42
43 #include <libempathy/empathy-camera-monitor.h>
44 #include <libempathy/empathy-gsettings.h>
45 #include <libempathy/empathy-request-util.h>
46 #include <libempathy/empathy-utils.h>
47
48 #include <libempathy-gtk/empathy-avatar-image.h>
49 #include <libempathy-gtk/empathy-dialpad-widget.h>
50 #include <libempathy-gtk/empathy-ui-utils.h>
51 #include <libempathy-gtk/empathy-sound-manager.h>
52 #include <libempathy-gtk/empathy-geometry.h>
53 #include <libempathy-gtk/empathy-images.h>
54 #include <libempathy-gtk/empathy-call-utils.h>
55
56 #define DEBUG_FLAG EMPATHY_DEBUG_VOIP
57 #include <libempathy/empathy-debug.h>
58
59 #include "empathy-call-window.h"
60 #include "empathy-call-window-fullscreen.h"
61 #include "empathy-call-factory.h"
62 #include "empathy-about-dialog.h"
63 #include "empathy-audio-src.h"
64 #include "empathy-audio-sink.h"
65 #include "empathy-video-src.h"
66 #include "empathy-mic-menu.h"
67 #include "empathy-preferences.h"
68 #include "empathy-rounded-actor.h"
69 #include "empathy-rounded-rectangle.h"
70 #include "empathy-rounded-texture.h"
71 #include "empathy-camera-menu.h"
72
73 #define CONTENT_HBOX_SPACING 3
74 #define CONTENT_HBOX_CHILDREN_PACKING_PADDING 0
75 #define OVERLAY_MARGIN 6
76
77 #define REMOTE_VIDEO_DEFAULT_WIDTH 320
78 #define REMOTE_VIDEO_DEFAULT_HEIGHT 240
79
80 #define SELF_VIDEO_SECTION_WIDTH 120
81 #define SELF_VIDEO_SECTION_HEIGHT 90
82 #define SELF_VIDEO_SECTION_MARGIN 2
83 #define SELF_VIDEO_SECTION_BORDER SELF_VIDEO_SECTION_MARGIN*2
84
85 /* The avatar's default width and height are set to the same value because we
86    want a square icon. */
87 #define REMOTE_CONTACT_AVATAR_DEFAULT_HEIGHT REMOTE_VIDEO_DEFAULT_HEIGHT
88 #define REMOTE_CONTACT_AVATAR_DEFAULT_WIDTH REMOTE_VIDEO_DEFAULT_HEIGHT
89
90 #define SMALL_TOOLBAR_SIZE 36
91
92 /* If an video input error occurs, the error message will start with "v4l" */
93 #define VIDEO_INPUT_ERROR_PREFIX "v4l"
94
95 /* The time interval in milliseconds between 2 outgoing rings */
96 #define MS_BETWEEN_RING 500
97
98 /* The roundedness of preview box and placeholders */
99 #define PREVIEW_ROUND_FACTOR 16
100
101 G_DEFINE_TYPE(EmpathyCallWindow, empathy_call_window, GTK_TYPE_WINDOW)
102
103 enum {
104   PROP_CALL_HANDLER = 1,
105 };
106
107 enum {
108   SIG_INHIBIT,
109   LAST_SIGNAL
110 };
111
112 static guint signals[LAST_SIGNAL];
113
114 typedef enum {
115   RINGING,       /* Incoming call */
116   CONNECTING,    /* Outgoing call */
117   CONNECTED,     /* Connected */
118   HELD,          /* Connected, but on hold */
119   DISCONNECTED,  /* Disconnected */
120   REDIALING      /* Redialing (special case of CONNECTING) */
121 } CallState;
122
123 typedef enum {
124   CAMERA_STATE_OFF = 0,
125   CAMERA_STATE_ON,
126 } CameraState;
127
128 typedef enum {
129   PREVIEW_POS_NONE,
130   PREVIEW_POS_TOP_LEFT,
131   PREVIEW_POS_TOP_RIGHT,
132   PREVIEW_POS_BOTTOM_LEFT,
133   PREVIEW_POS_BOTTOM_RIGHT,
134 } PreviewPosition;
135
136 struct _EmpathyCallWindowPriv
137 {
138   gboolean dispose_has_run;
139   EmpathyCallHandler *handler;
140
141   EmpathyContact *contact;
142
143   EmpathyCameraMonitor *camera_monitor;
144
145   CallState call_state;
146   gboolean outgoing;
147
148   GtkUIManager *ui_manager;
149   GtkWidget *errors_vbox;
150   /* widget displays the video received from the remote user. This widget is
151    * alive only during call. */
152   ClutterActor *video_output;
153   ClutterActor *video_preview;
154   ClutterActor *drag_preview;
155   ClutterActor *preview_shown_button;
156   ClutterActor *preview_hidden_button;
157   ClutterActor *preview_rectangle1;
158   ClutterActor *preview_rectangle2;
159   ClutterActor *preview_rectangle3;
160   ClutterActor *preview_rectangle4;
161   ClutterActor *preview_spinner_actor;
162   GtkWidget *preview_spinner_widget;
163   GtkWidget *video_container;
164   GtkWidget *remote_user_avatar_widget;
165   GtkWidget *remote_user_avatar_toolbar;
166   GtkWidget *remote_user_name_toolbar;
167   GtkWidget *remote_user_status_toolbar;
168   GtkWidget *status_label;
169   GtkWidget *hangup_button;
170   GtkWidget *audio_call_button;
171   GtkWidget *video_call_button;
172   GtkWidget *mic_button;
173   GtkWidget *microphone_icon;
174   GtkWidget *volume_button;
175   GtkWidget *camera_button;
176   GtkWidget *dialpad_button;
177   GtkWidget *toolbar;
178   GtkWidget *bottom_toolbar;
179   ClutterActor *floating_toolbar;
180   GtkWidget *pane;
181   GtkAction *menu_fullscreen;
182   GtkAction *menu_swap_camera;
183
184   ClutterState *transitions;
185
186   /* The main box covering all the stage, contaning remote avatar/video */
187   ClutterActor *video_box;
188   ClutterLayoutManager *video_layout;
189
190   /* A bin layout manager containing a bin for previews
191    * and the floating toolbar */
192   ClutterActor *overlay_bin;
193   ClutterLayoutManager *overlay_layout;
194
195   /* Bin layout for the previews */
196   ClutterActor *preview_box;
197   ClutterLayoutManager *preview_layout;
198
199   /* Coordinates of the preview drag event's start. */
200   PreviewPosition preview_pos;
201
202   /* We keep a reference on the hbox which contains the main content so we can
203      easilly repack everything when toggling fullscreen */
204   GtkWidget *content_hbox;
205
206   /* These are used to accept or reject an incoming call when the status
207      is RINGING. */
208   GtkWidget *incoming_call_dialog;
209   TpCallChannel *pending_channel;
210   TpChannelDispatchOperation *pending_cdo;
211   TpAddDispatchOperationContext *pending_context;
212
213   gulong video_output_motion_handler_id;
214   guint bus_message_source_id;
215
216   GtkWidget *dtmf_panel;
217
218   /* Details vbox */
219   GtkWidget *details_vbox;
220   GtkWidget *vcodec_encoding_label;
221   GtkWidget *acodec_encoding_label;
222   GtkWidget *vcodec_decoding_label;
223   GtkWidget *acodec_decoding_label;
224
225   GtkWidget *audio_remote_candidate_label;
226   GtkWidget *audio_local_candidate_label;
227   GtkWidget *video_remote_candidate_label;
228   GtkWidget *video_local_candidate_label;
229   GtkWidget *video_remote_candidate_info_img;
230   GtkWidget *video_local_candidate_info_img;
231   GtkWidget *audio_remote_candidate_info_img;
232   GtkWidget *audio_local_candidate_info_img;
233
234   GstElement *video_input;
235   GstElement *video_preview_sink;
236   GstElement *video_output_sink;
237   GstElement *audio_input;
238   GstElement *audio_output;
239   gboolean audio_output_added;
240   GstElement *pipeline;
241   GstElement *video_tee;
242
243   GstElement *funnel;
244
245   GList *notifiers;
246
247   GTimer *timer;
248   guint timer_id;
249
250   GMutex lock;
251   gboolean call_started;
252   gboolean sending_video;
253   CameraState camera_state;
254
255   EmpathyCallWindowFullscreen *fullscreen;
256   gboolean is_fullscreen;
257
258   gboolean got_video;
259   guint got_video_src;
260
261   guint inactivity_src;
262
263   /* Those fields represent the state of the window before it actually was in
264      fullscreen mode. */
265   gboolean dialpad_was_visible_before_fs;
266   gint original_width_before_fs;
267   gint original_height_before_fs;
268
269   gint x, y, w, h, dialpad_width;
270   gboolean maximized;
271
272   /* TRUE if the call should be started when the pipeline is playing */
273   gboolean start_call_when_playing;
274   /* TRUE if we requested to set the pipeline in the playing state */
275   gboolean pipeline_playing;
276
277   EmpathySoundManager *sound_mgr;
278
279   GSettings *settings;
280   EmpathyMicMenu *mic_menu;
281   EmpathyCameraMenu *camera_menu;
282
283   gboolean muted;
284 };
285
286 #define GET_PRIV(o) (EMPATHY_CALL_WINDOW (o)->priv)
287
288 static void empathy_call_window_realized_cb (GtkWidget *widget,
289   EmpathyCallWindow *window);
290
291 static gboolean empathy_call_window_delete_cb (GtkWidget *widget,
292   GdkEvent *event, EmpathyCallWindow *window);
293
294 static gboolean empathy_call_window_state_event_cb (GtkWidget *widget,
295   GdkEventWindowState *event, EmpathyCallWindow *window);
296
297 static void empathy_call_window_set_send_video (EmpathyCallWindow *window,
298   CameraState state);
299
300 static void empathy_call_window_hangup_cb (gpointer object,
301   EmpathyCallWindow *window);
302
303 static void empathy_call_window_fullscreen_cb (gpointer object,
304   EmpathyCallWindow *window);
305
306 static void empathy_call_window_fullscreen_toggle (EmpathyCallWindow *window);
307
308 static gboolean empathy_call_window_video_button_press_cb (
309   GtkWidget *video_output, GdkEventButton *event, EmpathyCallWindow *window);
310
311 static gboolean empathy_call_window_key_press_cb (GtkWidget *video_output,
312   GdkEventKey *event, EmpathyCallWindow *window);
313
314 static gboolean empathy_call_window_video_output_motion_notify (
315   GtkWidget *widget, GdkEventMotion *event, EmpathyCallWindow *window);
316
317 static void empathy_call_window_video_menu_popup (EmpathyCallWindow *window,
318   guint button);
319
320 static void empathy_call_window_connect_handler (EmpathyCallWindow *self);
321
322 static void empathy_call_window_dialpad_cb (GtkToggleToolButton *button,
323   EmpathyCallWindow *window);
324
325 static void empathy_call_window_restart_call (EmpathyCallWindow *window);
326
327 static void empathy_call_window_status_message (EmpathyCallWindow *window,
328   gchar *message);
329
330 static gboolean empathy_call_window_bus_message (GstBus *bus,
331   GstMessage *message, gpointer user_data);
332
333 static gboolean empathy_call_window_update_timer (gpointer user_data);
334
335 static void
336 make_background_transparent (GtkClutterActor *actor)
337 {
338   GdkRGBA transparent = { 0., 0., 0., 0. };
339   GtkWidget *widget;
340
341   widget = gtk_clutter_actor_get_widget (actor);
342   gtk_widget_override_background_color (widget, GTK_STATE_FLAG_NORMAL, &transparent);
343 }
344
345 static void
346 empathy_call_window_show_hangup_button (EmpathyCallWindow *self,
347     gboolean show)
348 {
349   gtk_widget_set_visible (self->priv->hangup_button, show);
350   gtk_widget_set_visible (self->priv->audio_call_button, !show);
351   gtk_widget_set_visible (self->priv->video_call_button, !show);
352 }
353
354 static void
355 empathy_call_window_audio_call_cb (GtkToggleToolButton *button,
356     EmpathyCallWindow *self)
357 {
358   g_object_set (self->priv->handler, "initial-video", FALSE, NULL);
359   empathy_call_window_restart_call (self);
360 }
361
362 static void
363 empathy_call_window_video_call_cb (GtkToggleToolButton *button,
364     EmpathyCallWindow *self)
365 {
366   empathy_call_window_set_send_video (self, CAMERA_STATE_ON);
367   g_object_set (self->priv->handler, "initial-video", TRUE, NULL);
368   empathy_call_window_restart_call (self);
369 }
370
371 static void
372 dtmf_start_tone_cb (EmpathyDialpadWidget *dialpad,
373     TpDTMFEvent event,
374     EmpathyCallWindow *self)
375 {
376   TpCallChannel *call;
377   gchar tones[2];
378
379   g_object_get (self->priv->handler, "call-channel", &call, NULL);
380
381   tones[0] = tp_dtmf_event_to_char (event);
382   tones[1] = '\0';
383   tp_call_channel_send_tones_async (call, tones, NULL, NULL, NULL);
384
385   g_object_unref (call);
386 }
387
388 static void
389 empathy_call_window_show_video_output (EmpathyCallWindow *self,
390     gboolean show)
391 {
392   if (self->priv->video_output != NULL)
393     g_object_set (self->priv->video_output, "visible", show, NULL);
394
395   gtk_widget_set_visible (self->priv->remote_user_avatar_widget, !show);
396
397   clutter_actor_raise_top (self->priv->overlay_bin);
398 }
399
400 static void
401 create_video_output_widget (EmpathyCallWindow *self)
402 {
403   EmpathyCallWindowPriv *priv = GET_PRIV (self);
404
405   g_assert (priv->video_output == NULL);
406   g_assert (priv->pipeline != NULL);
407
408   priv->video_output = clutter_texture_new ();
409
410   clutter_texture_set_keep_aspect_ratio (CLUTTER_TEXTURE (priv->video_output),
411       TRUE);
412
413   priv->video_output_sink = gst_element_factory_make ("cluttersink", NULL);
414   if (priv->video_output_sink == NULL)
415     g_error ("Missing cluttersink");
416   else
417     g_object_set (priv->video_output_sink, "texture", priv->video_output, NULL);
418
419   clutter_container_add_actor (CLUTTER_CONTAINER (priv->video_box),
420       priv->video_output);
421
422   gtk_widget_add_events (priv->video_container,
423       GDK_BUTTON_PRESS_MASK | GDK_POINTER_MOTION_MASK);
424   g_signal_connect (G_OBJECT (priv->video_container), "button-press-event",
425       G_CALLBACK (empathy_call_window_video_button_press_cb), self);
426 }
427
428 static void
429 create_video_input (EmpathyCallWindow *self)
430 {
431   EmpathyCallWindowPriv *priv = GET_PRIV (self);
432
433   g_assert (priv->video_input == NULL);
434   priv->video_input = empathy_video_src_new ();
435   gst_object_ref_sink (priv->video_input);
436 }
437
438 static gboolean
439 audio_control_volume_to_element (GBinding *binding,
440   const GValue *source_value,
441   GValue *target_value,
442   gpointer user_data)
443 {
444   /* AudioControl volume is 0-255, with -1 for unknown */
445   gint hv;
446
447   hv = g_value_get_int (source_value);
448   if (hv < 0)
449     return FALSE;
450
451   hv = MIN (hv, 255);
452   g_value_set_double (target_value, hv/255.0);
453
454   return TRUE;
455 }
456
457 static gboolean
458 element_volume_to_audio_control (GBinding *binding,
459   const GValue *source_value,
460   GValue *target_value,
461   gpointer user_data)
462 {
463   gdouble ev;
464
465   ev = g_value_get_double (source_value);
466   ev = CLAMP (ev, 0.0, 1.0);
467
468   g_value_set_int (target_value, ev * 255);
469   return TRUE;
470 }
471
472 static void
473 audio_input_mute_notify_cb (GObject *obj, GParamSpec *spec,
474   EmpathyCallWindow *self)
475 {
476   gboolean muted;
477   g_object_get (obj, "mute", &muted, NULL);
478
479   self->priv->muted = muted;
480   if (muted && self->priv->transitions)
481     clutter_state_set_state (self->priv->transitions, "fade-in");
482
483   if (muted)
484     {
485       gtk_image_set_from_icon_name (GTK_IMAGE (self->priv->microphone_icon),
486           EMPATHY_IMAGE_MIC_MUTED, GTK_ICON_SIZE_MENU);
487     }
488   else
489     {
490       gtk_image_set_from_icon_name (GTK_IMAGE (self->priv->microphone_icon),
491           EMPATHY_IMAGE_MIC, GTK_ICON_SIZE_MENU);
492     }
493
494   empathy_call_window_update_timer (self);
495 }
496
497 static void
498 create_audio_input (EmpathyCallWindow *self)
499 {
500   EmpathyCallWindowPriv *priv = GET_PRIV (self);
501
502   g_assert (priv->audio_input == NULL);
503   priv->audio_input = empathy_audio_src_new ();
504   gst_object_ref_sink (priv->audio_input);
505
506   g_signal_connect (priv->audio_input, "notify::mute",
507     G_CALLBACK (audio_input_mute_notify_cb), self);
508 }
509
510 static void
511 add_video_preview_to_pipeline (EmpathyCallWindow *self)
512 {
513   EmpathyCallWindowPriv *priv = GET_PRIV (self);
514   GstElement *preview;
515
516   g_assert (priv->video_preview != NULL);
517   g_assert (priv->pipeline != NULL);
518   g_assert (priv->video_input != NULL);
519   g_assert (priv->video_tee != NULL);
520
521   preview = priv->video_preview_sink;
522
523   if (!gst_bin_add (GST_BIN (priv->pipeline), priv->video_input))
524     {
525       g_warning ("Could not add video input to pipeline");
526       return;
527     }
528
529   if (!gst_bin_add (GST_BIN (priv->pipeline), preview))
530     {
531       g_warning ("Could not add video preview to pipeline");
532       return;
533     }
534
535   if (!gst_element_link (priv->video_input, priv->video_tee))
536     {
537       g_warning ("Could not link video input to video tee");
538       return;
539     }
540
541   if (!gst_element_link (priv->video_tee, preview))
542     {
543       g_warning ("Could not link video tee to video preview");
544       return;
545     }
546 }
547
548 static void
549 empathy_call_window_disable_camera_cb (GtkAction *action,
550     EmpathyCallWindow *self)
551 {
552   clutter_actor_destroy (self->priv->preview_hidden_button);
553
554   gtk_toggle_button_set_active (
555       GTK_TOGGLE_BUTTON (self->priv->camera_button), FALSE);
556 }
557
558 static void
559 empathy_call_window_minimise_camera_cb (GtkAction *action,
560     EmpathyCallWindow *self)
561 {
562   clutter_actor_hide (self->priv->video_preview);
563   clutter_actor_show (self->priv->preview_hidden_button);
564 }
565
566 static void
567 empathy_call_window_maximise_camera_cb (GtkAction *action,
568     EmpathyCallWindow *self)
569 {
570   clutter_actor_show (self->priv->video_preview);
571   clutter_actor_hide (self->priv->preview_hidden_button);
572 }
573
574 static void
575 empathy_call_window_swap_camera_cb (GtkAction *action,
576     EmpathyCallWindow *self)
577 {
578   const GList *cameras, *l;
579   gchar *current_cam;
580
581   DEBUG ("Swapping the camera");
582
583   cameras = empathy_camera_monitor_get_cameras (self->priv->camera_monitor);
584   current_cam = empathy_video_src_dup_device (
585       EMPATHY_GST_VIDEO_SRC (self->priv->video_input));
586
587   for (l = cameras; l != NULL; l = l->next)
588     {
589       EmpathyCamera *camera = l->data;
590
591       if (!tp_strdiff (camera->device, current_cam))
592         {
593           EmpathyCamera *next;
594
595           if (l->next != NULL)
596             next = l->next->data;
597           else
598             next = cameras->data;
599
600           /* EmpathyCameraMenu will update itself and do the actual change
601            * for us */
602           g_settings_set_string (self->priv->settings,
603               EMPATHY_PREFS_CALL_CAMERA_DEVICE,
604               next->device);
605
606           break;
607         }
608     }
609
610   g_free (current_cam);
611 }
612
613 static void
614 empathy_call_window_camera_added_cb (EmpathyCameraMonitor *monitor,
615     EmpathyCamera *camera,
616     EmpathyCallWindow *self)
617 {
618   const GList *cameras = empathy_camera_monitor_get_cameras (monitor);
619
620   gtk_action_set_visible (self->priv->menu_swap_camera,
621       g_list_length ((GList *) cameras) >= 2);
622 }
623
624 static void
625 empathy_call_window_camera_removed_cb (EmpathyCameraMonitor *monitor,
626     EmpathyCamera *camera,
627     EmpathyCallWindow *self)
628 {
629   const GList *cameras = empathy_camera_monitor_get_cameras (monitor);
630
631   gtk_action_set_visible (self->priv->menu_swap_camera,
632       g_list_length ((GList *) cameras) >= 2);
633 }
634
635 static void
636 empathy_call_window_preview_button_clicked_cb (GtkButton *button,
637     EmpathyCallWindow *self)
638 {
639   GtkWidget *menu;
640
641   menu = gtk_ui_manager_get_widget (self->priv->ui_manager,
642       "/preview-menu");
643   gtk_menu_popup (GTK_MENU (menu), NULL, NULL, NULL, NULL,
644       0, gtk_get_current_event_time ());
645   gtk_menu_shell_select_first (GTK_MENU_SHELL (menu), FALSE);
646 }
647
648 static void
649 empathy_call_window_preview_hidden_button_clicked_cb (GtkButton *button,
650     EmpathyCallWindow *self)
651 {
652   GtkWidget *menu;
653
654   menu = gtk_ui_manager_get_widget (self->priv->ui_manager,
655       "/preview-hidden-menu");
656   gtk_menu_popup (GTK_MENU (menu), NULL, NULL, NULL, NULL,
657       0, gtk_get_current_event_time ());
658   gtk_menu_shell_select_first (GTK_MENU_SHELL (menu), FALSE);
659 }
660
661 static ClutterActor *
662 empathy_call_window_create_preview_rectangle (EmpathyCallWindow *self,
663     ClutterBinAlignment x,
664     ClutterBinAlignment y)
665 {
666   ClutterActor *rectangle;
667
668   rectangle = CLUTTER_ACTOR (empathy_rounded_rectangle_new (
669       SELF_VIDEO_SECTION_WIDTH, SELF_VIDEO_SECTION_HEIGHT,
670       PREVIEW_ROUND_FACTOR));
671
672   clutter_bin_layout_add (CLUTTER_BIN_LAYOUT (self->priv->preview_layout),
673       rectangle, x, y);
674   clutter_actor_hide (rectangle);
675
676   return rectangle;
677 }
678
679 static void
680 empathy_call_window_create_preview_rectangles (EmpathyCallWindow *self)
681 {
682   ClutterActor *box;
683
684   self->priv->preview_layout = clutter_bin_layout_new (
685       CLUTTER_BIN_ALIGNMENT_CENTER, CLUTTER_BIN_ALIGNMENT_CENTER);
686   self->priv->preview_box = box = clutter_box_new (self->priv->preview_layout);
687
688   clutter_bin_layout_add (CLUTTER_BIN_LAYOUT (self->priv->overlay_layout),
689       box,
690       CLUTTER_BIN_ALIGNMENT_FILL, CLUTTER_BIN_ALIGNMENT_FILL);
691
692   self->priv->preview_rectangle1 =
693       empathy_call_window_create_preview_rectangle (self,
694           CLUTTER_BIN_ALIGNMENT_START, CLUTTER_BIN_ALIGNMENT_START);
695   self->priv->preview_rectangle2 =
696       empathy_call_window_create_preview_rectangle (self,
697           CLUTTER_BIN_ALIGNMENT_START, CLUTTER_BIN_ALIGNMENT_END);
698   self->priv->preview_rectangle3 =
699       empathy_call_window_create_preview_rectangle (self,
700           CLUTTER_BIN_ALIGNMENT_END, CLUTTER_BIN_ALIGNMENT_START);
701   self->priv->preview_rectangle4 =
702       empathy_call_window_create_preview_rectangle (self,
703           CLUTTER_BIN_ALIGNMENT_END, CLUTTER_BIN_ALIGNMENT_END);
704 }
705
706 static void
707 empathy_call_window_show_preview_rectangles (EmpathyCallWindow *self,
708     gboolean show)
709 {
710   g_object_set (self->priv->preview_rectangle1, "visible", show, NULL);
711   g_object_set (self->priv->preview_rectangle2, "visible", show, NULL);
712   g_object_set (self->priv->preview_rectangle3, "visible", show, NULL);
713   g_object_set (self->priv->preview_rectangle4, "visible", show, NULL);
714 }
715
716 static void
717 empathy_call_window_get_preview_coordinates (EmpathyCallWindow *self,
718     PreviewPosition pos,
719     guint *x,
720     guint *y)
721 {
722   guint ret_x = 0, ret_y = 0;
723   ClutterGeometry box;
724
725   if (!clutter_actor_has_allocation (self->priv->preview_box))
726     goto out;
727
728   clutter_actor_get_geometry (self->priv->preview_box, &box);
729
730   switch (pos)
731     {
732       case PREVIEW_POS_TOP_LEFT:
733         ret_x = ret_y = SELF_VIDEO_SECTION_MARGIN;
734         break;
735       case PREVIEW_POS_TOP_RIGHT:
736         ret_x = box.width - SELF_VIDEO_SECTION_MARGIN
737             - SELF_VIDEO_SECTION_WIDTH;
738         ret_y = SELF_VIDEO_SECTION_MARGIN;
739         break;
740       case PREVIEW_POS_BOTTOM_LEFT:
741         ret_x = SELF_VIDEO_SECTION_MARGIN;
742         ret_y = box.height - SELF_VIDEO_SECTION_MARGIN
743             - SELF_VIDEO_SECTION_HEIGHT;
744         break;
745       case PREVIEW_POS_BOTTOM_RIGHT:
746         ret_x = box.width - SELF_VIDEO_SECTION_MARGIN
747             - SELF_VIDEO_SECTION_WIDTH;
748         ret_y = box.height - SELF_VIDEO_SECTION_MARGIN
749             - SELF_VIDEO_SECTION_HEIGHT;
750         break;
751       default:
752         g_warn_if_reached ();
753     }
754
755 out:
756   if (x != NULL)
757     *x = ret_x;
758
759   if (y != NULL)
760     *y = ret_y;
761 }
762
763 static PreviewPosition
764 empathy_call_window_get_preview_position (EmpathyCallWindow *self,
765     gfloat event_x,
766     gfloat event_y)
767 {
768   ClutterGeometry box;
769   PreviewPosition pos = PREVIEW_POS_NONE;
770
771   if (!clutter_actor_has_allocation (self->priv->preview_box))
772     return pos;
773
774   clutter_actor_get_geometry (self->priv->preview_box, &box);
775
776   if (0 + SELF_VIDEO_SECTION_MARGIN <= event_x &&
777       event_x <= (0 + SELF_VIDEO_SECTION_MARGIN + (gint) SELF_VIDEO_SECTION_WIDTH) &&
778       0 + SELF_VIDEO_SECTION_MARGIN <= event_y &&
779       event_y <= (0 + SELF_VIDEO_SECTION_MARGIN + (gint) SELF_VIDEO_SECTION_HEIGHT))
780     {
781       pos = PREVIEW_POS_TOP_LEFT;
782     }
783   else if (box.width - SELF_VIDEO_SECTION_MARGIN >= event_x &&
784       event_x >= (box.width - SELF_VIDEO_SECTION_MARGIN - (gint) SELF_VIDEO_SECTION_WIDTH) &&
785       0 + SELF_VIDEO_SECTION_MARGIN <= event_y &&
786       event_y <= (0 + SELF_VIDEO_SECTION_MARGIN + (gint) SELF_VIDEO_SECTION_HEIGHT))
787     {
788       pos = PREVIEW_POS_TOP_RIGHT;
789     }
790   else if (0 + SELF_VIDEO_SECTION_MARGIN <= event_x &&
791       event_x <= (0 + SELF_VIDEO_SECTION_MARGIN + (gint) SELF_VIDEO_SECTION_WIDTH) &&
792       box.height - SELF_VIDEO_SECTION_MARGIN >= event_y &&
793       event_y >= (box.height - SELF_VIDEO_SECTION_MARGIN - (gint) SELF_VIDEO_SECTION_HEIGHT))
794     {
795       pos = PREVIEW_POS_BOTTOM_LEFT;
796     }
797   else if (box.width - SELF_VIDEO_SECTION_MARGIN >= event_x &&
798       event_x >= (box.width - SELF_VIDEO_SECTION_MARGIN - (gint) SELF_VIDEO_SECTION_WIDTH) &&
799       box.height - 2 * SELF_VIDEO_SECTION_MARGIN >= event_y &&
800       event_y >= (box.height - SELF_VIDEO_SECTION_MARGIN - (gint) SELF_VIDEO_SECTION_HEIGHT))
801     {
802       pos = PREVIEW_POS_BOTTOM_RIGHT;
803     }
804
805   return pos;
806 }
807
808 static ClutterActor *
809 empathy_call_window_get_preview_rectangle (EmpathyCallWindow *self,
810     PreviewPosition pos)
811 {
812   ClutterActor *rectangle;
813
814   switch (pos)
815     {
816       case PREVIEW_POS_TOP_LEFT:
817         rectangle = self->priv->preview_rectangle1;
818         break;
819       case PREVIEW_POS_TOP_RIGHT:
820         rectangle = self->priv->preview_rectangle3;
821         break;
822       case PREVIEW_POS_BOTTOM_LEFT:
823         rectangle = self->priv->preview_rectangle2;
824         break;
825       case PREVIEW_POS_BOTTOM_RIGHT:
826         rectangle = self->priv->preview_rectangle4;
827         break;
828       default:
829         rectangle = NULL;
830     }
831
832   return rectangle;
833 }
834
835 static void
836 empathy_call_window_move_video_preview (EmpathyCallWindow *self,
837     PreviewPosition pos)
838 {
839   ClutterBinLayout *layout = CLUTTER_BIN_LAYOUT (self->priv->preview_layout);
840
841   DEBUG ("moving the video preview to %d", pos);
842
843   self->priv->preview_pos = pos;
844
845   switch (pos)
846     {
847       case PREVIEW_POS_TOP_LEFT:
848         clutter_bin_layout_set_alignment (layout,
849             self->priv->video_preview,
850             CLUTTER_BIN_ALIGNMENT_START,
851             CLUTTER_BIN_ALIGNMENT_START);
852         break;
853       case PREVIEW_POS_TOP_RIGHT:
854         clutter_bin_layout_set_alignment (layout,
855             self->priv->video_preview,
856             CLUTTER_BIN_ALIGNMENT_END,
857             CLUTTER_BIN_ALIGNMENT_START);
858         break;
859       case PREVIEW_POS_BOTTOM_LEFT:
860         clutter_bin_layout_set_alignment (layout,
861             self->priv->video_preview,
862             CLUTTER_BIN_ALIGNMENT_START,
863             CLUTTER_BIN_ALIGNMENT_END);
864         break;
865       case PREVIEW_POS_BOTTOM_RIGHT:
866         clutter_bin_layout_set_alignment (layout,
867             self->priv->video_preview,
868             CLUTTER_BIN_ALIGNMENT_END,
869             CLUTTER_BIN_ALIGNMENT_END);
870         break;
871       default:
872         g_warn_if_reached ();
873     }
874
875   g_settings_set_enum (self->priv->settings, "camera-position", pos);
876 }
877
878 static void
879 empathy_call_window_highlight_preview_rectangle (EmpathyCallWindow *self,
880     PreviewPosition pos)
881 {
882   ClutterActor *rectangle;
883   ClutterColor white = { 0xff, 0xff, 0xff, 0xff};
884
885   rectangle = empathy_call_window_get_preview_rectangle (self, pos);
886
887   empathy_rounded_rectangle_set_border_width (
888       EMPATHY_ROUNDED_RECTANGLE (rectangle), 2 * SELF_VIDEO_SECTION_MARGIN);
889   empathy_rounded_rectangle_set_border_color (
890       EMPATHY_ROUNDED_RECTANGLE (rectangle), &white);
891 }
892
893 static void
894 empathy_call_window_darken_preview_rectangle (EmpathyCallWindow *self,
895     ClutterActor *rectangle)
896 {
897   ClutterColor white = { 0xff, 0xff, 0xff, 0xff}, darker;
898
899   clutter_color_shade (&white, 0.55, &darker);
900
901   empathy_rounded_rectangle_set_border_width (
902       EMPATHY_ROUNDED_RECTANGLE (rectangle), 1);
903   empathy_rounded_rectangle_set_border_color (
904       EMPATHY_ROUNDED_RECTANGLE (rectangle), &darker);
905 }
906
907 static void
908 empathy_call_window_darken_preview_rectangles (EmpathyCallWindow *self)
909 {
910   ClutterActor *rectangle;
911
912   rectangle = empathy_call_window_get_preview_rectangle (self,
913       self->priv->preview_pos);
914
915   /* We don't want to darken the rectangle where the preview
916    * currently is. */
917
918   if (self->priv->preview_rectangle1 != rectangle)
919     empathy_call_window_darken_preview_rectangle (self,
920         self->priv->preview_rectangle1);
921
922   if (self->priv->preview_rectangle2 != rectangle)
923     empathy_call_window_darken_preview_rectangle (self,
924         self->priv->preview_rectangle2);
925
926   if (self->priv->preview_rectangle3 != rectangle)
927     empathy_call_window_darken_preview_rectangle (self,
928         self->priv->preview_rectangle3);
929
930   if (self->priv->preview_rectangle4 != rectangle)
931     empathy_call_window_darken_preview_rectangle (self,
932         self->priv->preview_rectangle4);
933 }
934
935 static void
936 empathy_call_window_preview_on_drag_begin_cb (ClutterDragAction *action,
937     ClutterActor *actor,
938     gfloat event_x,
939     gfloat event_y,
940     ClutterModifierType modifiers,
941     EmpathyCallWindow *self)
942 {
943   ClutterActor *stage = clutter_actor_get_stage (actor);
944   gfloat rel_x, rel_y;
945
946   self->priv->drag_preview = clutter_clone_new (actor);
947
948   clutter_container_add_actor (CLUTTER_CONTAINER (stage),
949       self->priv->drag_preview);
950
951   clutter_actor_transform_stage_point (actor, event_x, event_y,
952       &rel_x, &rel_y);
953
954   clutter_actor_set_position (self->priv->drag_preview,
955       event_x - rel_x, event_y - rel_y);
956
957   clutter_drag_action_set_drag_handle (action,
958       self->priv->drag_preview);
959
960   clutter_actor_set_opacity (actor, 0);
961   clutter_actor_hide (self->priv->preview_shown_button);
962
963   empathy_call_window_show_preview_rectangles (self, TRUE);
964   empathy_call_window_darken_preview_rectangles (self);
965 }
966
967 static void
968 empathy_call_window_on_animation_completed_cb (ClutterAnimation *animation,
969     ClutterActor *actor)
970 {
971   clutter_actor_set_opacity (actor, 255);
972 }
973
974 static void
975 empathy_call_window_preview_on_drag_end_cb (ClutterDragAction *action,
976     ClutterActor *actor,
977     gfloat event_x,
978     gfloat event_y,
979     ClutterModifierType modifiers,
980     EmpathyCallWindow *self)
981 {
982   PreviewPosition pos;
983   guint x, y;
984
985   /* Get the position before destroying the drag actor, otherwise the
986    * preview_box allocation won't be valid and we won't be able to
987    * calculate the position. */
988   pos = empathy_call_window_get_preview_position (self, event_x, event_y);
989
990   empathy_call_window_get_preview_coordinates (self,
991       pos != PREVIEW_POS_NONE ? pos : self->priv->preview_pos,
992       &x, &y);
993
994   /* Move the preview to the destination and destroy it afterwards */
995   clutter_actor_animate (self->priv->drag_preview, CLUTTER_LINEAR, 500,
996       "x", (gfloat) x,
997       "y", (gfloat) y,
998       "signal-swapped-after::completed",
999         clutter_actor_destroy, self->priv->drag_preview,
1000       "signal-swapped-after::completed",
1001         clutter_actor_show, self->priv->preview_shown_button,
1002       "signal::completed",
1003         empathy_call_window_on_animation_completed_cb, actor,
1004       NULL);
1005
1006   self->priv->drag_preview = NULL;
1007
1008   if (pos != PREVIEW_POS_NONE)
1009     empathy_call_window_move_video_preview (self, pos);
1010
1011   empathy_call_window_show_preview_rectangles (self, FALSE);
1012 }
1013
1014 static void
1015 empathy_call_window_preview_on_drag_motion_cb (ClutterDragAction *action,
1016     ClutterActor *actor,
1017     gfloat delta_x,
1018     gfloat delta_y,
1019     EmpathyCallWindow *self)
1020 {
1021   PreviewPosition pos;
1022   gfloat event_x, event_y;
1023
1024   clutter_drag_action_get_motion_coords (action, &event_x, &event_y);
1025
1026   pos = empathy_call_window_get_preview_position (self, event_x, event_y);
1027
1028   if (pos != PREVIEW_POS_NONE)
1029     empathy_call_window_highlight_preview_rectangle (self, pos);
1030   else
1031     empathy_call_window_darken_preview_rectangles (self);
1032 }
1033
1034 static gboolean
1035 empathy_call_window_preview_enter_event_cb (ClutterActor *actor,
1036     ClutterCrossingEvent *event,
1037     EmpathyCallWindow *self)
1038 {
1039   ClutterActor *rectangle;
1040
1041   rectangle = empathy_call_window_get_preview_rectangle (self,
1042       self->priv->preview_pos);
1043
1044   empathy_call_window_highlight_preview_rectangle (self,
1045       self->priv->preview_pos);
1046
1047   clutter_actor_show (rectangle);
1048
1049   return FALSE;
1050 }
1051
1052 static gboolean
1053 empathy_call_window_preview_leave_event_cb (ClutterActor *actor,
1054     ClutterCrossingEvent *event,
1055     EmpathyCallWindow *self)
1056 {
1057   ClutterActor *rectangle;
1058
1059   rectangle = empathy_call_window_get_preview_rectangle (self,
1060       self->priv->preview_pos);
1061
1062   empathy_call_window_darken_preview_rectangle (self, rectangle);
1063
1064   clutter_actor_hide (rectangle);
1065
1066   return FALSE;
1067 }
1068
1069 static void
1070 create_video_preview (EmpathyCallWindow *self)
1071 {
1072   EmpathyCallWindowPriv *priv = GET_PRIV (self);
1073   ClutterLayoutManager *layout;
1074   ClutterActor *preview;
1075   ClutterActor *b;
1076   ClutterAction *action;
1077   GtkWidget *button;
1078   PreviewPosition pos;
1079
1080   g_assert (priv->video_preview == NULL);
1081
1082   pos = g_settings_get_enum (priv->settings, "camera-position");
1083
1084   preview = empathy_rounded_texture_new ();
1085   clutter_actor_set_size (preview,
1086       SELF_VIDEO_SECTION_WIDTH, SELF_VIDEO_SECTION_HEIGHT);
1087
1088   priv->video_preview_sink = gst_element_factory_make ("cluttersink", NULL);
1089   if (priv->video_preview_sink == NULL)
1090       g_error ("Missing cluttersink, check your clutter-gst installation");
1091   g_object_set (priv->video_preview_sink, "texture", preview, NULL);
1092   g_object_add_weak_pointer (G_OBJECT (priv->video_preview_sink), (gpointer) &priv->video_preview_sink);
1093
1094   /* Add a little offset to the video preview */
1095   layout = clutter_bin_layout_new (CLUTTER_BIN_ALIGNMENT_CENTER,
1096       CLUTTER_BIN_ALIGNMENT_CENTER);
1097   priv->video_preview = clutter_box_new (layout);
1098   clutter_actor_set_size (priv->video_preview,
1099       SELF_VIDEO_SECTION_WIDTH + 2 * SELF_VIDEO_SECTION_MARGIN,
1100       SELF_VIDEO_SECTION_HEIGHT + 2 * SELF_VIDEO_SECTION_MARGIN);
1101
1102   /* Spinner for when changing the camera device */
1103   priv->preview_spinner_widget = gtk_spinner_new ();
1104   priv->preview_spinner_actor = empathy_rounded_actor_new (PREVIEW_ROUND_FACTOR);
1105
1106   g_object_set (priv->preview_spinner_widget, "expand", TRUE, NULL);
1107   make_background_transparent (GTK_CLUTTER_ACTOR (priv->preview_spinner_actor));
1108   gtk_widget_show (priv->preview_spinner_widget);
1109
1110   gtk_container_add (
1111       GTK_CONTAINER (gtk_clutter_actor_get_widget (
1112           GTK_CLUTTER_ACTOR (priv->preview_spinner_actor))),
1113       priv->preview_spinner_widget);
1114   clutter_actor_set_size (priv->preview_spinner_actor,
1115       SELF_VIDEO_SECTION_WIDTH, SELF_VIDEO_SECTION_HEIGHT);
1116   clutter_actor_set_opacity (priv->preview_spinner_actor, 128);
1117   clutter_actor_hide (priv->preview_spinner_actor);
1118
1119   clutter_container_add_actor (CLUTTER_CONTAINER (priv->video_preview),
1120       preview);
1121   clutter_container_add_actor (CLUTTER_CONTAINER (priv->video_preview),
1122       priv->preview_spinner_actor);
1123
1124   g_object_set (priv->video_preview_sink,
1125       "sync", FALSE,
1126       "async", FALSE,
1127       NULL);
1128
1129   /* Translators: this is an "Info" label. It should be as short
1130    * as possible. */
1131   button = gtk_button_new_with_label (_("i"));
1132   priv->preview_shown_button = b = gtk_clutter_actor_new_with_contents (button);
1133   clutter_actor_set_size (b, 24, 24);
1134   clutter_actor_set_margin_right (b, 4);
1135   clutter_actor_set_margin_bottom (b, 2);
1136   make_background_transparent (GTK_CLUTTER_ACTOR (b));
1137
1138   clutter_bin_layout_add (CLUTTER_BIN_LAYOUT (layout), b,
1139       CLUTTER_BIN_ALIGNMENT_END, CLUTTER_BIN_ALIGNMENT_END);
1140
1141   g_signal_connect (button, "clicked",
1142       G_CALLBACK (empathy_call_window_preview_button_clicked_cb),
1143       self);
1144
1145   /* Translators: this is an "Info" label. It should be as short
1146    * as possible. */
1147   button = gtk_button_new_with_label (_("i"));
1148   priv->preview_hidden_button = b = gtk_clutter_actor_new_with_contents (button);
1149   clutter_actor_set_size (b, 24, 24);
1150   make_background_transparent (GTK_CLUTTER_ACTOR (b));
1151
1152   clutter_bin_layout_add (CLUTTER_BIN_LAYOUT (priv->preview_layout),
1153       priv->preview_hidden_button,
1154       CLUTTER_BIN_ALIGNMENT_START,
1155       CLUTTER_BIN_ALIGNMENT_END);
1156
1157   self->priv->preview_pos = PREVIEW_POS_BOTTOM_LEFT;
1158
1159   clutter_actor_hide (priv->preview_hidden_button);
1160
1161   g_signal_connect (button, "clicked",
1162       G_CALLBACK (empathy_call_window_preview_hidden_button_clicked_cb),
1163       self);
1164
1165   clutter_bin_layout_add (CLUTTER_BIN_LAYOUT (priv->preview_layout),
1166       priv->video_preview,
1167       CLUTTER_BIN_ALIGNMENT_START,
1168       CLUTTER_BIN_ALIGNMENT_END);
1169
1170   empathy_call_window_move_video_preview (self, pos);
1171
1172   action = clutter_drag_action_new ();
1173   g_signal_connect (action, "drag-begin",
1174       G_CALLBACK (empathy_call_window_preview_on_drag_begin_cb), self);
1175   g_signal_connect (action, "drag-end",
1176       G_CALLBACK (empathy_call_window_preview_on_drag_end_cb), self);
1177   g_signal_connect (action, "drag-motion",
1178       G_CALLBACK (empathy_call_window_preview_on_drag_motion_cb), self);
1179
1180   g_signal_connect (preview, "enter-event",
1181       G_CALLBACK (empathy_call_window_preview_enter_event_cb), self);
1182   g_signal_connect (preview, "leave-event",
1183       G_CALLBACK (empathy_call_window_preview_leave_event_cb), self);
1184
1185   clutter_actor_add_action (preview, action);
1186   clutter_actor_set_reactive (preview, TRUE);
1187   clutter_actor_set_reactive (priv->preview_shown_button, TRUE);
1188 }
1189
1190 static void
1191 empathy_call_window_start_camera_spinning (EmpathyCallWindow *self)
1192 {
1193   clutter_actor_show (self->priv->preview_spinner_actor);
1194   gtk_spinner_start (GTK_SPINNER (self->priv->preview_spinner_widget));
1195 }
1196
1197 static void
1198 empathy_call_window_stop_camera_spinning (EmpathyCallWindow *self)
1199 {
1200   clutter_actor_hide (self->priv->preview_spinner_actor);
1201   gtk_spinner_stop (GTK_SPINNER (self->priv->preview_spinner_widget));
1202 }
1203
1204 void
1205 empathy_call_window_play_camera (EmpathyCallWindow *self,
1206     gboolean play)
1207 {
1208   EmpathyCallWindowPriv *priv = GET_PRIV (self);
1209   GstElement *preview;
1210   GstState state;
1211
1212   if (priv->video_preview == NULL)
1213     {
1214       create_video_preview (self);
1215       add_video_preview_to_pipeline (self);
1216     }
1217
1218   if (play)
1219     {
1220       state = GST_STATE_PLAYING;
1221     }
1222   else
1223     {
1224       empathy_call_window_start_camera_spinning (self);
1225       state = GST_STATE_NULL;
1226     }
1227
1228   preview = priv->video_preview_sink;
1229
1230   gst_element_set_state (preview, state);
1231   gst_element_set_state (priv->video_tee, state);
1232   gst_element_set_state (priv->video_input, state);
1233 }
1234
1235 static void
1236 display_video_preview (EmpathyCallWindow *self,
1237     gboolean display)
1238 {
1239   EmpathyCallWindowPriv *priv = GET_PRIV (self);
1240
1241   if (priv->video_preview == NULL)
1242     {
1243       create_video_preview (self);
1244       add_video_preview_to_pipeline (self);
1245     }
1246
1247   if (display)
1248     {
1249       /* Display the video preview */
1250       DEBUG ("Show video preview");
1251
1252       empathy_call_window_play_camera (self, TRUE);
1253       clutter_actor_show (priv->video_preview);
1254       clutter_actor_raise_top (priv->floating_toolbar);
1255     }
1256   else
1257     {
1258       /* Hide the video preview */
1259       DEBUG ("Hide video preview");
1260
1261       if (priv->video_preview != NULL)
1262         {
1263           clutter_actor_hide (priv->video_preview);
1264           empathy_call_window_play_camera (self, FALSE);
1265         }
1266     }
1267 }
1268
1269 static void
1270 empathy_call_window_set_state_connecting (EmpathyCallWindow *window)
1271 {
1272   EmpathyCallWindowPriv *priv = GET_PRIV (window);
1273
1274   empathy_call_window_status_message (window, _("Connecting…"));
1275   priv->call_state = CONNECTING;
1276
1277   /* Show the toolbar */
1278   clutter_state_set_state (priv->transitions, "fade-in");
1279
1280   if (priv->outgoing)
1281     empathy_sound_manager_start_playing (priv->sound_mgr, GTK_WIDGET (window),
1282         EMPATHY_SOUND_PHONE_OUTGOING, MS_BETWEEN_RING);
1283 }
1284
1285 static void
1286 disable_camera (EmpathyCallWindow *self)
1287 {
1288   EmpathyCallWindowPriv *priv = GET_PRIV (self);
1289
1290   if (priv->camera_state == CAMERA_STATE_OFF)
1291     return;
1292
1293   DEBUG ("Disable camera");
1294
1295   empathy_call_window_set_send_video (self, CAMERA_STATE_OFF);
1296
1297   priv->camera_state = CAMERA_STATE_OFF;
1298 }
1299
1300 static void
1301 enable_camera (EmpathyCallWindow *self)
1302 {
1303   EmpathyCallWindowPriv *priv = GET_PRIV (self);
1304
1305   if (priv->camera_state == CAMERA_STATE_ON)
1306     return;
1307
1308   if (priv->video_input == NULL)
1309     {
1310       DEBUG ("Can't enable camera, no input");
1311       return;
1312     }
1313
1314   DEBUG ("Enable camera");
1315
1316   empathy_call_window_set_send_video (self, CAMERA_STATE_ON);
1317
1318   priv->camera_state = CAMERA_STATE_ON;
1319 }
1320
1321 static void
1322 empathy_call_window_camera_toggled_cb (GtkToggleButton *toggle,
1323   EmpathyCallWindow *self)
1324 {
1325   if (gtk_toggle_button_get_active (toggle))
1326     enable_camera (self);
1327   else
1328     disable_camera (self);
1329 }
1330
1331 static void
1332 create_pipeline (EmpathyCallWindow *self)
1333 {
1334   EmpathyCallWindowPriv *priv = GET_PRIV (self);
1335   GstBus *bus;
1336
1337   g_assert (priv->pipeline == NULL);
1338
1339   priv->pipeline = gst_pipeline_new (NULL);
1340   priv->pipeline_playing = FALSE;
1341
1342   priv->video_tee = gst_element_factory_make ("tee", NULL);
1343   gst_object_ref_sink (priv->video_tee);
1344
1345   gst_bin_add (GST_BIN (priv->pipeline), priv->video_tee);
1346
1347   bus = gst_pipeline_get_bus (GST_PIPELINE (priv->pipeline));
1348   priv->bus_message_source_id = gst_bus_add_watch (bus,
1349       empathy_call_window_bus_message, self);
1350
1351   g_object_unref (bus);
1352 }
1353
1354 static void
1355 empathy_call_window_settings_cb (GtkAction *action,
1356     EmpathyCallWindow *self)
1357 {
1358   gchar *args = g_strdup_printf ("-p %s",
1359       empathy_preferences_tab_to_string (EMPATHY_PREFERENCES_TAB_CALLS));
1360
1361   empathy_launch_program (BIN_DIR, "empathy", args);
1362
1363   g_free (args);
1364 }
1365
1366 static void
1367 empathy_call_window_contents_cb (GtkAction *action,
1368     EmpathyCallWindow *self)
1369 {
1370   empathy_url_show (GTK_WIDGET (self), "help:empathy/audio-video");
1371 }
1372
1373 static void
1374 show_png (GPid pid, gint status, gpointer user_data)
1375 {
1376   gtk_show_uri (NULL, (gchar *) user_data, GDK_CURRENT_TIME, NULL);
1377   g_spawn_close_pid (pid);
1378   g_free (user_data);
1379 }
1380
1381 static void
1382 empathy_call_window_debug_gst_cb (GtkAction *action,
1383     EmpathyCallWindow *self)
1384 {
1385   EmpathyCallWindowPriv *priv = GET_PRIV (self);
1386   GDateTime *date_time;
1387   GPid dot_pid;
1388   const gchar *dot_dir;
1389   const gchar *prgname;
1390   gchar *dot_cmd;
1391   gchar *filename;
1392   gchar **argv;
1393   gint argc;
1394
1395   if (priv->pipeline == NULL)
1396     DEBUG ("No pipeline");
1397
1398   date_time = g_date_time_new_now_utc ();
1399   prgname = g_get_prgname ();
1400   filename = g_strdup_printf ("%s-%" G_GINT64_FORMAT, prgname,
1401       g_date_time_to_unix (date_time));
1402
1403   GST_DEBUG_BIN_TO_DOT_FILE (GST_BIN (priv->pipeline),
1404       GST_DEBUG_GRAPH_SHOW_ALL, filename);
1405
1406   dot_dir = g_getenv ("GST_DEBUG_DUMP_DOT_DIR");
1407   dot_cmd = g_strdup_printf ("dot -Tpng -o %s.png %s.dot",
1408       filename,
1409       filename);
1410   g_shell_parse_argv (dot_cmd, &argc, &argv, NULL);
1411
1412   if (g_spawn_async (dot_dir,
1413           argv,
1414           NULL,
1415           G_SPAWN_DO_NOT_REAP_CHILD | G_SPAWN_SEARCH_PATH,
1416           NULL,
1417           NULL,
1418           &dot_pid,
1419           NULL))
1420     {
1421       gchar *uri = g_strdup_printf ("file://%s/%s.png", dot_dir, filename);
1422       g_child_watch_add (dot_pid, show_png, uri);
1423     }
1424
1425   g_strfreev (argv);
1426   g_free (dot_cmd);
1427   g_free (filename);
1428   g_date_time_unref (date_time);
1429 }
1430
1431 static void
1432 empathy_call_window_debug_tp_cb (GtkAction *action,
1433     EmpathyCallWindow *self)
1434 {
1435   empathy_launch_program (BIN_DIR, "empathy-debugger", "-s Empathy.Call");
1436 }
1437
1438 static void
1439 empathy_call_window_about_cb (GtkAction *action,
1440     EmpathyCallWindow *self)
1441 {
1442   empathy_about_dialog_new (GTK_WINDOW (self));
1443 }
1444
1445 static gboolean
1446 empathy_call_window_toolbar_timeout (gpointer data)
1447 {
1448   EmpathyCallWindow *self = data;
1449
1450   /* We don't want to hide the toolbar if we're not in a call, as
1451    * to show the call status all the time. Also don't hide if we're muted
1452    * to prevent the awkward, talking when muted situation */
1453   if (self->priv->call_state != CONNECTING &&
1454       self->priv->call_state != DISCONNECTED &&
1455       !self->priv->muted)
1456     clutter_state_set_state (self->priv->transitions, "fade-out");
1457
1458   return TRUE;
1459 }
1460
1461 static gboolean
1462 empathy_call_window_motion_notify_cb (GtkWidget *widget,
1463     GdkEvent *event,
1464     EmpathyCallWindow *self)
1465 {
1466   clutter_state_set_state (self->priv->transitions, "fade-in");
1467
1468   if (self->priv->inactivity_src > 0)
1469     g_source_remove (self->priv->inactivity_src);
1470
1471   self->priv->inactivity_src = g_timeout_add_seconds (3,
1472       empathy_call_window_toolbar_timeout, self);
1473
1474   return FALSE;
1475 }
1476
1477 static gboolean
1478 empathy_call_window_configure_event_cb (GtkWidget *widget,
1479     GdkEvent  *event,
1480     EmpathyCallWindow *self)
1481 {
1482   GdkWindow *gdk_window;
1483   GdkWindowState window_state;
1484
1485   gtk_window_get_position (GTK_WINDOW (self), &self->priv->x, &self->priv->y);
1486   gtk_window_get_size (GTK_WINDOW (self), &self->priv->w, &self->priv->h);
1487
1488   gtk_widget_get_preferred_width (self->priv->dtmf_panel,
1489       &self->priv->dialpad_width, NULL);
1490
1491   gdk_window = gtk_widget_get_window (widget);
1492   window_state = gdk_window_get_state (gdk_window);
1493   self->priv->maximized = (window_state & GDK_WINDOW_STATE_MAXIMIZED);
1494
1495   return FALSE;
1496 }
1497
1498 static void
1499 empathy_call_window_destroyed_cb (GtkWidget *object,
1500     EmpathyCallWindow *self)
1501 {
1502   if (gtk_widget_get_visible (self->priv->dtmf_panel))
1503     {
1504       /* Save the geometry as if the dialpad was hidden. */
1505       empathy_geometry_save_values (GTK_WINDOW (self),
1506           self->priv->x, self->priv->y,
1507           self->priv->w - self->priv->dialpad_width, self->priv->h,
1508           self->priv->maximized);
1509     }
1510 }
1511
1512 static void
1513 empathy_call_window_incoming_call_response_cb (GtkDialog *dialog,
1514     gint response_id,
1515     EmpathyCallWindow *self)
1516 {
1517   switch (response_id)
1518     {
1519       case GTK_RESPONSE_ACCEPT:
1520         tp_channel_dispatch_operation_handle_with_async (
1521             self->priv->pending_cdo, EMPATHY_CALL_BUS_NAME, NULL, NULL);
1522
1523         tp_clear_object (&self->priv->pending_cdo);
1524         tp_clear_object (&self->priv->pending_channel);
1525         tp_clear_object (&self->priv->pending_context);
1526
1527         break;
1528       case GTK_RESPONSE_CANCEL:
1529         tp_channel_dispatch_operation_close_channels_async (
1530             self->priv->pending_cdo, NULL, NULL);
1531
1532         empathy_call_window_status_message (self, _("Disconnected"));
1533         self->priv->call_state = DISCONNECTED;
1534         break;
1535       default:
1536         g_warn_if_reached ();
1537     }
1538 }
1539
1540 static void
1541 empathy_call_window_set_state_ringing (EmpathyCallWindow *self)
1542 {
1543   gboolean video;
1544
1545   g_assert (self->priv->call_state != CONNECTED);
1546
1547   video = tp_call_channel_has_initial_video (self->priv->pending_channel, NULL);
1548
1549   empathy_call_window_status_message (self, _("Incoming call"));
1550   self->priv->call_state = RINGING;
1551
1552   self->priv->incoming_call_dialog = gtk_message_dialog_new (
1553       GTK_WINDOW (self), GTK_DIALOG_MODAL,
1554       GTK_MESSAGE_QUESTION, GTK_BUTTONS_NONE,
1555       video ? _("Incoming video call from %s") : _("Incoming call from %s"),
1556       empathy_contact_get_alias (self->priv->contact));
1557
1558   gtk_dialog_add_buttons (GTK_DIALOG (self->priv->incoming_call_dialog),
1559       _("Reject"), GTK_RESPONSE_CANCEL,
1560       _("Answer"), GTK_RESPONSE_ACCEPT,
1561       NULL);
1562
1563   g_signal_connect (self->priv->incoming_call_dialog, "response",
1564       G_CALLBACK (empathy_call_window_incoming_call_response_cb), self);
1565   gtk_widget_show (self->priv->incoming_call_dialog);
1566 }
1567
1568 static void
1569 empathy_call_window_cdo_invalidated_cb (TpProxy *channel,
1570     guint domain,
1571     gint code,
1572     gchar *message,
1573     EmpathyCallWindow *self)
1574 {
1575   tp_clear_object (&self->priv->pending_cdo);
1576   tp_clear_object (&self->priv->pending_channel);
1577   tp_clear_object (&self->priv->pending_context);
1578
1579   /* We don't know if the incoming call has been accepted or not, so we
1580    * assume it hasn't and if it has, we'll set the proper status when
1581    * we get the new handler. */
1582   empathy_call_window_status_message (self, _("Disconnected"));
1583   self->priv->call_state = DISCONNECTED;
1584
1585   gtk_widget_destroy (self->priv->incoming_call_dialog);
1586   self->priv->incoming_call_dialog = NULL;
1587 }
1588
1589 void
1590 empathy_call_window_start_ringing (EmpathyCallWindow *self,
1591     TpCallChannel *channel,
1592     TpChannelDispatchOperation *dispatch_operation,
1593     TpAddDispatchOperationContext *context)
1594 {
1595   g_assert (self->priv->pending_channel == NULL);
1596   g_assert (self->priv->pending_context == NULL);
1597   g_assert (self->priv->pending_cdo == NULL);
1598
1599   /* Start ringing and delay until the user answers or hangs. */
1600   self->priv->pending_channel = g_object_ref (channel);
1601   self->priv->pending_context = g_object_ref (context);
1602   self->priv->pending_cdo = g_object_ref (dispatch_operation);
1603
1604   g_signal_connect (self->priv->pending_cdo, "invalidated",
1605       G_CALLBACK (empathy_call_window_cdo_invalidated_cb), self);
1606
1607   empathy_call_window_set_state_ringing (self);
1608   tp_add_dispatch_operation_context_accept (context);
1609 }
1610
1611 static void
1612 mic_button_clicked (GtkWidget *button,
1613     EmpathyCallWindow *self)
1614 {
1615   /* Toggle the muted state. We rely on audio_input_mute_notify_cb to update
1616    * the icon. */
1617   empathy_audio_src_set_mute (EMPATHY_GST_AUDIO_SRC (self->priv->audio_input),
1618       !self->priv->muted);
1619 }
1620
1621 static void
1622 empathy_call_window_init (EmpathyCallWindow *self)
1623 {
1624   EmpathyCallWindowPriv *priv;
1625   GtkBuilder *gui;
1626   GtkWidget *top_vbox;
1627   gchar *filename;
1628   ClutterConstraint *constraint;
1629   ClutterActor *remote_avatar;
1630   ClutterColor black = { 0, 0, 0, 0 };
1631   ClutterMargin overlay_margin = { OVERLAY_MARGIN, OVERLAY_MARGIN,
1632     OVERLAY_MARGIN, OVERLAY_MARGIN };
1633
1634   priv = self->priv = G_TYPE_INSTANCE_GET_PRIVATE (self,
1635     EMPATHY_TYPE_CALL_WINDOW, EmpathyCallWindowPriv);
1636
1637   priv->settings = g_settings_new (EMPATHY_PREFS_CALL_SCHEMA);
1638   priv->timer = g_timer_new ();
1639
1640   filename = empathy_file_lookup ("empathy-call-window.ui", "src");
1641   gui = empathy_builder_get_file (filename,
1642     "call_window_vbox", &top_vbox,
1643     "errors_vbox", &priv->errors_vbox,
1644     "pane", &priv->pane,
1645     "remote_user_name_toolbar", &priv->remote_user_name_toolbar,
1646     "remote_user_status_toolbar", &priv->remote_user_status_toolbar,
1647     "remote_user_avatar_toolbar", &priv->remote_user_avatar_toolbar,
1648     "status_label", &priv->status_label,
1649     "audiocall", &priv->audio_call_button,
1650     "videocall", &priv->video_call_button,
1651     "microphone", &priv->mic_button,
1652     "microphone_icon", &priv->microphone_icon,
1653     "volume", &priv->volume_button,
1654     "camera", &priv->camera_button,
1655     "hangup", &priv->hangup_button,
1656     "dialpad", &priv->dialpad_button,
1657     "toolbar", &priv->toolbar,
1658     "bottom_toolbar", &priv->bottom_toolbar,
1659     "ui_manager", &priv->ui_manager,
1660     "menufullscreen", &priv->menu_fullscreen,
1661     "menupreviewswap", &priv->menu_swap_camera,
1662     "details_vbox",  &priv->details_vbox,
1663     "vcodec_encoding_label", &priv->vcodec_encoding_label,
1664     "acodec_encoding_label", &priv->acodec_encoding_label,
1665     "acodec_decoding_label", &priv->acodec_decoding_label,
1666     "vcodec_decoding_label", &priv->vcodec_decoding_label,
1667     "audio_remote_candidate_label", &priv->audio_remote_candidate_label,
1668     "audio_local_candidate_label", &priv->audio_local_candidate_label,
1669     "video_remote_candidate_label", &priv->video_remote_candidate_label,
1670     "video_local_candidate_label", &priv->video_local_candidate_label,
1671     "video_remote_candidate_info_img", &priv->video_remote_candidate_info_img,
1672     "video_local_candidate_info_img", &priv->video_local_candidate_info_img,
1673     "audio_remote_candidate_info_img", &priv->audio_remote_candidate_info_img,
1674     "audio_local_candidate_info_img", &priv->audio_local_candidate_info_img,
1675     NULL);
1676   g_free (filename);
1677
1678   empathy_builder_connect (gui, self,
1679     "hangup", "clicked", empathy_call_window_hangup_cb,
1680     "audiocall", "clicked", empathy_call_window_audio_call_cb,
1681     "videocall", "clicked", empathy_call_window_video_call_cb,
1682     "camera", "toggled", empathy_call_window_camera_toggled_cb,
1683     "dialpad", "toggled", empathy_call_window_dialpad_cb,
1684     "menufullscreen", "activate", empathy_call_window_fullscreen_cb,
1685     "menusettings", "activate", empathy_call_window_settings_cb,
1686     "menucontents", "activate", empathy_call_window_contents_cb,
1687     "menudebuggst", "activate", empathy_call_window_debug_gst_cb,
1688     "menudebugtp", "activate", empathy_call_window_debug_tp_cb,
1689     "menuabout", "activate", empathy_call_window_about_cb,
1690     "menupreviewdisable", "activate", empathy_call_window_disable_camera_cb,
1691     "menupreviewminimise", "activate", empathy_call_window_minimise_camera_cb,
1692     "menupreviewmaximise", "activate", empathy_call_window_maximise_camera_cb,
1693     "menupreviewswap", "activate", empathy_call_window_swap_camera_cb,
1694     NULL);
1695
1696   empathy_set_css_provider (GTK_WIDGET (self));
1697   gtk_action_set_sensitive (priv->menu_fullscreen, FALSE);
1698
1699   priv->camera_monitor = empathy_camera_monitor_dup_singleton ();
1700
1701   g_object_bind_property (priv->camera_monitor, "available",
1702       priv->camera_button, "sensitive",
1703       G_BINDING_SYNC_CREATE);
1704
1705   g_signal_connect (priv->camera_monitor, "added",
1706       G_CALLBACK (empathy_call_window_camera_added_cb), self);
1707   g_signal_connect (priv->camera_monitor, "removed",
1708       G_CALLBACK (empathy_call_window_camera_removed_cb), self);
1709
1710   g_signal_connect (priv->mic_button, "clicked",
1711       G_CALLBACK (mic_button_clicked), self);
1712
1713   g_mutex_init (&priv->lock);
1714
1715   gtk_container_add (GTK_CONTAINER (self), top_vbox);
1716
1717   priv->content_hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL,
1718       CONTENT_HBOX_SPACING);
1719   gtk_box_pack_start (GTK_BOX (priv->pane), priv->content_hbox,
1720       TRUE, TRUE, 0);
1721
1722   /* main contents remote avatar/video box */
1723   priv->video_layout = clutter_bin_layout_new (CLUTTER_BIN_ALIGNMENT_FILL,
1724       CLUTTER_BIN_ALIGNMENT_FILL);
1725
1726   priv->video_box = clutter_box_new (priv->video_layout);
1727
1728   priv->video_container = gtk_clutter_embed_new ();
1729
1730   gtk_widget_set_size_request (priv->video_container,
1731       REMOTE_VIDEO_DEFAULT_WIDTH, REMOTE_VIDEO_DEFAULT_HEIGHT);
1732
1733   /* Set the background black */
1734   clutter_stage_set_color (
1735       CLUTTER_STAGE (gtk_clutter_embed_get_stage (
1736           GTK_CLUTTER_EMBED (priv->video_container))),
1737       &black);
1738
1739   clutter_container_add (
1740       CLUTTER_CONTAINER (gtk_clutter_embed_get_stage (
1741           GTK_CLUTTER_EMBED (priv->video_container))),
1742       priv->video_box,
1743       NULL);
1744
1745   constraint = clutter_bind_constraint_new (
1746       gtk_clutter_embed_get_stage (GTK_CLUTTER_EMBED (priv->video_container)),
1747       CLUTTER_BIND_SIZE, 0);
1748   clutter_actor_add_constraint (priv->video_box, constraint);
1749
1750   priv->remote_user_avatar_widget = gtk_image_new ();
1751   remote_avatar = gtk_clutter_actor_new_with_contents (
1752       priv->remote_user_avatar_widget);
1753   make_background_transparent (GTK_CLUTTER_ACTOR (remote_avatar));
1754
1755   clutter_container_add_actor (CLUTTER_CONTAINER (priv->video_box),
1756       remote_avatar);
1757
1758   /* create the overlay bin */
1759   priv->overlay_layout = clutter_bin_layout_new (CLUTTER_BIN_ALIGNMENT_CENTER,
1760     CLUTTER_BIN_ALIGNMENT_CENTER);
1761   priv->overlay_bin = clutter_actor_new ();
1762   clutter_actor_set_layout_manager (priv->overlay_bin, priv->overlay_layout);
1763
1764   clutter_actor_set_margin (priv->overlay_bin, &overlay_margin);
1765
1766   clutter_bin_layout_add (CLUTTER_BIN_LAYOUT (priv->video_layout),
1767       priv->overlay_bin,
1768       CLUTTER_BIN_ALIGNMENT_FILL, CLUTTER_BIN_ALIGNMENT_FILL);
1769
1770   empathy_call_window_create_preview_rectangles (self);
1771
1772   gtk_box_pack_start (GTK_BOX (priv->content_hbox),
1773       priv->video_container, TRUE, TRUE,
1774       CONTENT_HBOX_CHILDREN_PACKING_PADDING);
1775
1776   create_pipeline (self);
1777   create_video_output_widget (self);
1778   create_audio_input (self);
1779   create_video_input (self);
1780
1781   priv->floating_toolbar = gtk_clutter_actor_new ();
1782   clutter_actor_set_reactive (priv->floating_toolbar, TRUE);
1783   make_background_transparent (GTK_CLUTTER_ACTOR (priv->floating_toolbar));
1784
1785   gtk_style_context_add_class (
1786       gtk_widget_get_style_context (GTK_WIDGET (priv->bottom_toolbar)),
1787       GTK_STYLE_CLASS_OSD);
1788   gtk_widget_reparent (priv->bottom_toolbar,
1789       gtk_clutter_actor_get_widget (GTK_CLUTTER_ACTOR (priv->floating_toolbar)));
1790
1791   clutter_bin_layout_add (CLUTTER_BIN_LAYOUT (priv->overlay_layout),
1792       priv->floating_toolbar,
1793       CLUTTER_BIN_ALIGNMENT_CENTER, CLUTTER_BIN_ALIGNMENT_END);
1794
1795   clutter_actor_raise_top (priv->floating_toolbar);
1796
1797   /* Transitions for the floating toolbar */
1798   priv->transitions = clutter_state_new ();
1799
1800   /* all transitions last for 2s */
1801   clutter_state_set_duration (priv->transitions, NULL, NULL, 2000);
1802
1803   /* transition from any state to "fade-out" state */
1804   clutter_state_set (priv->transitions, NULL, "fade-out",
1805       priv->floating_toolbar,
1806       "opacity", CLUTTER_EASE_OUT_QUAD, 0,
1807       NULL);
1808
1809   /* transition from any state to "fade-in" state */
1810   clutter_state_set (priv->transitions, NULL, "fade-in",
1811       priv->floating_toolbar,
1812       "opacity", CLUTTER_EASE_OUT_QUAD, 255,
1813       NULL);
1814
1815   /* put the actor into the "fade-in" state with no animation */
1816   clutter_state_warp_to_state (priv->transitions, "fade-in");
1817
1818   /* The call will be started as soon the pipeline is playing */
1819   priv->start_call_when_playing = TRUE;
1820
1821   priv->dtmf_panel = empathy_dialpad_widget_new ();
1822   g_signal_connect (priv->dtmf_panel, "start-tone",
1823       G_CALLBACK (dtmf_start_tone_cb), self);
1824
1825   gtk_box_pack_start (GTK_BOX (priv->pane), priv->dtmf_panel,
1826       FALSE, FALSE, 6);
1827
1828   gtk_box_pack_start (GTK_BOX (priv->pane), priv->details_vbox,
1829       FALSE, FALSE, 0);
1830
1831   gtk_widget_set_sensitive (priv->dtmf_panel, FALSE);
1832
1833   gtk_widget_show_all (top_vbox);
1834
1835   gtk_widget_hide (priv->dtmf_panel);
1836   gtk_widget_hide (priv->details_vbox);
1837
1838   priv->fullscreen = empathy_call_window_fullscreen_new (self);
1839
1840   empathy_call_window_fullscreen_set_video_widget (priv->fullscreen,
1841       priv->video_container);
1842
1843   /* We hide the bottom toolbar after 3s of inactivity and show it
1844    * again on mouse movement */
1845   priv->inactivity_src = g_timeout_add_seconds (3,
1846       empathy_call_window_toolbar_timeout, self);
1847
1848   g_signal_connect (G_OBJECT (priv->fullscreen->leave_fullscreen_button),
1849       "clicked", G_CALLBACK (empathy_call_window_fullscreen_cb), self);
1850
1851   g_signal_connect (G_OBJECT (self), "realize",
1852     G_CALLBACK (empathy_call_window_realized_cb), self);
1853
1854   g_signal_connect (G_OBJECT (self), "delete-event",
1855     G_CALLBACK (empathy_call_window_delete_cb), self);
1856
1857   g_signal_connect (G_OBJECT (self), "window-state-event",
1858     G_CALLBACK (empathy_call_window_state_event_cb), self);
1859
1860   g_signal_connect (G_OBJECT (self), "key-press-event",
1861       G_CALLBACK (empathy_call_window_key_press_cb), self);
1862
1863   g_signal_connect (self, "motion-notify-event",
1864       G_CALLBACK (empathy_call_window_motion_notify_cb), self);
1865
1866   g_object_ref (priv->ui_manager);
1867   g_object_unref (gui);
1868
1869   priv->sound_mgr = empathy_sound_manager_dup_singleton ();
1870   priv->mic_menu = empathy_mic_menu_new (self);
1871   priv->camera_menu = empathy_camera_menu_new (self);
1872
1873   empathy_call_window_show_hangup_button (self, TRUE);
1874
1875   gtk_window_set_default_size (GTK_WINDOW (self), 580, 480);
1876
1877   empathy_geometry_bind (GTK_WINDOW (self), "call-window");
1878   /* These signals are used to track the window position and save it
1879    * when the window is destroyed. We need to do this as we don't want
1880    * the window geometry to be saved with the dialpad taken into account. */
1881   g_signal_connect (self, "destroy",
1882       G_CALLBACK (empathy_call_window_destroyed_cb), self);
1883   g_signal_connect (self, "configure-event",
1884       G_CALLBACK (empathy_call_window_configure_event_cb), self);
1885   g_signal_connect (self, "window-state-event",
1886       G_CALLBACK (empathy_call_window_configure_event_cb), self);
1887
1888   /* Don't display labels in both toolbars */
1889   gtk_toolbar_set_style (GTK_TOOLBAR (priv->toolbar), GTK_TOOLBAR_ICONS);
1890 }
1891
1892 /* Instead of specifying a width and a height, we specify only one size. That's
1893    because we want a square avatar icon.  */
1894 static void
1895 init_contact_avatar_with_size (EmpathyContact *contact,
1896     GtkWidget *image_widget,
1897     gint size)
1898 {
1899   GdkPixbuf *pixbuf_avatar = NULL;
1900
1901   if (contact != NULL)
1902     {
1903       pixbuf_avatar = empathy_pixbuf_avatar_from_contact_scaled (contact,
1904         size, size);
1905     }
1906
1907   if (pixbuf_avatar == NULL)
1908     {
1909       pixbuf_avatar = empathy_pixbuf_from_icon_name_sized (
1910           EMPATHY_IMAGE_AVATAR_DEFAULT, size);
1911     }
1912
1913   gtk_image_set_from_pixbuf (GTK_IMAGE (image_widget), pixbuf_avatar);
1914
1915   if (pixbuf_avatar != NULL)
1916     g_object_unref (pixbuf_avatar);
1917 }
1918
1919 static void
1920 set_window_title (EmpathyCallWindow *self)
1921 {
1922   EmpathyCallWindowPriv *priv = GET_PRIV (self);
1923   gchar *tmp;
1924
1925   if (priv->contact != NULL)
1926     {
1927       /* translators: Call is a noun and %s is the contact name. This string
1928        * is used in the window title */
1929       tmp = g_strdup_printf (_("Call with %s"),
1930           empathy_contact_get_alias (priv->contact));
1931       gtk_window_set_title (GTK_WINDOW (self), tmp);
1932       g_free (tmp);
1933     }
1934   else
1935     {
1936       g_warning ("Unknown remote contact!");
1937     }
1938 }
1939
1940 static void
1941 set_remote_user_name (EmpathyCallWindow *self,
1942   EmpathyContact *contact)
1943 {
1944   const gchar *alias = empathy_contact_get_alias (contact);
1945   const gchar *status = empathy_contact_get_status (contact);
1946
1947   gtk_label_set_text (GTK_LABEL (self->priv->remote_user_name_toolbar), alias);
1948
1949   if (status != NULL) {
1950     gchar *markup;
1951
1952     markup = g_markup_printf_escaped ("<small>%s</small>", status);
1953     gtk_label_set_markup (GTK_LABEL (self->priv->remote_user_status_toolbar),
1954       markup);
1955     g_free (markup);
1956   } else {
1957     gtk_label_set_markup (GTK_LABEL (self->priv->remote_user_status_toolbar),
1958       "");
1959   }
1960 }
1961
1962 static void
1963 contact_name_changed_cb (EmpathyContact *contact,
1964     GParamSpec *pspec,
1965     EmpathyCallWindow *self)
1966 {
1967   set_window_title (self);
1968   set_remote_user_name (self, contact);
1969 }
1970
1971 static void
1972 contact_presence_changed_cb (EmpathyContact *contact,
1973     GParamSpec *pspec,
1974     EmpathyCallWindow *self)
1975 {
1976   set_remote_user_name (self, contact);
1977 }
1978
1979 static void
1980 contact_avatar_changed_cb (EmpathyContact *contact,
1981     GParamSpec *pspec,
1982     EmpathyCallWindow *self)
1983 {
1984   int size;
1985   GtkAllocation allocation;
1986   GtkWidget *avatar_widget;
1987
1988   avatar_widget = self->priv->remote_user_avatar_widget;
1989
1990   gtk_widget_get_allocation (avatar_widget, &allocation);
1991   size = allocation.height;
1992
1993   if (size == 0)
1994     {
1995       /* the widget is not allocated yet, set a default size */
1996       size = MIN (REMOTE_CONTACT_AVATAR_DEFAULT_HEIGHT,
1997           REMOTE_CONTACT_AVATAR_DEFAULT_WIDTH);
1998     }
1999
2000   init_contact_avatar_with_size (contact, avatar_widget, size);
2001
2002   avatar_widget = self->priv->remote_user_avatar_toolbar;
2003
2004   gtk_widget_get_allocation (avatar_widget, &allocation);
2005   size = allocation.height;
2006
2007   if (size == 0)
2008     {
2009       /* the widget is not allocated yet, set a default size */
2010       size = SMALL_TOOLBAR_SIZE;
2011     }
2012
2013   init_contact_avatar_with_size (contact, avatar_widget, size);
2014 }
2015
2016 static void
2017 empathy_call_window_setup_avatars (EmpathyCallWindow *self,
2018     EmpathyCallHandler *handler)
2019 {
2020   EmpathyCallWindowPriv *priv = GET_PRIV (self);
2021
2022   tp_g_signal_connect_object (priv->contact, "notify::name",
2023       G_CALLBACK (contact_name_changed_cb), self, 0);
2024   tp_g_signal_connect_object (priv->contact, "notify::avatar",
2025     G_CALLBACK (contact_avatar_changed_cb), self, 0);
2026   tp_g_signal_connect_object (priv->contact, "notify::presence",
2027       G_CALLBACK (contact_presence_changed_cb), self, 0);
2028
2029   set_window_title (self);
2030   set_remote_user_name (self, priv->contact);
2031
2032   init_contact_avatar_with_size (priv->contact,
2033       priv->remote_user_avatar_widget,
2034       MIN (REMOTE_CONTACT_AVATAR_DEFAULT_WIDTH,
2035           REMOTE_CONTACT_AVATAR_DEFAULT_HEIGHT));
2036
2037   init_contact_avatar_with_size (priv->contact,
2038       priv->remote_user_avatar_toolbar,
2039       SMALL_TOOLBAR_SIZE);
2040
2041   /* The remote avatar is shown by default and will be hidden when we receive
2042      video from the remote side. */
2043   clutter_actor_hide (priv->video_output);
2044   gtk_widget_show (priv->remote_user_avatar_widget);
2045 }
2046
2047 static void
2048 update_send_codec (EmpathyCallWindow *self,
2049     gboolean audio)
2050 {
2051   EmpathyCallWindowPriv *priv = GET_PRIV (self);
2052   FsCodec *codec;
2053   GtkWidget *widget;
2054   gchar *tmp;
2055
2056   if (audio)
2057     {
2058       codec = empathy_call_handler_get_send_audio_codec (priv->handler);
2059       widget = priv->acodec_encoding_label;
2060     }
2061   else
2062     {
2063       codec = empathy_call_handler_get_send_video_codec (priv->handler);
2064       widget = priv->vcodec_encoding_label;
2065     }
2066
2067   if (codec == NULL)
2068     return;
2069
2070   tmp = g_strdup_printf ("%s/%u", codec->encoding_name, codec->clock_rate);
2071   gtk_label_set_text (GTK_LABEL (widget), tmp);
2072   g_free (tmp);
2073 }
2074
2075 static void
2076 send_audio_codec_notify_cb (GObject *object,
2077     GParamSpec *pspec,
2078     gpointer user_data)
2079 {
2080   EmpathyCallWindow *self = user_data;
2081
2082   update_send_codec (self, TRUE);
2083 }
2084
2085 static void
2086 send_video_codec_notify_cb (GObject *object,
2087     GParamSpec *pspec,
2088     gpointer user_data)
2089 {
2090   EmpathyCallWindow *self = user_data;
2091
2092   update_send_codec (self, FALSE);
2093 }
2094
2095 static void
2096 update_recv_codec (EmpathyCallWindow *self,
2097     gboolean audio)
2098 {
2099   EmpathyCallWindowPriv *priv = GET_PRIV (self);
2100   GList *codecs, *l;
2101   GtkWidget *widget;
2102   GString *str = NULL;
2103
2104   if (audio)
2105     {
2106       codecs = empathy_call_handler_get_recv_audio_codecs (priv->handler);
2107       widget = priv->acodec_decoding_label;
2108     }
2109   else
2110     {
2111       codecs = empathy_call_handler_get_recv_video_codecs (priv->handler);
2112       widget = priv->vcodec_decoding_label;
2113     }
2114
2115   if (codecs == NULL)
2116     return;
2117
2118   for (l = codecs; l != NULL; l = g_list_next (l))
2119     {
2120       FsCodec *codec = l->data;
2121
2122       if (str == NULL)
2123         str = g_string_new (NULL);
2124       else
2125         g_string_append (str, ", ");
2126
2127       g_string_append_printf (str, "%s/%u", codec->encoding_name,
2128           codec->clock_rate);
2129     }
2130
2131   gtk_label_set_text (GTK_LABEL (widget), str->str);
2132   g_string_free (str, TRUE);
2133 }
2134
2135 static void
2136 recv_audio_codecs_notify_cb (GObject *object,
2137     GParamSpec *pspec,
2138     gpointer user_data)
2139 {
2140   EmpathyCallWindow *self = user_data;
2141
2142   update_recv_codec (self, TRUE);
2143 }
2144
2145 static void
2146 recv_video_codecs_notify_cb (GObject *object,
2147     GParamSpec *pspec,
2148     gpointer user_data)
2149 {
2150   EmpathyCallWindow *self = user_data;
2151
2152   update_recv_codec (self, FALSE);
2153 }
2154
2155 static const gchar *
2156 candidate_type_to_str (FsCandidate *candidate)
2157 {
2158   switch (candidate->type)
2159     {
2160       case FS_CANDIDATE_TYPE_HOST:
2161         return "host";
2162       case FS_CANDIDATE_TYPE_SRFLX:
2163         return "server reflexive";
2164       case FS_CANDIDATE_TYPE_PRFLX:
2165         return "peer reflexive";
2166       case FS_CANDIDATE_TYPE_RELAY:
2167         return "relay";
2168       case FS_CANDIDATE_TYPE_MULTICAST:
2169         return "multicast";
2170     }
2171
2172   return NULL;
2173 }
2174
2175 static const gchar *
2176 candidate_type_to_desc (FsCandidate *candidate)
2177 {
2178   switch (candidate->type)
2179     {
2180       case FS_CANDIDATE_TYPE_HOST:
2181         return _("The IP address as seen by the machine");
2182       case FS_CANDIDATE_TYPE_SRFLX:
2183         return _("The IP address as seen by a server on the Internet");
2184       case FS_CANDIDATE_TYPE_PRFLX:
2185         return _("The IP address of the peer as seen by the other side");
2186       case FS_CANDIDATE_TYPE_RELAY:
2187         return _("The IP address of a relay server");
2188       case FS_CANDIDATE_TYPE_MULTICAST:
2189         return _("The IP address of the multicast group");
2190     }
2191
2192   return NULL;
2193 }
2194
2195 static void
2196 update_candidat_widget (EmpathyCallWindow *self,
2197     GtkWidget *label,
2198     GtkWidget *img,
2199     FsCandidate *candidate)
2200 {
2201   gchar *str;
2202
2203   g_assert (candidate != NULL);
2204   str = g_strdup_printf ("%s %u (%s)", candidate->ip,
2205       candidate->port, candidate_type_to_str (candidate));
2206
2207   gtk_label_set_text (GTK_LABEL (label), str);
2208   gtk_widget_set_tooltip_text (img, candidate_type_to_desc (candidate));
2209
2210   g_free (str);
2211 }
2212
2213 static void
2214 candidates_changed_cb (GObject *object,
2215     FsMediaType type,
2216     EmpathyCallWindow *self)
2217 {
2218   EmpathyCallWindowPriv *priv = GET_PRIV (self);
2219   FsCandidate *candidate = NULL;
2220
2221   if (type == FS_MEDIA_TYPE_VIDEO)
2222     {
2223       /* Update remote candidate */
2224       candidate = empathy_call_handler_get_video_remote_candidate (
2225           priv->handler);
2226
2227       update_candidat_widget (self, priv->video_remote_candidate_label,
2228           priv->video_remote_candidate_info_img, candidate);
2229
2230       /* Update local candidate */
2231       candidate = empathy_call_handler_get_video_local_candidate (
2232           priv->handler);
2233
2234       update_candidat_widget (self, priv->video_local_candidate_label,
2235           priv->video_local_candidate_info_img, candidate);
2236     }
2237   else
2238     {
2239       /* Update remote candidate */
2240       candidate = empathy_call_handler_get_audio_remote_candidate (
2241           priv->handler);
2242
2243       update_candidat_widget (self, priv->audio_remote_candidate_label,
2244           priv->audio_remote_candidate_info_img, candidate);
2245
2246       /* Update local candidate */
2247       candidate = empathy_call_handler_get_audio_local_candidate (
2248           priv->handler);
2249
2250       update_candidat_widget (self, priv->audio_local_candidate_label,
2251           priv->audio_local_candidate_info_img, candidate);
2252     }
2253 }
2254
2255 static void
2256 empathy_call_window_constructed (GObject *object)
2257 {
2258   EmpathyCallWindow *self = EMPATHY_CALL_WINDOW (object);
2259   EmpathyCallWindowPriv *priv = GET_PRIV (self);
2260   TpCallChannel *call;
2261   TpCallState state;
2262
2263   g_assert (priv->handler != NULL);
2264
2265   g_object_get (priv->handler, "call-channel", &call, NULL);
2266   state = tp_call_channel_get_state (call, NULL, NULL, NULL);
2267   priv->outgoing = (state == TP_CALL_STATE_PENDING_INITIATOR);
2268   tp_clear_object (&call);
2269
2270   priv->contact = empathy_call_handler_get_contact (priv->handler);
2271   g_assert (priv->contact != NULL);
2272   g_object_ref (priv->contact);
2273
2274   if (!empathy_contact_can_voip_video (priv->contact))
2275     {
2276       gtk_widget_set_sensitive (priv->video_call_button, FALSE);
2277       gtk_widget_set_sensitive (priv->camera_button, FALSE);
2278     }
2279
2280   empathy_call_window_setup_avatars (self, priv->handler);
2281   empathy_call_window_set_state_connecting (self);
2282
2283   if (!empathy_call_handler_has_initial_video (priv->handler))
2284     {
2285       gtk_toggle_button_set_active (
2286           GTK_TOGGLE_BUTTON (priv->camera_button), FALSE);
2287     }
2288   /* If call has InitialVideo, the preview will be started once the call has
2289    * been started (start_call()). */
2290
2291   update_send_codec (self, TRUE);
2292   update_send_codec (self, FALSE);
2293   update_recv_codec (self, TRUE);
2294   update_recv_codec (self, FALSE);
2295
2296   tp_g_signal_connect_object (priv->handler, "notify::send-audio-codec",
2297       G_CALLBACK (send_audio_codec_notify_cb), self, 0);
2298   tp_g_signal_connect_object (priv->handler, "notify::send-video-codec",
2299       G_CALLBACK (send_video_codec_notify_cb), self, 0);
2300   tp_g_signal_connect_object (priv->handler, "notify::recv-audio-codecs",
2301       G_CALLBACK (recv_audio_codecs_notify_cb), self, 0);
2302   tp_g_signal_connect_object (priv->handler, "notify::recv-video-codecs",
2303       G_CALLBACK (recv_video_codecs_notify_cb), self, 0);
2304
2305   tp_g_signal_connect_object (priv->handler, "candidates-changed",
2306       G_CALLBACK (candidates_changed_cb), self, 0);
2307 }
2308
2309 static void empathy_call_window_dispose (GObject *object);
2310 static void empathy_call_window_finalize (GObject *object);
2311
2312 static void
2313 empathy_call_window_set_property (GObject *object,
2314   guint property_id, const GValue *value, GParamSpec *pspec)
2315 {
2316   EmpathyCallWindowPriv *priv = GET_PRIV (object);
2317
2318   switch (property_id)
2319     {
2320       case PROP_CALL_HANDLER:
2321         priv->handler = g_value_dup_object (value);
2322         break;
2323       default:
2324         G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
2325     }
2326 }
2327
2328 static void
2329 empathy_call_window_get_property (GObject *object,
2330   guint property_id, GValue *value, GParamSpec *pspec)
2331 {
2332   EmpathyCallWindowPriv *priv = GET_PRIV (object);
2333
2334   switch (property_id)
2335     {
2336       case PROP_CALL_HANDLER:
2337         g_value_set_object (value, priv->handler);
2338         break;
2339       default:
2340         G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
2341     }
2342 }
2343
2344 static void
2345 empathy_call_window_class_init (
2346   EmpathyCallWindowClass *empathy_call_window_class)
2347 {
2348   GObjectClass *object_class = G_OBJECT_CLASS (empathy_call_window_class);
2349   GParamSpec *param_spec;
2350
2351   g_type_class_add_private (empathy_call_window_class,
2352     sizeof (EmpathyCallWindowPriv));
2353
2354   object_class->constructed = empathy_call_window_constructed;
2355   object_class->set_property = empathy_call_window_set_property;
2356   object_class->get_property = empathy_call_window_get_property;
2357
2358   object_class->dispose = empathy_call_window_dispose;
2359   object_class->finalize = empathy_call_window_finalize;
2360
2361   param_spec = g_param_spec_object ("handler",
2362     "handler", "The call handler",
2363     EMPATHY_TYPE_CALL_HANDLER,
2364     G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS);
2365   g_object_class_install_property (object_class,
2366     PROP_CALL_HANDLER, param_spec);
2367
2368   signals[SIG_INHIBIT] = g_signal_new ("inhibit",
2369       G_OBJECT_CLASS_TYPE (empathy_call_window_class),
2370       G_SIGNAL_RUN_LAST,
2371       0, NULL, NULL, NULL,
2372       G_TYPE_NONE,
2373       1, G_TYPE_BOOLEAN);
2374 }
2375
2376 void
2377 empathy_call_window_dispose (GObject *object)
2378 {
2379   EmpathyCallWindow *self = EMPATHY_CALL_WINDOW (object);
2380   EmpathyCallWindowPriv *priv = GET_PRIV (self);
2381
2382   if (priv->dispose_has_run)
2383     return;
2384
2385   priv->dispose_has_run = TRUE;
2386
2387   if (priv->handler != NULL)
2388     {
2389       empathy_call_handler_stop_call (priv->handler);
2390       tp_clear_object (&priv->handler);
2391     }
2392
2393   if (priv->bus_message_source_id != 0)
2394     {
2395       g_source_remove (priv->bus_message_source_id);
2396       priv->bus_message_source_id = 0;
2397     }
2398
2399   if (priv->got_video_src > 0)
2400     {
2401       g_source_remove (priv->got_video_src);
2402       priv->got_video_src = 0;
2403     }
2404
2405   if (priv->inactivity_src > 0)
2406     {
2407       g_source_remove (priv->inactivity_src);
2408       priv->inactivity_src = 0;
2409     }
2410
2411   tp_clear_object (&priv->pipeline);
2412   tp_clear_object (&priv->video_input);
2413   tp_clear_object (&priv->audio_input);
2414   tp_clear_object (&priv->video_tee);
2415   tp_clear_object (&priv->ui_manager);
2416   tp_clear_object (&priv->fullscreen);
2417   tp_clear_object (&priv->camera_monitor);
2418   tp_clear_object (&priv->settings);
2419   tp_clear_object (&priv->sound_mgr);
2420   tp_clear_object (&priv->mic_menu);
2421   tp_clear_object (&priv->camera_menu);
2422   tp_clear_object (&priv->transitions);
2423
2424   g_list_free_full (priv->notifiers, g_object_unref);
2425
2426   if (priv->timer_id != 0)
2427     g_source_remove (priv->timer_id);
2428   priv->timer_id = 0;
2429
2430   tp_clear_object (&priv->contact);
2431
2432   G_OBJECT_CLASS (empathy_call_window_parent_class)->dispose (object);
2433 }
2434
2435 static void
2436 disconnect_video_output_motion_handler (EmpathyCallWindow *self)
2437 {
2438   EmpathyCallWindowPriv *priv = GET_PRIV (self);
2439
2440   if (priv->video_output_motion_handler_id != 0)
2441     {
2442       g_signal_handler_disconnect (G_OBJECT (priv->video_container),
2443           priv->video_output_motion_handler_id);
2444       priv->video_output_motion_handler_id = 0;
2445     }
2446 }
2447
2448 void
2449 empathy_call_window_finalize (GObject *object)
2450 {
2451   EmpathyCallWindow *self = EMPATHY_CALL_WINDOW (object);
2452   EmpathyCallWindowPriv *priv = GET_PRIV (self);
2453
2454   disconnect_video_output_motion_handler (self);
2455
2456   /* free any data held directly by the object here */
2457   g_mutex_clear (&priv->lock);
2458
2459   g_timer_destroy (priv->timer);
2460
2461   G_OBJECT_CLASS (empathy_call_window_parent_class)->finalize (object);
2462 }
2463
2464
2465 EmpathyCallWindow *
2466 empathy_call_window_new (EmpathyCallHandler *handler)
2467 {
2468   return EMPATHY_CALL_WINDOW (
2469     g_object_new (EMPATHY_TYPE_CALL_WINDOW, "handler", handler, NULL));
2470 }
2471
2472 void
2473 empathy_call_window_present (EmpathyCallWindow *self,
2474     EmpathyCallHandler *handler)
2475 {
2476   g_return_if_fail (EMPATHY_IS_CALL_HANDLER (handler));
2477
2478   empathy_window_present (GTK_WINDOW (self));
2479
2480   if (self->priv->call_state == DISCONNECTED)
2481     {
2482       /* start a new call if one is not already in progress */
2483       tp_clear_object (&self->priv->handler);
2484       self->priv->handler = g_object_ref (handler);
2485       empathy_call_window_connect_handler (self);
2486
2487       empathy_call_window_restart_call (self);
2488     }
2489 }
2490
2491 static void
2492 empathy_call_window_conference_added_cb (EmpathyCallHandler *handler,
2493   GstElement *conference, gpointer user_data)
2494 {
2495   EmpathyCallWindow *self = EMPATHY_CALL_WINDOW (user_data);
2496   EmpathyCallWindowPriv *priv = GET_PRIV (self);
2497   FsElementAddedNotifier *notifier;
2498   GKeyFile *keyfile;
2499
2500   DEBUG ("Conference added");
2501
2502   /* Add notifier to set the various element properties as needed */
2503   notifier = fs_element_added_notifier_new ();
2504   keyfile = fs_utils_get_default_element_properties (conference);
2505
2506   if (keyfile != NULL)
2507     fs_element_added_notifier_set_properties_from_keyfile (notifier, keyfile);
2508
2509   fs_element_added_notifier_add (notifier, GST_BIN (priv->pipeline));
2510
2511   priv->notifiers = g_list_prepend (priv->notifiers, notifier);
2512
2513   gst_bin_add (GST_BIN (priv->pipeline), conference);
2514   gst_element_set_state (conference, GST_STATE_PLAYING);
2515 }
2516
2517 static void
2518 empathy_call_window_conference_removed_cb (EmpathyCallHandler *handler,
2519   GstElement *conference, gpointer user_data)
2520 {
2521   EmpathyCallWindow *self = EMPATHY_CALL_WINDOW (user_data);
2522   EmpathyCallWindowPriv *priv = GET_PRIV (self);
2523
2524   g_list_free_full (priv->notifiers, g_object_unref);
2525   priv->notifiers = NULL;
2526
2527   gst_bin_remove (GST_BIN (priv->pipeline), conference);
2528   gst_element_set_state (conference, GST_STATE_NULL);
2529 }
2530
2531 static gboolean
2532 empathy_call_window_reset_pipeline (EmpathyCallWindow *self)
2533 {
2534   GstStateChangeReturn state_change_return;
2535   EmpathyCallWindowPriv *priv = GET_PRIV (self);
2536
2537   if (priv->pipeline == NULL)
2538     return TRUE;
2539
2540   if (priv->bus_message_source_id != 0)
2541     {
2542       g_source_remove (priv->bus_message_source_id);
2543       priv->bus_message_source_id = 0;
2544     }
2545
2546   state_change_return = gst_element_set_state (priv->pipeline, GST_STATE_NULL);
2547
2548   if (state_change_return == GST_STATE_CHANGE_SUCCESS ||
2549         state_change_return == GST_STATE_CHANGE_NO_PREROLL)
2550     {
2551       if (priv->pipeline != NULL)
2552         g_object_unref (priv->pipeline);
2553       priv->pipeline = NULL;
2554
2555       if (priv->audio_output != NULL)
2556         g_object_unref (priv->audio_output);
2557       priv->audio_output = NULL;
2558       priv->audio_output_added = FALSE;
2559
2560       if (priv->video_tee != NULL)
2561         g_object_unref (priv->video_tee);
2562       priv->video_tee = NULL;
2563
2564       if (priv->video_preview != NULL)
2565         clutter_actor_destroy (priv->video_preview);
2566       priv->video_preview = NULL;
2567
2568       /* If we destroy the preview while it's being dragged, we won't
2569        * get the ::drag-end signal, so manually destroy the clone */
2570       if (priv->drag_preview != NULL)
2571         {
2572           clutter_actor_destroy (priv->drag_preview);
2573           empathy_call_window_show_preview_rectangles (self, FALSE);
2574           priv->drag_preview = NULL;
2575         }
2576
2577       priv->funnel = NULL;
2578
2579       create_pipeline (self);
2580       /* Call will be started when user will hit the 'redial' button */
2581       priv->start_call_when_playing = FALSE;
2582       gst_element_set_state (priv->pipeline, GST_STATE_PAUSED);
2583
2584       return TRUE;
2585     }
2586   else
2587     {
2588       g_message ("Error: could not destroy pipeline. Closing call window");
2589       gtk_widget_destroy (GTK_WIDGET (self));
2590
2591       return FALSE;
2592     }
2593 }
2594
2595 static void
2596 reset_details_pane (EmpathyCallWindow *self)
2597 {
2598   EmpathyCallWindowPriv *priv = GET_PRIV (self);
2599
2600   gtk_label_set_text (GTK_LABEL (priv->vcodec_encoding_label), _("Unknown"));
2601   gtk_label_set_text (GTK_LABEL (priv->acodec_encoding_label), _("Unknown"));
2602   gtk_label_set_text (GTK_LABEL (priv->vcodec_decoding_label), _("Unknown"));
2603   gtk_label_set_text (GTK_LABEL (priv->acodec_decoding_label), _("Unknown"));
2604 }
2605
2606 static gboolean
2607 empathy_call_window_disconnected (EmpathyCallWindow *self,
2608     gboolean restart)
2609 {
2610   gboolean could_disconnect = FALSE;
2611   EmpathyCallWindowPriv *priv = GET_PRIV (self);
2612   gboolean could_reset_pipeline;
2613
2614   /* Leave full screen mode if needed */
2615   gtk_window_unfullscreen (GTK_WINDOW (self));
2616
2617   g_signal_emit (self, signals[SIG_INHIBIT], 0, FALSE);
2618
2619   gtk_action_set_sensitive (priv->menu_fullscreen, FALSE);
2620   gtk_widget_set_sensitive (priv->dtmf_panel, FALSE);
2621
2622   /* Create the video input and then turn on the camera
2623    * menu, so that the active camera gets marked as such.
2624    */
2625   if (priv->video_input == NULL)
2626     create_video_input (self);
2627   empathy_camera_menu_set_sensitive (priv->camera_menu, TRUE);
2628
2629   could_reset_pipeline = empathy_call_window_reset_pipeline (self);
2630
2631   if (priv->call_state == CONNECTING)
2632       empathy_sound_manager_stop (priv->sound_mgr, EMPATHY_SOUND_PHONE_OUTGOING);
2633
2634   if (priv->call_state != REDIALING)
2635     priv->call_state = DISCONNECTED;
2636
2637   /* Show the toolbar */
2638   clutter_state_set_state (priv->transitions, "fade-in");
2639
2640   if (could_reset_pipeline)
2641     {
2642       g_mutex_lock (&priv->lock);
2643
2644       g_timer_stop (priv->timer);
2645
2646       if (priv->timer_id != 0)
2647         g_source_remove (priv->timer_id);
2648       priv->timer_id = 0;
2649
2650       g_mutex_unlock (&priv->lock);
2651
2652       if (!restart)
2653         /* We are about to destroy the window, no need to update it or create
2654          * a video preview */
2655         return TRUE;
2656
2657       empathy_call_window_status_message (self, _("Disconnected"));
2658
2659       empathy_call_window_show_hangup_button (self, FALSE);
2660
2661       /* Unsensitive the camera and mic button */
2662       gtk_widget_set_sensitive (priv->camera_button, FALSE);
2663       gtk_widget_set_sensitive (priv->mic_button, FALSE);
2664
2665       /* Be sure that the mic button is enabled */
2666       empathy_audio_src_set_mute (
2667           EMPATHY_GST_AUDIO_SRC (self->priv->audio_input), FALSE);
2668
2669       if (priv->camera_state == CAMERA_STATE_ON)
2670         {
2671           /* Restart the preview with the new pipeline. */
2672           display_video_preview (self, TRUE);
2673         }
2674
2675       /* destroy the video output; it will be recreated when we'll redial */
2676       disconnect_video_output_motion_handler (self);
2677       if (priv->video_output != NULL)
2678         clutter_actor_destroy (priv->video_output);
2679       priv->video_output = NULL;
2680       if (priv->got_video_src > 0)
2681         {
2682           g_source_remove (priv->got_video_src);
2683           priv->got_video_src = 0;
2684         }
2685
2686       gtk_widget_show (priv->remote_user_avatar_widget);
2687
2688       reset_details_pane (self);
2689
2690       priv->sending_video = FALSE;
2691       priv->call_started = FALSE;
2692
2693       could_disconnect = TRUE;
2694
2695       /* TODO: display the self avatar of the preview (depends if the "Always
2696        * Show Video Preview" is enabled or not) */
2697     }
2698
2699   return could_disconnect;
2700 }
2701
2702
2703 static void
2704 empathy_call_window_channel_closed_cb (EmpathyCallHandler *handler,
2705     gpointer user_data)
2706 {
2707   EmpathyCallWindow *self = EMPATHY_CALL_WINDOW (user_data);
2708   EmpathyCallWindowPriv *priv = GET_PRIV (self);
2709
2710   if (empathy_call_window_disconnected (self, TRUE) &&
2711       priv->call_state == REDIALING)
2712       empathy_call_window_restart_call (self);
2713 }
2714
2715 static gboolean
2716 empathy_call_window_content_is_raw (TfContent *content)
2717 {
2718   FsConference *conference;
2719   gboolean israw;
2720
2721   g_object_get (content, "fs-conference", &conference, NULL);
2722   g_assert (conference != NULL);
2723
2724   /* FIXME: Ugly hack, update when moving a packetization property into
2725    * farstream */
2726   israw = g_str_has_prefix (GST_OBJECT_NAME (conference), "fsrawconf");
2727   gst_object_unref (conference);
2728
2729   return israw;
2730 }
2731
2732 static gboolean
2733 empathy_call_window_content_removed_cb (EmpathyCallHandler *handler,
2734     TfContent *content,
2735     EmpathyCallWindow *self)
2736 {
2737   EmpathyCallWindowPriv *priv = GET_PRIV (self);
2738   FsMediaType media_type;
2739
2740   DEBUG ("removing content");
2741
2742   g_object_get (content, "media-type", &media_type, NULL);
2743
2744   /*
2745    * This assumes that there is only one video stream per channel...
2746    */
2747
2748   if ((guint) media_type == FS_MEDIA_TYPE_VIDEO)
2749     {
2750       if (priv->funnel != NULL)
2751         {
2752           GstElement *output;
2753
2754           output = priv->video_output_sink;
2755
2756           gst_element_set_state (output, GST_STATE_NULL);
2757           gst_element_set_state (priv->funnel, GST_STATE_NULL);
2758
2759           gst_bin_remove (GST_BIN (priv->pipeline), output);
2760           gst_bin_remove (GST_BIN (priv->pipeline), priv->funnel);
2761           priv->funnel = NULL;
2762         }
2763     }
2764   else if (media_type == FS_MEDIA_TYPE_AUDIO)
2765     {
2766       if (priv->audio_output != NULL)
2767         {
2768           gst_element_set_state (priv->audio_output, GST_STATE_NULL);
2769
2770           if (priv->audio_output_added)
2771             gst_bin_remove (GST_BIN (priv->pipeline), priv->audio_output);
2772           priv->audio_output = NULL;
2773           priv->audio_output_added = FALSE;
2774         }
2775     }
2776   else
2777     {
2778       g_assert_not_reached ();
2779     }
2780
2781   return TRUE;
2782 }
2783
2784 static void
2785 empathy_call_window_framerate_changed_cb (EmpathyCallHandler *handler,
2786     guint framerate,
2787     EmpathyCallWindow *self)
2788 {
2789   EmpathyCallWindowPriv *priv = GET_PRIV (self);
2790
2791   DEBUG ("Framerate changed to %u", framerate);
2792
2793   if (priv->video_input != NULL)
2794     empathy_video_src_set_framerate (priv->video_input, framerate);
2795 }
2796
2797 static void
2798 empathy_call_window_resolution_changed_cb (EmpathyCallHandler *handler,
2799     guint width,
2800     guint height,
2801     EmpathyCallWindow *self)
2802 {
2803   EmpathyCallWindowPriv *priv = GET_PRIV (self);
2804
2805   DEBUG ("Resolution changed to %ux%u", width, height);
2806
2807   if (priv->video_input != NULL)
2808     {
2809       empathy_video_src_set_resolution (priv->video_input, width, height);
2810     }
2811 }
2812
2813 /* Called with global lock held */
2814 static GstPad *
2815 empathy_call_window_get_video_sink_pad (EmpathyCallWindow *self)
2816 {
2817   EmpathyCallWindowPriv *priv = GET_PRIV (self);
2818   GstPad *pad;
2819   GstElement *output;
2820
2821   if (priv->funnel == NULL)
2822     {
2823       output = priv->video_output_sink;
2824 #ifdef HAVE_GST1
2825       priv->funnel = gst_element_factory_make ("funnel", NULL);
2826 #else
2827       priv->funnel = gst_element_factory_make ("fsfunnel", NULL);
2828 #endif
2829
2830       if (!priv->funnel)
2831         {
2832           g_warning ("Could not create video funnel");
2833           return NULL;
2834         }
2835
2836       if (!gst_bin_add (GST_BIN (priv->pipeline), priv->funnel))
2837         {
2838           gst_object_unref (priv->funnel);
2839           priv->funnel = NULL;
2840           g_warning ("Could  not add funnel to pipeline");
2841           return NULL;
2842         }
2843
2844       if (!gst_bin_add (GST_BIN (priv->pipeline), output))
2845         {
2846           g_warning ("Could not add the video output widget to the pipeline");
2847           goto error;
2848         }
2849
2850       if (!gst_element_link (priv->funnel, output))
2851         {
2852           g_warning ("Could not link output sink to funnel");
2853           goto error_output_added;
2854         }
2855
2856       if (gst_element_set_state (output, GST_STATE_PLAYING) == GST_STATE_CHANGE_FAILURE)
2857         {
2858           g_warning ("Could not start video sink");
2859           goto error_output_added;
2860         }
2861
2862       if (gst_element_set_state (priv->funnel, GST_STATE_PLAYING) == GST_STATE_CHANGE_FAILURE)
2863         {
2864           g_warning ("Could not start funnel");
2865           goto error_output_added;
2866         }
2867     }
2868 #ifdef HAVE_GST1
2869   pad = gst_element_get_request_pad (priv->funnel, "sink_%u");
2870 #else
2871   pad = gst_element_get_request_pad (priv->funnel, "sink%d");
2872 #endif
2873
2874   if (!pad)
2875     g_warning ("Could not get request pad from funnel");
2876
2877   return pad;
2878
2879
2880  error_output_added:
2881
2882   gst_element_set_locked_state (priv->funnel, TRUE);
2883   gst_element_set_locked_state (output, TRUE);
2884
2885   gst_element_set_state (priv->funnel, GST_STATE_NULL);
2886   gst_element_set_state (output, GST_STATE_NULL);
2887
2888   gst_bin_remove (GST_BIN (priv->pipeline), output);
2889   gst_element_set_locked_state (output, FALSE);
2890
2891  error:
2892
2893   gst_bin_remove (GST_BIN (priv->pipeline), priv->funnel);
2894   priv->funnel = NULL;
2895
2896   return NULL;
2897 }
2898
2899 /* Called with global lock held */
2900 static GstPad *
2901 empathy_call_window_get_audio_sink_pad (EmpathyCallWindow *self,
2902   TfContent *content)
2903 {
2904   EmpathyCallWindowPriv *priv = GET_PRIV (self);
2905   GstPad *pad;
2906   GstPadTemplate *template;
2907
2908   if (!priv->audio_output_added)
2909     {
2910       if (!gst_bin_add (GST_BIN (priv->pipeline), priv->audio_output))
2911         {
2912           g_warning ("Could not add audio sink to pipeline");
2913           g_object_unref (priv->audio_output);
2914           goto error_add_output;
2915         }
2916
2917       if (gst_element_set_state (priv->audio_output, GST_STATE_PLAYING) == GST_STATE_CHANGE_FAILURE)
2918         {
2919           g_warning ("Could not start audio sink");
2920           goto error;
2921         }
2922     }
2923
2924   template = gst_element_class_get_pad_template (
2925     GST_ELEMENT_GET_CLASS (priv->audio_output), "sink%d");
2926
2927   pad = gst_element_request_pad (priv->audio_output,
2928     template, NULL, NULL);
2929
2930   if (pad == NULL)
2931     {
2932       g_warning ("Could not get sink pad from sink");
2933       return NULL;
2934     }
2935
2936   return pad;
2937
2938 error:
2939   gst_element_set_locked_state (priv->audio_output, TRUE);
2940   gst_element_set_state (priv->audio_output, GST_STATE_NULL);
2941   gst_bin_remove (GST_BIN (priv->pipeline), priv->audio_output);
2942   priv->audio_output = NULL;
2943
2944 error_add_output:
2945
2946   return NULL;
2947 }
2948
2949 static gboolean
2950 empathy_call_window_update_timer (gpointer user_data)
2951 {
2952   EmpathyCallWindow *self = EMPATHY_CALL_WINDOW (user_data);
2953   EmpathyCallWindowPriv *priv = GET_PRIV (self);
2954   const gchar *status;
2955   gchar *str;
2956   gdouble time_;
2957
2958   time_ = g_timer_elapsed (priv->timer, NULL);
2959
2960   if (priv->call_state == HELD)
2961     status = _("On hold");
2962   else if (priv->call_state == DISCONNECTED)
2963     status = _("Disconnected");
2964   else if (priv->muted)
2965     status = _("Mute");
2966   else
2967     status = _("Duration");
2968
2969   /* Translators: 'status - minutes:seconds' the caller has been connected */
2970   str = g_strdup_printf (_("%s â€” %d:%02dm"),
2971       status,
2972       (int) time_ / 60, (int) time_ % 60);
2973   empathy_call_window_status_message (self, str);
2974   g_free (str);
2975
2976   return TRUE;
2977 }
2978
2979 enum
2980 {
2981   EMP_RESPONSE_BALANCE
2982 };
2983
2984 static void
2985 on_error_infobar_response_cb (GtkInfoBar *info_bar,
2986     gint response_id,
2987     gpointer user_data)
2988 {
2989   switch (response_id)
2990     {
2991       case GTK_RESPONSE_CLOSE:
2992         gtk_widget_destroy (GTK_WIDGET (info_bar));
2993         break;
2994       case EMP_RESPONSE_BALANCE:
2995         empathy_url_show (GTK_WIDGET (info_bar),
2996             g_object_get_data (G_OBJECT (info_bar), "uri"));
2997         break;
2998     }
2999 }
3000
3001 static void
3002 display_error (EmpathyCallWindow *self,
3003     const gchar *img,
3004     const gchar *title,
3005     const gchar *desc,
3006     const gchar *details,
3007     const gchar *button_text,
3008     const gchar *uri,
3009     gint button_response)
3010 {
3011   EmpathyCallWindowPriv *priv = GET_PRIV (self);
3012   GtkWidget *info_bar;
3013   GtkWidget *content_area;
3014   GtkWidget *hbox;
3015   GtkWidget *vbox;
3016   GtkWidget *image;
3017   GtkWidget *label;
3018   gchar *txt;
3019
3020   /* Create info bar */
3021   info_bar = gtk_info_bar_new ();
3022
3023   if (button_text != NULL)
3024     {
3025       gtk_info_bar_add_button (GTK_INFO_BAR (info_bar),
3026           button_text, button_response);
3027       g_object_set_data_full (G_OBJECT (info_bar),
3028           "uri", g_strdup (uri), g_free);
3029     }
3030
3031   gtk_info_bar_add_button (GTK_INFO_BAR (info_bar),
3032       GTK_STOCK_CLOSE, GTK_RESPONSE_CLOSE);
3033
3034   gtk_info_bar_set_message_type (GTK_INFO_BAR (info_bar), GTK_MESSAGE_WARNING);
3035
3036   content_area = gtk_info_bar_get_content_area (GTK_INFO_BAR (info_bar));
3037
3038   /* hbox containing the image and the messages vbox */
3039   hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 3);
3040   gtk_container_add (GTK_CONTAINER (content_area), hbox);
3041
3042   /* Add image */
3043   image = gtk_image_new_from_icon_name (img, GTK_ICON_SIZE_DIALOG);
3044   gtk_box_pack_start (GTK_BOX (hbox), image, FALSE, FALSE, 0);
3045
3046   /* vbox containing the main message and the details expander */
3047   vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 3);
3048   gtk_box_pack_start (GTK_BOX (hbox), vbox, TRUE, TRUE, 0);
3049
3050   /* Add text */
3051   txt = g_strdup_printf ("<b>%s</b>\n%s", title, desc);
3052
3053   label = gtk_label_new (NULL);
3054   gtk_label_set_markup (GTK_LABEL (label), txt);
3055   gtk_label_set_line_wrap (GTK_LABEL (label), TRUE);
3056   gtk_misc_set_alignment (GTK_MISC (label), 0, 0);
3057   g_free (txt);
3058
3059   gtk_box_pack_start (GTK_BOX (vbox), label, TRUE, TRUE, 0);
3060
3061   /* Add details */
3062   if (details != NULL)
3063     {
3064       GtkWidget *expander;
3065
3066       expander = gtk_expander_new (_("Technical Details"));
3067
3068       txt = g_strdup_printf ("<i>%s</i>", details);
3069
3070       label = gtk_label_new (NULL);
3071       gtk_label_set_markup (GTK_LABEL (label), txt);
3072       gtk_label_set_line_wrap (GTK_LABEL (label), TRUE);
3073       gtk_misc_set_alignment (GTK_MISC (label), 0, 0);
3074       g_free (txt);
3075
3076       gtk_container_add (GTK_CONTAINER (expander), label);
3077       gtk_box_pack_start (GTK_BOX (vbox), expander, TRUE, TRUE, 0);
3078     }
3079
3080   g_signal_connect (info_bar, "response",
3081       G_CALLBACK (on_error_infobar_response_cb), NULL);
3082
3083   gtk_box_pack_start (GTK_BOX (priv->errors_vbox), info_bar,
3084       FALSE, FALSE, CONTENT_HBOX_CHILDREN_PACKING_PADDING);
3085   gtk_widget_show_all (info_bar);
3086 }
3087
3088 #if 0
3089 static gchar *
3090 media_stream_error_to_txt (EmpathyCallWindow *self,
3091     TpCallChannel *call,
3092     gboolean audio,
3093     TpMediaStreamError error)
3094 {
3095   EmpathyCallWindowPriv *priv = GET_PRIV (self);
3096   const gchar *cm = NULL;
3097   gchar *url;
3098   gchar *result;
3099
3100   switch (error)
3101     {
3102       case TP_MEDIA_STREAM_ERROR_CODEC_NEGOTIATION_FAILED:
3103         if (audio)
3104           return g_strdup_printf (
3105               _("%s's software does not understand any of the audio formats "
3106                 "supported by your computer"),
3107             empathy_contact_get_alias (priv->contact));
3108         else
3109           return g_strdup_printf (
3110               _("%s's software does not understand any of the video formats "
3111                 "supported by your computer"),
3112             empathy_contact_get_alias (priv->contact));
3113
3114       case TP_MEDIA_STREAM_ERROR_CONNECTION_FAILED:
3115         return g_strdup_printf (
3116             _("Can't establish a connection to %s. "
3117               "One of you might be on a network that does not allow "
3118               "direct connections."),
3119           empathy_contact_get_alias (priv->contact));
3120
3121       case TP_MEDIA_STREAM_ERROR_NETWORK_ERROR:
3122           return g_strdup (_("There was a failure on the network"));
3123
3124       case TP_MEDIA_STREAM_ERROR_NO_CODECS:
3125         if (audio)
3126           return g_strdup (_("The audio formats necessary for this call "
3127                 "are not installed on your computer"));
3128         else
3129           return g_strdup (_("The video formats necessary for this call "
3130                 "are not installed on your computer"));
3131
3132       case TP_MEDIA_STREAM_ERROR_INVALID_CM_BEHAVIOR:
3133         tp_connection_parse_object_path (
3134             tp_channel_get_connection (TP_CHANNEL (call)),
3135             NULL, &cm);
3136
3137         url = g_strdup_printf ("http://bugs.freedesktop.org/enter_bug.cgi?"
3138             "product=Telepathy&amp;component=%s", cm);
3139
3140         result = g_strdup_printf (
3141             _("Something unexpected happened in a Telepathy component. "
3142               "Please <a href=\"%s\">report this bug</a> and attach "
3143               "logs gathered from the 'Debug' window in the Help menu."), url);
3144
3145         g_free (url);
3146         g_free (cm);
3147         return result;
3148
3149       case TP_MEDIA_STREAM_ERROR_MEDIA_ERROR:
3150         return g_strdup (_("There was a failure in the call engine"));
3151
3152       case TP_MEDIA_STREAM_ERROR_EOS:
3153         return g_strdup (_("The end of the stream was reached"));
3154
3155       case TP_MEDIA_STREAM_ERROR_UNKNOWN:
3156       default:
3157         return NULL;
3158     }
3159 }
3160
3161 static void
3162 empathy_call_window_stream_error (EmpathyCallWindow *self,
3163     TpCallChannel *call,
3164     gboolean audio,
3165     guint code,
3166     const gchar *msg,
3167     const gchar *icon,
3168     const gchar *title)
3169 {
3170   gchar *desc;
3171
3172   desc = media_stream_error_to_txt (self, call, audio, code);
3173   if (desc == NULL)
3174     {
3175       /* No description, use the error message. That's not great as it's not
3176        * localized but it's better than nothing. */
3177       display_error (self, call, icon, title, msg, NULL);
3178     }
3179   else
3180     {
3181       display_error (self, call, icon, title, desc, msg);
3182       g_free (desc);
3183     }
3184 }
3185
3186 static void
3187 empathy_call_window_audio_stream_error (TpCallChannel *call,
3188     guint code,
3189     const gchar *msg,
3190     EmpathyCallWindow *self)
3191 {
3192   empathy_call_window_stream_error (self, call, TRUE, code, msg,
3193       "gnome-stock-mic", _("Can't establish audio stream"));
3194 }
3195
3196 static void
3197 empathy_call_window_video_stream_error (TpCallChannel *call,
3198     guint code,
3199     const gchar *msg,
3200     EmpathyCallWindow *self)
3201 {
3202   empathy_call_window_stream_error (self, call, FALSE, code, msg,
3203       "camera-web", _("Can't establish video stream"));
3204 }
3205 #endif
3206
3207 static void
3208 show_balance_error (EmpathyCallWindow *self)
3209 {
3210   TpChannel *call;
3211   TpConnection *conn;
3212   gchar *balance, *tmp;
3213   const gchar *uri, *currency;
3214   gint amount;
3215   guint scale;
3216
3217   g_object_get (self->priv->handler,
3218       "call-channel", &call,
3219       NULL);
3220
3221   conn = tp_channel_get_connection (call);
3222   g_object_unref (call);
3223
3224   uri = tp_connection_get_balance_uri (conn);
3225
3226   if (!tp_connection_get_balance (conn, &amount, &scale, &currency))
3227     {
3228       /* unknown balance */
3229       balance = g_strdup ("(--)");
3230     }
3231   else
3232     {
3233       char *money = empathy_format_currency (amount, scale, currency);
3234
3235       balance = g_strdup_printf ("%s %s",
3236           currency, money);
3237       g_free (money);
3238     }
3239
3240   tmp = g_strdup_printf (_("Your current balance is %s."), balance),
3241
3242   display_error (self,
3243       NULL,
3244       _("Sorry, you don’t have enough credit for that call."),
3245       tmp, NULL,
3246       _("Top Up"),
3247       uri,
3248       EMP_RESPONSE_BALANCE);
3249
3250   g_free (tmp);
3251   g_free (balance);
3252 }
3253
3254 static void
3255 empathy_call_window_state_changed_cb (EmpathyCallHandler *handler,
3256     TpCallState state,
3257     gchar *reason,
3258     EmpathyCallWindow *self)
3259 {
3260   EmpathyCallWindowPriv *priv = GET_PRIV (self);
3261   TpCallChannel *call;
3262   gboolean can_send_video;
3263
3264   if (state == TP_CALL_STATE_ENDED)
3265     {
3266       DEBUG ("Call ended: %s", (reason != NULL && reason[0] != '\0') ? reason : "unspecified reason");
3267       empathy_call_window_disconnected (self, TRUE);
3268       if (!tp_strdiff (reason, TP_ERROR_STR_INSUFFICIENT_BALANCE))
3269           show_balance_error (self);
3270       return;
3271     }
3272
3273   if (state != TP_CALL_STATE_ACCEPTED)
3274     return;
3275
3276   if (priv->call_state == CONNECTED)
3277     return;
3278
3279   g_timer_start (priv->timer);
3280   priv->call_state = CONNECTED;
3281
3282   empathy_sound_manager_stop (priv->sound_mgr, EMPATHY_SOUND_PHONE_OUTGOING);
3283
3284   can_send_video = priv->video_input != NULL &&
3285     empathy_contact_can_voip_video (priv->contact) &&
3286     empathy_camera_monitor_get_available (priv->camera_monitor);
3287
3288   g_object_get (priv->handler, "call-channel", &call, NULL);
3289
3290   if (tp_call_channel_has_dtmf (call))
3291     gtk_widget_set_sensitive (priv->dtmf_panel, TRUE);
3292
3293   if (priv->video_input == NULL)
3294     empathy_call_window_set_send_video (self, CAMERA_STATE_OFF);
3295
3296   gtk_widget_set_sensitive (priv->camera_button, can_send_video);
3297
3298   empathy_call_window_show_hangup_button (self, TRUE);
3299
3300   gtk_widget_set_sensitive (priv->mic_button, TRUE);
3301
3302   clutter_actor_hide (priv->video_output);
3303   gtk_widget_show (priv->remote_user_avatar_widget);
3304
3305   g_object_unref (call);
3306
3307   g_mutex_lock (&priv->lock);
3308
3309   priv->timer_id = g_timeout_add_seconds (1,
3310     empathy_call_window_update_timer, self);
3311
3312   g_mutex_unlock (&priv->lock);
3313
3314   empathy_call_window_update_timer (self);
3315
3316   gtk_action_set_sensitive (priv->menu_fullscreen, TRUE);
3317 }
3318
3319 static gboolean
3320 empathy_call_window_show_video_output_cb (gpointer user_data)
3321 {
3322   EmpathyCallWindow *self = EMPATHY_CALL_WINDOW (user_data);
3323
3324   if (self->priv->video_output != NULL)
3325     {
3326       gtk_widget_hide (self->priv->remote_user_avatar_widget);
3327       clutter_actor_show (self->priv->video_output);
3328       clutter_actor_raise_top (self->priv->overlay_bin);
3329     }
3330
3331   return FALSE;
3332 }
3333
3334 static gboolean
3335 empathy_call_window_check_video_cb (gpointer data)
3336 {
3337   EmpathyCallWindow *self = data;
3338
3339   if (self->priv->got_video)
3340     {
3341       self->priv->got_video = FALSE;
3342       return TRUE;
3343     }
3344
3345   /* No video in the last N seconds, display the remote avatar */
3346   empathy_call_window_show_video_output (self, FALSE);
3347
3348   return TRUE;
3349 }
3350
3351 /* Called from the streaming thread */
3352 #ifdef HAVE_GST1
3353 static GstPadProbeReturn
3354 empathy_call_window_video_probe_cb (GstPad *pad,
3355     GstPadProbeInfo *info,
3356     gpointer user_data)
3357 {
3358     EmpathyCallWindow *self = user_data;
3359
3360   if (G_UNLIKELY (!self->priv->got_video))
3361     {
3362       /* show the remote video */
3363       g_idle_add_full (G_PRIORITY_DEFAULT_IDLE,
3364           empathy_call_window_show_video_output_cb,
3365           g_object_ref (self), g_object_unref);
3366
3367       self->priv->got_video = TRUE;
3368     }
3369
3370   return GST_PAD_PROBE_OK;
3371 }
3372 #else
3373 static gboolean
3374 empathy_call_window_video_probe_cb (GstPad *pad,
3375     GstMiniObject *mini_obj,
3376     EmpathyCallWindow *self)
3377 {
3378   /* Ignore events */
3379   if (GST_IS_EVENT (mini_obj))
3380     return TRUE;
3381
3382   if (G_UNLIKELY (!self->priv->got_video))
3383     {
3384       /* show the remote video */
3385       g_idle_add_full (G_PRIORITY_DEFAULT_IDLE,
3386           empathy_call_window_show_video_output_cb,
3387           g_object_ref (self), g_object_unref);
3388
3389       self->priv->got_video = TRUE;
3390     }
3391
3392   return TRUE;
3393 }
3394 #endif
3395
3396 /* Called from the streaming thread */
3397 static gboolean
3398 empathy_call_window_src_added_cb (EmpathyCallHandler *handler,
3399   TfContent *content, GstPad *src, gpointer user_data)
3400 {
3401   EmpathyCallWindow *self = EMPATHY_CALL_WINDOW (user_data);
3402   EmpathyCallWindowPriv *priv = GET_PRIV (self);
3403   gboolean retval = FALSE;
3404   guint media_type;
3405
3406   GstPad *pad;
3407
3408   g_mutex_lock (&priv->lock);
3409
3410   g_object_get (content, "media-type", &media_type, NULL);
3411
3412   switch (media_type)
3413     {
3414       case TP_MEDIA_STREAM_TYPE_AUDIO:
3415         pad = empathy_call_window_get_audio_sink_pad (self, content);
3416         break;
3417       case TP_MEDIA_STREAM_TYPE_VIDEO:
3418         g_idle_add (empathy_call_window_show_video_output_cb, self);
3419         pad = empathy_call_window_get_video_sink_pad (self);
3420
3421 #ifdef HAVE_GST1
3422         gst_pad_add_probe (src,
3423             GST_PAD_PROBE_TYPE_BUFFER | GST_PAD_PROBE_TYPE_BUFFER_LIST,
3424             empathy_call_window_video_probe_cb, self, NULL);
3425 #else
3426         gst_pad_add_data_probe (src,
3427             G_CALLBACK (empathy_call_window_video_probe_cb), self);
3428 #endif
3429         if (priv->got_video_src > 0)
3430           g_source_remove (priv->got_video_src);
3431         priv->got_video_src = g_timeout_add_seconds (1,
3432             empathy_call_window_check_video_cb, self);
3433         break;
3434       default:
3435         g_assert_not_reached ();
3436     }
3437
3438   if (pad == NULL)
3439     goto out;
3440
3441   if (GST_PAD_LINK_FAILED (gst_pad_link (src, pad)))
3442       g_warning ("Could not link %s sink pad",
3443           media_type == TP_MEDIA_STREAM_TYPE_AUDIO ? "audio" : "video");
3444   else
3445       retval = TRUE;
3446
3447   gst_object_unref (pad);
3448
3449  out:
3450
3451   /* If no sink could be linked, try to add fakesink to prevent the whole call
3452    * aborting */
3453
3454   if (!retval)
3455     {
3456       GstElement *fakesink = gst_element_factory_make ("fakesink", NULL);
3457
3458       if (gst_bin_add (GST_BIN (priv->pipeline), fakesink))
3459         {
3460           GstPad *sinkpad = gst_element_get_static_pad (fakesink, "sink");
3461           if (gst_element_set_state (fakesink, GST_STATE_PLAYING) == GST_STATE_CHANGE_FAILURE ||
3462               GST_PAD_LINK_FAILED (gst_pad_link (src, sinkpad)))
3463             {
3464               gst_element_set_locked_state (fakesink, TRUE);
3465               gst_element_set_state (fakesink, GST_STATE_NULL);
3466               gst_bin_remove (GST_BIN (priv->pipeline), fakesink);
3467             }
3468           else
3469             {
3470               DEBUG ("Could not link real sink, linked fakesink instead");
3471             }
3472           gst_object_unref (sinkpad);
3473         }
3474       else
3475         {
3476           gst_object_unref (fakesink);
3477         }
3478     }
3479
3480
3481   g_mutex_unlock (&priv->lock);
3482
3483   return TRUE;
3484 }
3485
3486 static void
3487 empathy_call_window_prepare_audio_output (EmpathyCallWindow *self,
3488   TfContent *content)
3489 {
3490   EmpathyCallWindowPriv *priv = self->priv;
3491
3492   g_assert (priv->audio_output_added == FALSE);
3493   g_assert (priv->audio_output == FALSE);
3494
3495   priv->audio_output = empathy_audio_sink_new ();
3496   g_object_ref_sink (priv->audio_output);
3497
3498   /* volume button to output volume linking */
3499   g_object_bind_property (priv->audio_output, "volume",
3500     priv->volume_button, "value",
3501     G_BINDING_BIDIRECTIONAL | G_BINDING_SYNC_CREATE);
3502
3503   g_object_bind_property_full (content, "requested-output-volume",
3504     priv->audio_output, "volume",
3505     G_BINDING_DEFAULT,
3506     audio_control_volume_to_element,
3507     element_volume_to_audio_control,
3508     NULL, NULL);
3509
3510   /* Link volumes together, sync the current audio input volume property
3511     * back to farstream first */
3512   g_object_bind_property_full (priv->audio_output, "volume",
3513     content, "reported-output-volume",
3514     G_BINDING_SYNC_CREATE,
3515     element_volume_to_audio_control,
3516     audio_control_volume_to_element,
3517     NULL, NULL);
3518
3519   /* For raw audio conferences assume that the producer of the raw data
3520    * has already processed it, so turn off any echo cancellation and any
3521    * other audio improvements that come with it */
3522   empathy_audio_sink_set_echo_cancel (
3523     EMPATHY_GST_AUDIO_SINK (priv->audio_output),
3524     !empathy_call_window_content_is_raw (content));
3525 }
3526
3527
3528 static gboolean
3529 empathy_call_window_content_added_cb (EmpathyCallHandler *handler,
3530   TfContent *content, gpointer user_data)
3531 {
3532   EmpathyCallWindow *self = EMPATHY_CALL_WINDOW (user_data);
3533   EmpathyCallWindowPriv *priv = GET_PRIV (self);
3534   GstPad *sink, *pad;
3535   FsMediaType media_type;
3536   gboolean retval = FALSE;
3537
3538   g_object_get (content, "media-type", &media_type, "sink-pad", &sink, NULL);
3539   g_assert (sink != NULL);
3540
3541   switch (media_type)
3542     {
3543       case FS_MEDIA_TYPE_AUDIO:
3544
3545         /* For raw audio conferences assume that the receiver of the raw data
3546          * wants it unprocessed, so turn off any echo cancellation and any
3547          * other audio improvements that come with it */
3548         empathy_audio_src_set_echo_cancel (
3549           EMPATHY_GST_AUDIO_SRC (priv->audio_input),
3550           !empathy_call_window_content_is_raw (content));
3551
3552         /* Link volumes together, sync the current audio input volume property
3553          * back to farstream first */
3554         g_object_bind_property_full (content, "requested-input-volume",
3555           priv->audio_input, "volume",
3556           G_BINDING_DEFAULT,
3557           audio_control_volume_to_element,
3558           element_volume_to_audio_control,
3559           NULL, NULL);
3560
3561         g_object_bind_property_full (priv->audio_input, "volume",
3562           content, "reported-input-volume",
3563           G_BINDING_SYNC_CREATE,
3564           element_volume_to_audio_control,
3565           audio_control_volume_to_element,
3566           NULL, NULL);
3567
3568         if (!gst_bin_add (GST_BIN (priv->pipeline), priv->audio_input))
3569           {
3570             g_warning ("Could not add audio source to pipeline");
3571             break;
3572           }
3573
3574         pad = gst_element_get_static_pad (priv->audio_input, "src");
3575         if (!pad)
3576           {
3577             gst_bin_remove (GST_BIN (priv->pipeline), priv->audio_input);
3578             g_warning ("Could not get source pad from audio source");
3579             break;
3580           }
3581
3582         if (GST_PAD_LINK_FAILED (gst_pad_link (pad, sink)))
3583           {
3584             gst_bin_remove (GST_BIN (priv->pipeline), priv->audio_input);
3585             gst_object_unref (pad);
3586             g_warning ("Could not link audio source to farsight");
3587             break;
3588           }
3589         gst_object_unref (pad);
3590
3591         if (gst_element_set_state (priv->audio_input, GST_STATE_PLAYING) == GST_STATE_CHANGE_FAILURE)
3592           {
3593             g_warning ("Could not start audio source");
3594             gst_element_set_state (priv->audio_input, GST_STATE_NULL);
3595             gst_bin_remove (GST_BIN (priv->pipeline), priv->audio_input);
3596             break;
3597           }
3598
3599         /* Prepare our audio output, not added yet though */
3600         empathy_call_window_prepare_audio_output (self, content);
3601
3602         retval = TRUE;
3603         break;
3604       case FS_MEDIA_TYPE_VIDEO:
3605         if (priv->video_tee != NULL)
3606           {
3607 #ifdef HAVE_GST1
3608             pad = gst_element_get_request_pad (priv->video_tee, "src_%u");
3609 #else
3610             pad = gst_element_get_request_pad (priv->video_tee, "src%d");
3611 #endif
3612             if (GST_PAD_LINK_FAILED (gst_pad_link (pad, sink)))
3613               {
3614                 g_warning ("Could not link video source input pipeline");
3615                 break;
3616               }
3617             gst_object_unref (pad);
3618           }
3619
3620         retval = TRUE;
3621         break;
3622       default:
3623         g_assert_not_reached ();
3624     }
3625
3626   gst_object_unref (sink);
3627   return retval;
3628 }
3629
3630 static void
3631 empathy_call_window_remove_video_input (EmpathyCallWindow *self)
3632 {
3633   EmpathyCallWindowPriv *priv = GET_PRIV (self);
3634   GstElement *preview;
3635
3636   disable_camera (self);
3637
3638   DEBUG ("remove video input");
3639   preview = priv->video_preview_sink;
3640
3641   gst_element_set_state (priv->video_input, GST_STATE_NULL);
3642   gst_element_set_state (priv->video_tee, GST_STATE_NULL);
3643   gst_element_set_state (preview, GST_STATE_NULL);
3644
3645   gst_bin_remove_many (GST_BIN (priv->pipeline), priv->video_input,
3646     preview, NULL);
3647
3648   g_object_unref (priv->video_input);
3649   priv->video_input = NULL;
3650   g_object_unref (priv->video_tee);
3651   priv->video_tee = NULL;
3652   clutter_actor_destroy (priv->video_preview);
3653   priv->video_preview = NULL;
3654
3655   gtk_widget_set_sensitive (priv->camera_button, FALSE);
3656   empathy_camera_menu_set_sensitive (priv->camera_menu, FALSE);
3657 }
3658
3659 static void
3660 start_call (EmpathyCallWindow *self)
3661 {
3662   EmpathyCallWindowPriv *priv = GET_PRIV (self);
3663
3664   g_signal_emit (self, signals[SIG_INHIBIT], 0, TRUE);
3665
3666   priv->call_started = TRUE;
3667   empathy_call_handler_start_call (priv->handler,
3668       gtk_get_current_event_time ());
3669
3670   if (empathy_call_handler_has_initial_video (priv->handler))
3671     {
3672       TpCallChannel *call;
3673       TpSendingState s;
3674
3675       g_object_get (priv->handler, "call-channel", &call, NULL);
3676       /* If the call channel isn't set yet we're requesting it, if we're
3677        * requesting it with initial video it should be PENDING_SEND when we get
3678        * it */
3679       if (call == NULL)
3680         s = TP_SENDING_STATE_PENDING_SEND;
3681       else
3682         s = empathy_call_channel_get_video_state (call);
3683
3684       if (s == TP_SENDING_STATE_PENDING_SEND ||
3685           s == TP_SENDING_STATE_SENDING)
3686         {
3687           /* Enable 'send video' buttons and display the preview */
3688           gtk_toggle_button_set_active (
3689             GTK_TOGGLE_BUTTON (priv->camera_button), TRUE);
3690         }
3691       else
3692         {
3693           gtk_toggle_button_set_active (
3694             GTK_TOGGLE_BUTTON (priv->camera_button), FALSE);
3695
3696           if (priv->video_preview == NULL)
3697             {
3698               create_video_preview (self);
3699               add_video_preview_to_pipeline (self);
3700             }
3701         }
3702
3703       if (call != NULL)
3704         g_object_unref (call);
3705     }
3706 }
3707
3708 static gboolean
3709 empathy_call_window_bus_message (GstBus *bus, GstMessage *message,
3710   gpointer user_data)
3711 {
3712   EmpathyCallWindow *self = EMPATHY_CALL_WINDOW (user_data);
3713   EmpathyCallWindowPriv *priv = GET_PRIV (self);
3714   GstState newstate, pending;
3715
3716   empathy_call_handler_bus_message (priv->handler, bus, message);
3717
3718   switch (GST_MESSAGE_TYPE (message))
3719     {
3720       case GST_MESSAGE_STATE_CHANGED:
3721         if (GST_MESSAGE_SRC (message) == GST_OBJECT (priv->video_input))
3722           {
3723             gst_message_parse_state_changed (message, NULL, &newstate, NULL);
3724           }
3725         if (GST_MESSAGE_SRC (message) == GST_OBJECT (priv->pipeline) &&
3726             !priv->call_started)
3727           {
3728             gst_message_parse_state_changed (message, NULL, &newstate, NULL);
3729             if (newstate == GST_STATE_PAUSED)
3730               {
3731                 gst_element_set_state (priv->pipeline, GST_STATE_PLAYING);
3732                 priv->pipeline_playing = TRUE;
3733
3734                 if (priv->start_call_when_playing)
3735                   start_call (self);
3736               }
3737           }
3738         if (priv->video_preview_sink != NULL &&
3739             GST_MESSAGE_SRC (message) == GST_OBJECT (priv->video_preview_sink))
3740           {
3741             gst_message_parse_state_changed (message, NULL, &newstate,
3742                 &pending);
3743
3744             if (newstate == GST_STATE_PLAYING &&
3745                 pending == GST_STATE_VOID_PENDING)
3746               empathy_call_window_stop_camera_spinning (self);
3747           }
3748         break;
3749       case GST_MESSAGE_ERROR:
3750         {
3751           GError *error = NULL;
3752           GstElement *gst_error;
3753           gchar *debug;
3754           gchar *name;
3755
3756           gst_message_parse_error (message, &error, &debug);
3757           gst_error = GST_ELEMENT (GST_MESSAGE_SRC (message));
3758
3759           g_message ("Element error: %s -- %s\n", error->message, debug);
3760
3761           name = gst_element_get_name (gst_error);
3762           if (g_str_has_prefix (name, VIDEO_INPUT_ERROR_PREFIX))
3763             {
3764               /* Remove the video input and continue */
3765               if (priv->video_input != NULL)
3766                 empathy_call_window_remove_video_input (self);
3767               gst_element_set_state (priv->pipeline, GST_STATE_PLAYING);
3768             }
3769           else
3770             {
3771               empathy_call_window_disconnected (self, TRUE);
3772             }
3773           g_free (name);
3774           g_error_free (error);
3775           g_free (debug);
3776         }
3777       case GST_MESSAGE_UNKNOWN:
3778       case GST_MESSAGE_EOS:
3779       case GST_MESSAGE_WARNING:
3780       case GST_MESSAGE_INFO:
3781       case GST_MESSAGE_TAG:
3782       case GST_MESSAGE_BUFFERING:
3783       case GST_MESSAGE_STATE_DIRTY:
3784       case GST_MESSAGE_STEP_DONE:
3785       case GST_MESSAGE_CLOCK_PROVIDE:
3786       case GST_MESSAGE_CLOCK_LOST:
3787       case GST_MESSAGE_NEW_CLOCK:
3788       case GST_MESSAGE_STRUCTURE_CHANGE:
3789       case GST_MESSAGE_STREAM_STATUS:
3790       case GST_MESSAGE_APPLICATION:
3791       case GST_MESSAGE_ELEMENT:
3792       case GST_MESSAGE_SEGMENT_START:
3793       case GST_MESSAGE_SEGMENT_DONE:
3794       case GST_MESSAGE_DURATION:
3795       case GST_MESSAGE_ANY:
3796       default:
3797         break;
3798     }
3799
3800   return TRUE;
3801 }
3802
3803 static void
3804 empathy_call_window_members_changed_cb (TpCallChannel *call,
3805     GHashTable *updates,
3806     GPtrArray *removed,
3807     TpCallStateReason *reason,
3808     EmpathyCallWindow *self)
3809 {
3810   EmpathyCallWindowPriv *priv = GET_PRIV (self);
3811   GHashTableIter iter;
3812   gpointer key, value;
3813   gboolean held = FALSE;
3814
3815   g_hash_table_iter_init (&iter, updates);
3816   while (g_hash_table_iter_next (&iter, &key, &value))
3817     {
3818       if (GPOINTER_TO_INT (value) & TP_CALL_MEMBER_FLAG_HELD)
3819         {
3820           /* This assumes this is a 1-1 call, otherwise one participant
3821            * putting the call on hold wouldn't mean the call is on hold
3822            * for everyone. */
3823           held = TRUE;
3824           break;
3825         }
3826     }
3827
3828   if (held)
3829     priv->call_state = HELD;
3830   else if (priv->call_state == HELD)
3831     priv->call_state = CONNECTED;
3832 }
3833
3834 static void
3835 call_handler_notify_call_cb (EmpathyCallHandler *handler,
3836     GParamSpec *spec,
3837     EmpathyCallWindow *self)
3838 {
3839   EmpathyCallWindowPriv *priv = GET_PRIV (self);
3840   TpCallChannel *call;
3841
3842   g_object_get (priv->handler, "call-channel", &call, NULL);
3843   if (call == NULL)
3844     return;
3845
3846 /* FIXME
3847   tp_g_signal_connect_object (call, "audio-stream-error",
3848       G_CALLBACK (empathy_call_window_audio_stream_error), self, 0);
3849   tp_g_signal_connect_object (call, "video-stream-error",
3850       G_CALLBACK (empathy_call_window_video_stream_error), self, 0);
3851 */
3852
3853   tp_g_signal_connect_object (call, "members-changed",
3854       G_CALLBACK (empathy_call_window_members_changed_cb), self, 0);
3855
3856   g_object_unref (call);
3857 }
3858
3859 static void
3860 empathy_call_window_connect_handler (EmpathyCallWindow *self)
3861 {
3862   EmpathyCallWindowPriv *priv = GET_PRIV (self);
3863   TpCallChannel *call;
3864
3865   g_signal_connect (priv->handler, "state-changed",
3866     G_CALLBACK (empathy_call_window_state_changed_cb), self);
3867   g_signal_connect (priv->handler, "conference-added",
3868     G_CALLBACK (empathy_call_window_conference_added_cb), self);
3869   g_signal_connect (priv->handler, "conference-removed",
3870     G_CALLBACK (empathy_call_window_conference_removed_cb), self);
3871   g_signal_connect (priv->handler, "closed",
3872     G_CALLBACK (empathy_call_window_channel_closed_cb), self);
3873   g_signal_connect (priv->handler, "src-pad-added",
3874     G_CALLBACK (empathy_call_window_src_added_cb), self);
3875   g_signal_connect (priv->handler, "content-added",
3876     G_CALLBACK (empathy_call_window_content_added_cb), self);
3877   g_signal_connect (priv->handler, "content-removed",
3878     G_CALLBACK (empathy_call_window_content_removed_cb), self);
3879
3880   /* We connect to ::call-channel unconditionally since we'll
3881    * get new channels if we hangup and redial or if we reuse the
3882    * call window. */
3883   g_signal_connect (priv->handler, "notify::call-channel",
3884     G_CALLBACK (call_handler_notify_call_cb), self);
3885
3886   g_signal_connect (priv->handler, "framerate-changed",
3887     G_CALLBACK (empathy_call_window_framerate_changed_cb), self);
3888   g_signal_connect (priv->handler, "resolution-changed",
3889     G_CALLBACK (empathy_call_window_resolution_changed_cb), self);
3890
3891   g_object_get (priv->handler, "call-channel", &call, NULL);
3892   if (call != NULL)
3893     {
3894       /* We won't get notify::call-channel for this channel, so
3895        * directly call the callback. */
3896       call_handler_notify_call_cb (priv->handler, NULL, self);
3897       g_object_unref (call);
3898     }
3899 }
3900
3901 static void
3902 empathy_call_window_realized_cb (GtkWidget *widget,
3903     EmpathyCallWindow *self)
3904 {
3905   gint width;
3906
3907   /* Make the hangup button twice as wide */
3908   width = gtk_widget_get_allocated_width (self->priv->hangup_button);
3909   gtk_widget_set_size_request (self->priv->hangup_button, width * 2, -1);
3910
3911   empathy_call_window_connect_handler (self);
3912
3913   gst_element_set_state (self->priv->pipeline, GST_STATE_PAUSED);
3914 }
3915
3916 static gboolean
3917 empathy_call_window_delete_cb (GtkWidget *widget, GdkEvent*event,
3918   EmpathyCallWindow *window)
3919 {
3920   EmpathyCallWindowPriv *priv = GET_PRIV (window);
3921
3922   if (priv->pipeline != NULL)
3923     {
3924       if (priv->bus_message_source_id != 0)
3925         {
3926           g_source_remove (priv->bus_message_source_id);
3927           priv->bus_message_source_id = 0;
3928         }
3929
3930       gst_element_set_state (priv->pipeline, GST_STATE_NULL);
3931     }
3932
3933   if (priv->call_state == CONNECTING)
3934     empathy_sound_manager_stop (priv->sound_mgr, EMPATHY_SOUND_PHONE_OUTGOING);
3935
3936   return FALSE;
3937 }
3938
3939 static void
3940 show_controls (EmpathyCallWindow *window, gboolean set_fullscreen)
3941 {
3942   GtkWidget *menu;
3943   EmpathyCallWindowPriv *priv = GET_PRIV (window);
3944
3945   menu = gtk_ui_manager_get_widget (priv->ui_manager,
3946             "/menubar1");
3947
3948   if (set_fullscreen)
3949     {
3950       gtk_widget_hide (priv->dtmf_panel);
3951       gtk_widget_hide (menu);
3952       gtk_widget_hide (priv->toolbar);
3953     }
3954   else
3955     {
3956       if (priv->dialpad_was_visible_before_fs)
3957         gtk_widget_show (priv->dtmf_panel);
3958
3959       gtk_widget_show (menu);
3960       gtk_widget_show (priv->toolbar);
3961
3962       gtk_window_resize (GTK_WINDOW (window), priv->original_width_before_fs,
3963           priv->original_height_before_fs);
3964     }
3965 }
3966
3967 static void
3968 show_borders (EmpathyCallWindow *window, gboolean set_fullscreen)
3969 {
3970   EmpathyCallWindowPriv *priv = GET_PRIV (window);
3971
3972   gtk_box_set_spacing (GTK_BOX (priv->content_hbox),
3973       set_fullscreen ? 0 : CONTENT_HBOX_SPACING);
3974
3975   if (priv->video_output != NULL)
3976     {
3977 #if 0
3978       gtk_box_set_child_packing (GTK_BOX (priv->content_hbox),
3979           priv->video_output, TRUE, TRUE,
3980           set_fullscreen ? 0 : CONTENT_HBOX_CHILDREN_PACKING_PADDING,
3981           GTK_PACK_START);
3982 #endif
3983     }
3984 }
3985
3986 static gboolean
3987 empathy_call_window_state_event_cb (GtkWidget *widget,
3988   GdkEventWindowState *event, EmpathyCallWindow *window)
3989 {
3990   if (event->changed_mask & GDK_WINDOW_STATE_FULLSCREEN)
3991     {
3992       EmpathyCallWindowPriv *priv = GET_PRIV (window);
3993       gboolean set_fullscreen = event->new_window_state &
3994         GDK_WINDOW_STATE_FULLSCREEN;
3995
3996       if (set_fullscreen)
3997         {
3998           gboolean dialpad_was_visible;
3999           GtkAllocation allocation;
4000           gint original_width, original_height;
4001
4002           gtk_widget_get_allocation (GTK_WIDGET (window), &allocation);
4003           original_width = allocation.width;
4004           original_height = allocation.height;
4005
4006           g_object_get (priv->dtmf_panel,
4007               "visible", &dialpad_was_visible,
4008               NULL);
4009
4010           priv->dialpad_was_visible_before_fs = dialpad_was_visible;
4011           priv->original_width_before_fs = original_width;
4012           priv->original_height_before_fs = original_height;
4013
4014           if (priv->video_output_motion_handler_id == 0 &&
4015                 priv->video_output != NULL)
4016             {
4017               priv->video_output_motion_handler_id = g_signal_connect (
4018                   G_OBJECT (priv->video_container), "motion-notify-event",
4019                   G_CALLBACK (empathy_call_window_video_output_motion_notify),
4020                   window);
4021             }
4022         }
4023       else
4024         {
4025           disconnect_video_output_motion_handler (window);
4026         }
4027
4028       empathy_call_window_fullscreen_set_fullscreen (priv->fullscreen,
4029           set_fullscreen);
4030       show_controls (window, set_fullscreen);
4031       show_borders (window, set_fullscreen);
4032       gtk_action_set_stock_id (priv->menu_fullscreen,
4033           (set_fullscreen ? "gtk-leave-fullscreen" : "gtk-fullscreen"));
4034       priv->is_fullscreen = set_fullscreen;
4035   }
4036
4037   return FALSE;
4038 }
4039
4040 static void
4041 empathy_call_window_show_dialpad (EmpathyCallWindow *window,
4042     gboolean active)
4043 {
4044   EmpathyCallWindowPriv *priv = GET_PRIV (window);
4045   int w, h, dialpad_width;
4046   GtkAllocation allocation;
4047
4048   gtk_widget_get_allocation (GTK_WIDGET (window), &allocation);
4049   w = allocation.width;
4050   h = allocation.height;
4051
4052   gtk_widget_get_preferred_width (priv->dtmf_panel, &dialpad_width, NULL);
4053
4054   if (active)
4055     {
4056       gtk_widget_show (priv->dtmf_panel);
4057       w += dialpad_width;
4058     }
4059   else
4060     {
4061       w -= dialpad_width;
4062       gtk_widget_hide (priv->dtmf_panel);
4063     }
4064
4065   if (w > 0 && h > 0)
4066     gtk_window_resize (GTK_WINDOW (window), w, h);
4067 }
4068
4069 static void
4070 empathy_call_window_set_send_video (EmpathyCallWindow *window,
4071   CameraState state)
4072 {
4073   EmpathyCallWindowPriv *priv = GET_PRIV (window);
4074   TpCallChannel *call;
4075
4076   priv->sending_video = (state == CAMERA_STATE_ON);
4077
4078   if (state == CAMERA_STATE_ON)
4079     {
4080       /* When we start sending video, we want to show the video preview by
4081          default. */
4082       display_video_preview (window, TRUE);
4083     }
4084   else
4085     {
4086       display_video_preview (window, FALSE);
4087     }
4088
4089   if (priv->call_state != CONNECTED)
4090     return;
4091
4092   g_object_get (priv->handler, "call-channel", &call, NULL);
4093   DEBUG ("%s sending video", priv->sending_video ? "start": "stop");
4094   empathy_call_channel_send_video (call, priv->sending_video);
4095   g_object_unref (call);
4096 }
4097
4098 static void
4099 empathy_call_window_hangup_cb (gpointer object,
4100     EmpathyCallWindow *self)
4101 {
4102   /* stopping the call will put it the ENDED state and
4103    * from state_changed_cb we'll reconfigure the window
4104    */
4105   empathy_call_handler_stop_call (self->priv->handler);
4106 }
4107
4108 static void
4109 empathy_call_window_restart_call (EmpathyCallWindow *window)
4110 {
4111   EmpathyCallWindowPriv *priv = GET_PRIV (window);
4112
4113   /* Remove error info bars */
4114   gtk_container_forall (GTK_CONTAINER (priv->errors_vbox),
4115       (GtkCallback) gtk_widget_destroy, NULL);
4116
4117   create_video_output_widget (window);
4118   priv->outgoing = TRUE;
4119   empathy_call_window_set_state_connecting (window);
4120
4121   if (priv->pipeline_playing)
4122     start_call (window);
4123   else
4124     /* call will be started when the pipeline is ready */
4125     priv->start_call_when_playing = TRUE;
4126
4127   empathy_call_window_setup_avatars (window, priv->handler);
4128
4129   empathy_call_window_show_hangup_button (window, TRUE);
4130 }
4131
4132 static void
4133 empathy_call_window_dialpad_cb (GtkToggleToolButton *button,
4134     EmpathyCallWindow *window)
4135 {
4136   gboolean active;
4137
4138   active = gtk_toggle_tool_button_get_active (button);
4139
4140   empathy_call_window_show_dialpad (window, active);
4141 }
4142
4143 static void
4144 empathy_call_window_fullscreen_cb (gpointer object,
4145                                    EmpathyCallWindow *window)
4146 {
4147   empathy_call_window_fullscreen_toggle (window);
4148 }
4149
4150 static void
4151 empathy_call_window_fullscreen_toggle (EmpathyCallWindow *window)
4152 {
4153   EmpathyCallWindowPriv *priv = GET_PRIV (window);
4154
4155   if (priv->is_fullscreen)
4156     gtk_window_unfullscreen (GTK_WINDOW (window));
4157   else
4158     gtk_window_fullscreen (GTK_WINDOW (window));
4159 }
4160
4161 static gboolean
4162 empathy_call_window_video_button_press_cb (GtkWidget *video_preview,
4163   GdkEventButton *event, EmpathyCallWindow *window)
4164 {
4165   if (event->button == 3 && event->type == GDK_BUTTON_PRESS)
4166     {
4167       empathy_call_window_video_menu_popup (window, event->button);
4168       return TRUE;
4169     }
4170
4171   return FALSE;
4172 }
4173
4174 static gboolean
4175 empathy_call_window_key_press_cb (GtkWidget *video_output,
4176   GdkEventKey *event, EmpathyCallWindow *window)
4177 {
4178   EmpathyCallWindowPriv *priv = GET_PRIV (window);
4179   gchar key;
4180
4181   if (priv->is_fullscreen && event->keyval == GDK_KEY_Escape)
4182     {
4183       /* Since we are in fullscreen mode, toggling will bring us back to
4184          normal mode. */
4185       empathy_call_window_fullscreen_toggle (window);
4186       return TRUE;
4187     }
4188
4189   key = gdk_keyval_to_unicode (event->keyval);
4190   switch (key)
4191     {
4192       case '0':
4193       case '1':
4194       case '2':
4195       case '3':
4196       case '4':
4197       case '5':
4198       case '6':
4199       case '7':
4200       case '8':
4201       case '9':
4202       case '*':
4203       case '#':
4204         break;
4205       default:
4206         return TRUE;
4207         break;
4208     }
4209
4210   gtk_toggle_tool_button_set_active (
4211       GTK_TOGGLE_TOOL_BUTTON (priv->dialpad_button), TRUE);
4212
4213   empathy_dialpad_widget_press_key (
4214       EMPATHY_DIALPAD_WIDGET (priv->dtmf_panel), key);
4215
4216   return TRUE;
4217 }
4218
4219 static gboolean
4220 empathy_call_window_video_output_motion_notify (GtkWidget *widget,
4221     GdkEventMotion *event, EmpathyCallWindow *window)
4222 {
4223   EmpathyCallWindowPriv *priv = GET_PRIV (window);
4224
4225   if (priv->is_fullscreen)
4226     {
4227       empathy_call_window_fullscreen_show_popup (priv->fullscreen);
4228
4229       /* Show the bottom toolbar */
4230       empathy_call_window_motion_notify_cb (NULL, NULL, window);
4231       return TRUE;
4232     }
4233   return FALSE;
4234 }
4235
4236 static void
4237 empathy_call_window_video_menu_popup (EmpathyCallWindow *window,
4238   guint button)
4239 {
4240   GtkWidget *menu;
4241   EmpathyCallWindowPriv *priv = GET_PRIV (window);
4242
4243   menu = gtk_ui_manager_get_widget (priv->ui_manager,
4244             "/video-popup");
4245   gtk_menu_popup (GTK_MENU (menu), NULL, NULL, NULL, NULL,
4246       button, gtk_get_current_event_time ());
4247   gtk_menu_shell_select_first (GTK_MENU_SHELL (menu), FALSE);
4248 }
4249
4250 static void
4251 empathy_call_window_status_message (EmpathyCallWindow *self,
4252   gchar *message)
4253 {
4254   gtk_label_set_label (GTK_LABEL (self->priv->status_label), message);
4255 }
4256
4257 GtkUIManager *
4258 empathy_call_window_get_ui_manager (EmpathyCallWindow *window)
4259 {
4260   EmpathyCallWindowPriv *priv = GET_PRIV (window);
4261
4262   return priv->ui_manager;
4263 }
4264
4265 EmpathyGstAudioSrc *
4266 empathy_call_window_get_audio_src (EmpathyCallWindow *window)
4267 {
4268   EmpathyCallWindowPriv *priv = GET_PRIV (window);
4269
4270   return (EmpathyGstAudioSrc *) priv->audio_input;
4271 }
4272
4273 EmpathyGstVideoSrc *
4274 empathy_call_window_get_video_src (EmpathyCallWindow *self)
4275 {
4276   return EMPATHY_GST_VIDEO_SRC (self->priv->video_input);
4277 }
4278
4279 void
4280 empathy_call_window_change_webcam (EmpathyCallWindow *self,
4281     const gchar *device)
4282 {
4283   EmpathyGstVideoSrc *video;
4284   gboolean running;
4285
4286   /* Restart the camera only if it's already running */
4287   running = (self->priv->video_preview != NULL);
4288   video = empathy_call_window_get_video_src (self);
4289
4290   if (running)
4291     empathy_call_window_play_camera (self, FALSE);
4292
4293   empathy_video_src_change_device (video, device);
4294
4295   if (running)
4296     empathy_call_window_play_camera (self, TRUE);
4297 }