]> git.0d.be Git - empathy.git/blob - src/empathy-call-window.c
If window->call is NULL consider the call as CLOSED
[empathy.git] / src / empathy-call-window.c
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3  * Copyright (C) 2007 Elliot Fairweather
4  * Copyright (C) 2007-2008 Collabora Ltd.
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  * Authors: Elliot Fairweather <elliot.fairweather@collabora.co.uk>
21  *          Xavier Claessens <xclaesse@gmail.com>
22  */
23
24 #include <string.h>
25
26 #include <glade/glade.h>
27 #include <glib/gi18n.h>
28
29 #include <telepathy-glib/enums.h>
30
31 #include <libempathy/empathy-contact.h>
32 #include <libempathy/empathy-tp-call.h>
33 #include <libempathy/empathy-debug.h>
34 #include <libempathy/empathy-utils.h>
35 #include <libempathy-gtk/empathy-ui-utils.h>
36
37 #include "empathy-call-window.h"
38
39 #define DEBUG_DOMAIN "CallWindow"
40
41 typedef struct 
42 {
43   GtkWidget *window;
44   GtkWidget *status_label;
45   GtkWidget *start_call_button;
46   GtkWidget *end_call_button;
47   GtkWidget *input_volume_scale;
48   GtkWidget *output_volume_scale;
49   GtkWidget *input_mute_button;
50   GtkWidget *output_mute_button;
51   GtkWidget *preview_video_frame;
52   GtkWidget *output_video_frame;
53   GtkWidget *preview_video_socket;
54   GtkWidget *output_video_socket;
55   GtkWidget *video_button;
56   GtkWidget *output_video_label;
57
58   EmpathyTpCall *call;
59
60   GTimeVal start_time;
61   guint timeout_event_id;
62
63   gboolean is_drawing;
64 } EmpathyCallWindow;
65
66 static gboolean
67 call_window_update_timer (gpointer data)
68 {
69   EmpathyCallWindow *window = data;
70   GTimeVal current;
71   gchar *str;
72   glong now, then;
73   glong time, seconds, minutes, hours;
74
75   g_get_current_time (&current);
76
77   now = current.tv_sec;
78   then = (window->start_time).tv_sec;
79
80   time = now - then;
81
82   seconds = time % 60;
83   time /= 60;
84   minutes = time % 60;
85   time /= 60;
86   hours = time % 60;
87
88   if (hours > 0)
89       str = g_strdup_printf ("Connected  -  %02ld : %02ld : %02ld", hours,
90           minutes, seconds);
91   else
92       str = g_strdup_printf ("Connected  -  %02ld : %02ld", minutes, seconds);
93
94   gtk_label_set_text (GTK_LABEL (window->status_label), str);
95
96   g_free (str);
97
98   return TRUE;
99 }
100
101 static void
102 call_window_stop_timeout (EmpathyCallWindow *window)
103 {
104   empathy_debug (DEBUG_DOMAIN, "Timer stopped");
105
106   if (window->timeout_event_id)
107     {
108       g_source_remove (window->timeout_event_id);
109       window->timeout_event_id = 0;
110     }
111 }
112
113 static void
114 call_window_set_output_video_is_drawing (EmpathyCallWindow *window,
115                                          gboolean is_drawing)
116 {
117   GtkWidget* child;
118
119   child = gtk_bin_get_child (GTK_BIN (window->output_video_frame));
120
121   empathy_debug (DEBUG_DOMAIN,
122       "Setting output video is drawing - %d", is_drawing);
123
124   if (is_drawing && !window->is_drawing)
125     {
126       if (child)
127           gtk_container_remove (GTK_CONTAINER (window->output_video_frame),
128               child);
129       gtk_container_add (GTK_CONTAINER (window->output_video_frame),
130           window->output_video_socket);
131       gtk_widget_show (window->output_video_socket);
132       empathy_tp_call_add_output_video (window->call,
133           gtk_socket_get_id (GTK_SOCKET (window->output_video_socket)));
134     }
135   if (!is_drawing && window->is_drawing)
136     {
137       empathy_tp_call_add_output_video (window->call, 0);
138       if (child)
139           gtk_container_remove (GTK_CONTAINER (window->output_video_frame),
140               child);
141       gtk_container_add (GTK_CONTAINER (window->output_video_frame),
142           window->output_video_label);
143       gtk_widget_show (window->output_video_label);
144     }
145
146   window->is_drawing = is_drawing;
147 }
148
149 static void
150 call_window_finalize (EmpathyCallWindow *window)
151 {
152   if (window->call)
153     { 
154       call_window_stop_timeout (window);
155       call_window_set_output_video_is_drawing (window, FALSE);
156       empathy_tp_call_remove_preview_video (window->call,
157           gtk_socket_get_id (GTK_SOCKET (window->preview_video_socket)));
158       g_object_unref (window->call);
159       window->call = NULL;
160     }
161 }
162
163 static void
164 call_window_socket_realized_cb (GtkWidget *widget,
165                                 EmpathyCallWindow *window)
166 {
167   if (widget == window->preview_video_socket)
168     {
169       empathy_debug (DEBUG_DOMAIN, "Preview socket realized");
170       empathy_tp_call_add_preview_video (window->call,
171           gtk_socket_get_id (GTK_SOCKET (window->preview_video_socket)));
172     }
173   else
174       empathy_debug (DEBUG_DOMAIN, "Output socket realized");
175 }
176
177 static void
178 call_window_video_button_toggled_cb (GtkWidget *button,
179                                      EmpathyCallWindow *window)
180 {
181   gboolean is_sending;
182
183   is_sending = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (button));
184
185   empathy_debug (DEBUG_DOMAIN, "Send video toggled - %d", is_sending);
186
187   empathy_tp_call_request_video_stream_direction (window->call, is_sending);
188 }
189
190 static void
191 call_window_start_call_button_clicked_cb (GtkWidget *widget,
192                                           EmpathyCallWindow *window)
193 {
194   empathy_debug (DEBUG_DOMAIN, "Start call clicked");
195
196   gtk_widget_set_sensitive (window->start_call_button, FALSE);
197   empathy_tp_call_accept_incoming_call (window->call);
198 }
199
200 static void
201 call_window_end_call_button_clicked_cb (GtkWidget *widget,
202                                         EmpathyCallWindow *window)
203 {
204   empathy_debug (DEBUG_DOMAIN, "End call clicked");
205
206   gtk_widget_set_sensitive (window->end_call_button, FALSE);
207   call_window_finalize (window);
208 }
209
210 static void
211 call_window_output_volume_changed_cb (GtkWidget *scale,
212                                       EmpathyCallWindow *window)
213 {
214   guint volume;
215
216   volume = (guint) gtk_range_get_value (GTK_RANGE (scale));
217
218   empathy_debug (DEBUG_DOMAIN, "Output volume changed - %u", volume);
219
220   empathy_tp_call_set_output_volume (window->call, volume);
221 }
222
223 static void
224 call_window_output_mute_button_toggled_cb (GtkWidget *button,
225                                            EmpathyCallWindow *window)
226 {
227   gboolean is_muted;
228
229   is_muted = !gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (button));
230
231   empathy_debug (DEBUG_DOMAIN, "Mute output toggled - %d", is_muted);
232
233   empathy_tp_call_mute_output (window->call, is_muted);
234 }
235
236 static void
237 call_window_input_mute_button_toggled_cb (GtkWidget *button,
238                                           EmpathyCallWindow *window)
239 {
240   gboolean is_muted;
241
242   is_muted = !gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (button));
243
244   empathy_debug (DEBUG_DOMAIN, "Mute input toggled - %d", is_muted);
245
246   empathy_tp_call_mute_input (window->call, is_muted);
247 }
248
249 static gboolean
250 call_window_delete_event_cb (GtkWidget *widget,
251                              GdkEvent *event,
252                              EmpathyCallWindow *window)
253 {
254   GtkWidget *dialog;
255   gint result;
256   guint status = EMPATHY_TP_CALL_STATUS_CLOSED;
257
258   empathy_debug (DEBUG_DOMAIN, "Delete event occurred");
259
260   if (window->call)
261       g_object_get (window->call, "status", &status, NULL);
262
263   if (status == EMPATHY_TP_CALL_STATUS_ACCEPTED)
264     {
265       dialog = gtk_message_dialog_new (GTK_WINDOW (window->window),
266           GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT,
267           GTK_MESSAGE_QUESTION, GTK_BUTTONS_YES_NO,
268           "This call will be ended. Continue?");
269
270       result = gtk_dialog_run (GTK_DIALOG (dialog));
271       gtk_widget_destroy (dialog);
272
273       if (result != GTK_RESPONSE_YES)
274           return TRUE;
275     }
276
277   return FALSE;
278 }
279
280 static void
281 call_window_destroy_cb (GtkWidget *widget,
282                         EmpathyCallWindow *window)
283 {
284   call_window_finalize (window);
285   g_object_unref (window->output_video_socket);
286   g_object_unref (window->preview_video_socket);
287   g_object_unref (window->output_video_label);
288   g_slice_free (EmpathyCallWindow, window);
289 }
290
291 static void
292 call_window_update (EmpathyCallWindow *window)
293 {
294   EmpathyContact *contact;
295   guint status;
296   guint stream_state;
297   EmpathyTpCallStream *audio_stream;
298   EmpathyTpCallStream *video_stream;
299   gboolean is_incoming;
300   gchar *title;
301
302   g_object_get (window->call,
303       "status", &status,
304       "audio-stream", &audio_stream,
305       "video-stream", &video_stream,
306       "contact", &contact,
307       "is-incoming", &is_incoming,
308       NULL);
309
310   if (video_stream->state > audio_stream->state)
311       stream_state = video_stream->state;
312   else
313       stream_state = audio_stream->state;
314
315   empathy_debug (DEBUG_DOMAIN, "Status changed - status: %d, stream state: %d, "
316       "is-incoming: %d video-stream direction: %d",
317       status, stream_state, is_incoming, video_stream->direction);
318
319   /* Depending on the status we have to set:
320    * - window's title
321    * - status's label
322    * - sensibility of all buttons
323    * */
324   if (status == EMPATHY_TP_CALL_STATUS_READYING)
325     {
326       gtk_window_set_title (GTK_WINDOW (window->window), _("Empathy Call"));
327       gtk_label_set_text (GTK_LABEL (window->status_label), _("Readying"));
328       gtk_widget_set_sensitive (window->start_call_button, is_incoming);
329       gtk_widget_set_sensitive (window->end_call_button, FALSE);
330       gtk_widget_set_sensitive (window->video_button, FALSE);
331       gtk_widget_set_sensitive (window->input_volume_scale, FALSE);
332       gtk_widget_set_sensitive (window->output_volume_scale, FALSE);
333       gtk_widget_set_sensitive (window->input_mute_button, FALSE);
334       gtk_widget_set_sensitive (window->output_mute_button, FALSE);
335     }
336   else if (status == EMPATHY_TP_CALL_STATUS_PENDING)
337     {
338       title = g_strdup_printf (_("%s - Empathy Call"),
339           empathy_contact_get_name (contact));
340
341       gtk_window_set_title (GTK_WINDOW (window->window), title);
342       gtk_label_set_text (GTK_LABEL (window->status_label), _("Ringing"));
343       gtk_widget_set_sensitive (window->start_call_button, is_incoming);
344       gtk_widget_set_sensitive (window->end_call_button, TRUE);
345     }
346   else if (status == EMPATHY_TP_CALL_STATUS_ACCEPTED)
347     {
348       gboolean receiving_video;
349       gboolean sending_video;
350
351       if (stream_state == TP_MEDIA_STREAM_STATE_DISCONNECTED)
352           gtk_label_set_text (GTK_LABEL (window->status_label), _("Disconnected"));
353       if (stream_state == TP_MEDIA_STREAM_STATE_CONNECTING)
354           gtk_label_set_text (GTK_LABEL (window->status_label), _("Connecting"));
355       else if (stream_state == TP_MEDIA_STREAM_STATE_CONNECTED &&
356                window->timeout_event_id == 0)
357         {
358           /* The call started, launch the timer */
359           g_get_current_time (&(window->start_time));
360           window->timeout_event_id = g_timeout_add_seconds (1,
361               call_window_update_timer, window);
362           call_window_update_timer (window);
363         }
364
365       receiving_video = video_stream->direction & TP_MEDIA_STREAM_DIRECTION_RECEIVE;
366       sending_video = video_stream->direction & TP_MEDIA_STREAM_DIRECTION_SEND;
367       call_window_set_output_video_is_drawing (window, receiving_video);
368       g_signal_handlers_block_by_func (window->video_button,
369           call_window_video_button_toggled_cb, window);
370       gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (window->video_button),
371           sending_video);
372       g_signal_handlers_unblock_by_func (window->video_button,
373           call_window_video_button_toggled_cb, window);
374
375       gtk_widget_set_sensitive (window->video_button, TRUE);
376       gtk_widget_set_sensitive (window->input_volume_scale, TRUE);
377       gtk_widget_set_sensitive (window->output_volume_scale, TRUE);
378       gtk_widget_set_sensitive (window->input_mute_button, TRUE);
379       gtk_widget_set_sensitive (window->output_mute_button, TRUE);
380     }
381   else if (status == EMPATHY_TP_CALL_STATUS_CLOSED)
382     {
383       gtk_label_set_text (GTK_LABEL (window->status_label), _("Closed"));
384       gtk_widget_set_sensitive (window->start_call_button, FALSE);
385       gtk_widget_set_sensitive (window->end_call_button, FALSE);
386       gtk_widget_set_sensitive (window->video_button, FALSE);
387       gtk_widget_set_sensitive (window->input_volume_scale, FALSE);
388       gtk_widget_set_sensitive (window->output_volume_scale, FALSE);
389       gtk_widget_set_sensitive (window->input_mute_button, FALSE);
390       gtk_widget_set_sensitive (window->output_mute_button, FALSE);
391
392       call_window_finalize (window);
393     }
394   if (contact)
395       g_object_unref (contact);
396 }
397
398 GtkWidget *
399 empathy_call_window_new (EmpathyTpCall *call)
400 {
401   EmpathyCallWindow *window;
402   GladeXML *glade;
403   gchar *filename;
404
405   g_return_val_if_fail (EMPATHY_IS_TP_CALL (call), NULL);
406
407   window = g_slice_new0 (EmpathyCallWindow);
408   window->call = g_object_ref (call);
409
410   filename = empathy_file_lookup ("empathy-call-window.glade", "src");
411   glade = empathy_glade_get_file (filename,
412       "window",
413       NULL,
414       "window", &window->window,
415       "status_label", &window->status_label,
416       "start_call_button", &window->start_call_button,
417       "end_call_button", &window->end_call_button,
418       "input_volume_scale", &window->input_volume_scale,
419       "output_volume_scale", &window->output_volume_scale,
420       "input_mute_button", &window->input_mute_button,
421       "output_mute_button", &window->output_mute_button,
422       "preview_video_frame", &window->preview_video_frame,
423       "output_video_frame", &window->output_video_frame,
424       "video_button", &window->video_button,
425       NULL);
426   g_free (filename);
427
428   empathy_glade_connect (glade,
429       window,
430       "window", "destroy", call_window_destroy_cb,
431       "window", "delete_event", call_window_delete_event_cb,
432       "input_mute_button", "toggled", call_window_input_mute_button_toggled_cb,
433       "output_mute_button", "toggled", call_window_output_mute_button_toggled_cb,
434       "output_volume_scale", "value-changed", call_window_output_volume_changed_cb,
435       "start_call_button", "clicked", call_window_start_call_button_clicked_cb,
436       "end_call_button", "clicked", call_window_end_call_button_clicked_cb,
437       "video_button", "toggled", call_window_video_button_toggled_cb,
438       NULL);
439
440   g_object_unref (glade);
441
442   /* Output video label */
443   window->output_video_label = g_object_ref (gtk_label_new (_("No video output")));
444   gtk_container_add (GTK_CONTAINER (window->output_video_frame),
445       window->output_video_label);
446   gtk_widget_show (window->output_video_label);
447
448   /* Output video socket */
449   window->output_video_socket = g_object_ref (gtk_socket_new ());
450   g_signal_connect (GTK_OBJECT (window->output_video_socket), "realize",
451       G_CALLBACK (call_window_socket_realized_cb), window);
452   gtk_widget_show (window->output_video_socket);
453
454   /* Preview video socket */
455   window->preview_video_socket = g_object_ref (gtk_socket_new ());
456   g_signal_connect (GTK_OBJECT (window->preview_video_socket), "realize",
457       G_CALLBACK (call_window_socket_realized_cb), window);
458   gtk_container_add (GTK_CONTAINER (window->preview_video_frame),
459       window->preview_video_socket);
460   gtk_widget_show (window->preview_video_socket);
461
462   g_signal_connect_swapped (G_OBJECT (window->call), "notify",
463       G_CALLBACK (call_window_update),
464       window);
465
466   call_window_update (window);
467   gtk_widget_show (window->window);
468
469   return window->window;
470 }
471