aboutsummaryrefslogtreecommitdiffstats
path: root/src/empathy-call-window.c
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-07-12 18:56:55 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-07-12 23:10:33 +0800
commitf93c1b261ed44eff2bbaa99d8c10ebd39682ca27 (patch)
tree977934286392d0687431b76e17d7378e205290ec /src/empathy-call-window.c
parent84307490fb67c43c291627d22381f542f6824206 (diff)
downloadgsoc2013-empathy-f93c1b261ed44eff2bbaa99d8c10ebd39682ca27.tar
gsoc2013-empathy-f93c1b261ed44eff2bbaa99d8c10ebd39682ca27.tar.gz
gsoc2013-empathy-f93c1b261ed44eff2bbaa99d8c10ebd39682ca27.tar.bz2
gsoc2013-empathy-f93c1b261ed44eff2bbaa99d8c10ebd39682ca27.tar.lz
gsoc2013-empathy-f93c1b261ed44eff2bbaa99d8c10ebd39682ca27.tar.xz
gsoc2013-empathy-f93c1b261ed44eff2bbaa99d8c10ebd39682ca27.tar.zst
gsoc2013-empathy-f93c1b261ed44eff2bbaa99d8c10ebd39682ca27.zip
call-window: Add 'details' pane containing encoding codecs (#599166)
The details pane has been inspired from totem's 'Properties' pane.
Diffstat (limited to 'src/empathy-call-window.c')
-rw-r--r--src/empathy-call-window.c63
1 files changed, 63 insertions, 0 deletions
diff --git a/src/empathy-call-window.c b/src/empathy-call-window.c
index a8d1c40fa..9a3783f8a 100644
--- a/src/empathy-call-window.c
+++ b/src/empathy-call-window.c
@@ -167,6 +167,11 @@ struct _EmpathyCallWindowPriv
GtkWidget *dtmf_panel;
+ /* Details vbox */
+ GtkWidget *details_vbox;
+ GtkWidget *vcodec_encoding_label;
+ GtkWidget *acodec_encoding_label;
+
GstElement *video_input;
GstElement *audio_input;
GstElement *audio_output;
@@ -1039,6 +1044,9 @@ empathy_call_window_init (EmpathyCallWindow *self)
"camera_on", &priv->tool_button_camera_on,
"action_camera_off", &priv->action_camera,
"action_camera_preview", &priv->action_camera_preview,
+ "details_vbox", &priv->details_vbox,
+ "vcodec_encoding_label", &priv->vcodec_encoding_label,
+ "acodec_encoding_label", &priv->acodec_encoding_label,
NULL);
g_free (filename);
@@ -1163,6 +1171,8 @@ empathy_call_window_init (EmpathyCallWindow *self)
gtk_widget_set_sensitive (priv->dtmf_panel, FALSE);
+ empathy_sidebar_add_page (EMPATHY_SIDEBAR (priv->sidebar), _("Details"),
+ priv->details_vbox);
gtk_widget_show_all (top_vbox);
@@ -1329,6 +1339,51 @@ empathy_call_window_setup_avatars (EmpathyCallWindow *self,
}
static void
+update_send_codec (EmpathyCallWindow *self,
+ gboolean audio)
+{
+ EmpathyCallWindowPriv *priv = GET_PRIV (self);
+ FsCodec *codec;
+ GtkWidget *widget;
+
+ if (audio)
+ {
+ codec = empathy_call_handler_get_send_audio_codec (priv->handler);
+ widget = priv->acodec_encoding_label;
+ }
+ else
+ {
+ codec = empathy_call_handler_get_send_video_codec (priv->handler);
+ widget = priv->vcodec_encoding_label;
+ }
+
+ if (codec == NULL)
+ return;
+
+ gtk_label_set_text (GTK_LABEL (widget), codec->encoding_name);
+}
+
+static void
+send_audio_codec_notify_cb (GObject *object,
+ GParamSpec *pspec,
+ gpointer user_data)
+{
+ EmpathyCallWindow *self = user_data;
+
+ update_send_codec (self, TRUE);
+}
+
+static void
+send_video_codec_notify_cb (GObject *object,
+ GParamSpec *pspec,
+ gpointer user_data)
+{
+ EmpathyCallWindow *self = user_data;
+
+ update_send_codec (self, FALSE);
+}
+
+static void
empathy_call_window_constructed (GObject *object)
{
EmpathyCallWindow *self = EMPATHY_CALL_WINDOW (object);
@@ -1352,6 +1407,14 @@ empathy_call_window_constructed (GObject *object)
}
/* If call has InitialVideo, the preview will be started once the call has
* been started (start_call()). */
+
+ update_send_codec (self, TRUE);
+ update_send_codec (self, FALSE);
+
+ tp_g_signal_connect_object (priv->handler, "notify::send-audio-codec",
+ G_CALLBACK (send_audio_codec_notify_cb), self, 0);
+ tp_g_signal_connect_object (priv->handler, "notify::send-video-codec",
+ G_CALLBACK (send_video_codec_notify_cb), self, 0);
}
static void empathy_call_window_dispose (GObject *object);