diff options
author | Emilio Pozuelo Monfort <emilio.pozuelo@collabora.co.uk> | 2011-05-23 20:12:34 +0800 |
---|---|---|
committer | Emilio Pozuelo Monfort <emilio.pozuelo@collabora.co.uk> | 2011-06-09 17:20:08 +0800 |
commit | 9b81fd1bb7e9acee4fa68dd0b205593a2397761c (patch) | |
tree | 6fa999d488e8b1fbe98bc7e48d22184b90f63749 /src/empathy-call-window.c | |
parent | f6a73795877708151ae8ea751553d4cebd23b968 (diff) | |
download | gsoc2013-empathy-9b81fd1bb7e9acee4fa68dd0b205593a2397761c.tar gsoc2013-empathy-9b81fd1bb7e9acee4fa68dd0b205593a2397761c.tar.gz gsoc2013-empathy-9b81fd1bb7e9acee4fa68dd0b205593a2397761c.tar.bz2 gsoc2013-empathy-9b81fd1bb7e9acee4fa68dd0b205593a2397761c.tar.lz gsoc2013-empathy-9b81fd1bb7e9acee4fa68dd0b205593a2397761c.tar.xz gsoc2013-empathy-9b81fd1bb7e9acee4fa68dd0b205593a2397761c.tar.zst gsoc2013-empathy-9b81fd1bb7e9acee4fa68dd0b205593a2397761c.zip |
CallWindow: show 'On hold' in the statusbar when appropriate
Diffstat (limited to 'src/empathy-call-window.c')
-rw-r--r-- | src/empathy-call-window.c | 41 |
1 files changed, 38 insertions, 3 deletions
diff --git a/src/empathy-call-window.c b/src/empathy-call-window.c index eadc77ca7..ec06c39fe 100644 --- a/src/empathy-call-window.c +++ b/src/empathy-call-window.c @@ -86,6 +86,7 @@ enum { typedef enum { CONNECTING, CONNECTED, + HELD, DISCONNECTED, REDIALING } CallState; @@ -2094,9 +2095,10 @@ empathy_call_window_update_timer (gpointer user_data) time_ = g_timer_elapsed (priv->timer, NULL); - /* Translators: number of minutes:seconds the caller has been connected */ - str = g_strdup_printf (_("Connected — %d:%02dm"), (int) time_ / 60, - (int) time_ % 60); + /* Translators: 'status - minutes:seconds' the caller has been connected */ + str = g_strdup_printf (_("%s — %d:%02dm"), + priv->call_state == HELD ? _("On hold") : _("Connected"), + (int) time_ / 60, (int) time_ % 60); empathy_call_window_status_message (self, str); g_free (str); @@ -2661,6 +2663,35 @@ empathy_call_window_bus_message (GstBus *bus, GstMessage *message, } static void +empathy_call_window_members_changed_cb (TpyCallChannel *call, + GHashTable *members, + EmpathyCallWindow *self) +{ + EmpathyCallWindowPriv *priv = GET_PRIV (self); + GHashTableIter iter; + gpointer key, value; + gboolean held = FALSE; + + g_hash_table_iter_init (&iter, members); + while (g_hash_table_iter_next (&iter, &key, &value)) + { + if (GPOINTER_TO_INT (value) & TPY_CALL_MEMBER_FLAG_HELD) + { + /* This assumes this is a 1-1 call, otherwise one participant + * putting the call on hold wouldn't mean the call is on hold + * for everyone. */ + held = TRUE; + break; + } + } + + if (held) + priv->call_state = HELD; + else if (priv->call_state == HELD) + priv->call_state = CONNECTED; +} + +static void call_handler_notify_call_cb (EmpathyCallHandler *handler, GParamSpec *spec, EmpathyCallWindow *self) @@ -2678,6 +2709,10 @@ call_handler_notify_call_cb (EmpathyCallHandler *handler, tp_g_signal_connect_object (call, "video-stream-error", G_CALLBACK (empathy_call_window_video_stream_error), self, 0); */ + + tp_g_signal_connect_object (call, "members-changed", + G_CALLBACK (empathy_call_window_members_changed_cb), self, 0); + g_object_unref (call); } |