diff options
author | Jonathan Tellier <jonathan.tellier@gmail.com> | 2009-05-21 01:49:02 +0800 |
---|---|---|
committer | jtellier <jonathan.tellier@collabora.co.uk> | 2009-06-12 20:59:10 +0800 |
commit | 62ed123c83ff2de84622abe1e2cb972a409c43ae (patch) | |
tree | 5b98ebb58a945c9b16539942cb225bf047f74b70 /libempathy | |
parent | efd01a1ef0a6be5552cc370e0870c9106fdc2908 (diff) | |
download | gsoc2013-empathy-62ed123c83ff2de84622abe1e2cb972a409c43ae.tar gsoc2013-empathy-62ed123c83ff2de84622abe1e2cb972a409c43ae.tar.gz gsoc2013-empathy-62ed123c83ff2de84622abe1e2cb972a409c43ae.tar.bz2 gsoc2013-empathy-62ed123c83ff2de84622abe1e2cb972a409c43ae.tar.lz gsoc2013-empathy-62ed123c83ff2de84622abe1e2cb972a409c43ae.tar.xz gsoc2013-empathy-62ed123c83ff2de84622abe1e2cb972a409c43ae.tar.zst gsoc2013-empathy-62ed123c83ff2de84622abe1e2cb972a409c43ae.zip |
When no video is received or sent we show contacts' avatars instead of showing
black widgets.
Diffstat (limited to 'libempathy')
-rw-r--r-- | libempathy/empathy-call-handler.c | 22 | ||||
-rw-r--r-- | libempathy/empathy-tp-call.c | 37 | ||||
-rw-r--r-- | libempathy/empathy-tp-call.h | 2 |
3 files changed, 61 insertions, 0 deletions
diff --git a/libempathy/empathy-call-handler.c b/libempathy/empathy-call-handler.c index 90df179bc..6d7f35102 100644 --- a/libempathy/empathy-call-handler.c +++ b/libempathy/empathy-call-handler.c @@ -43,6 +43,7 @@ enum { SINK_PAD_ADDED, REQUEST_RESOURCE, CLOSED, + VIDEO_STREAM_CHANGED, LAST_SIGNAL }; @@ -71,6 +72,13 @@ typedef struct { #define GET_PRIV(obj) EMPATHY_GET_PRIV (obj, EmpathyCallHandler) static void +empathy_call_handler_call_video_stream_cb (EmpathyTpCall *call, + GParamSpec *property, EmpathyCallHandler *self) +{ + g_signal_emit (G_OBJECT (self), signals[VIDEO_STREAM_CHANGED], 0); +} + +static void empathy_call_handler_dispose (GObject *object) { EmpathyCallHandlerPriv *priv = GET_PRIV (object); @@ -93,6 +101,8 @@ empathy_call_handler_dispose (GObject *object) if (priv->call != NULL) { empathy_tp_call_close (priv->call); + g_signal_handlers_disconnect_by_func (priv->call, + empathy_call_handler_call_video_stream_cb, object); g_object_unref (priv->call); } @@ -262,6 +272,13 @@ empathy_call_handler_class_init (EmpathyCallHandlerClass *klass) g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); + + signals[VIDEO_STREAM_CHANGED] = + g_signal_new ("video-stream-changed", G_TYPE_FROM_CLASS (klass), + G_SIGNAL_RUN_LAST, 0, NULL, NULL, + g_cclosure_marshal_VOID__VOID, + G_TYPE_NONE, + 0); } /** @@ -514,6 +531,9 @@ empathy_call_handler_request_cb (EmpathyDispatchOperation *operation, g_object_ref (priv->call); + g_signal_connect (priv->call, "notify::video-stream", + G_CALLBACK (empathy_call_handler_call_video_stream_cb), self); + empathy_call_handler_start_tpfs (self); empathy_tp_call_to (priv->call, priv->contact, @@ -536,6 +556,8 @@ empathy_call_handler_start_call (EmpathyCallHandler *handler) if (priv->call != NULL) { empathy_call_handler_start_tpfs (handler); + g_signal_connect (priv->call, "notify::video-stream", + G_CALLBACK (empathy_call_handler_call_video_stream_cb), handler); empathy_tp_call_accept_incoming_call (priv->call); return; } diff --git a/libempathy/empathy-tp-call.c b/libempathy/empathy-tp-call.c index 2971e0ffc..bf3fe778c 100644 --- a/libempathy/empathy-tp-call.c +++ b/libempathy/empathy-tp-call.c @@ -672,3 +672,40 @@ empathy_tp_call_has_dtmf (EmpathyTpCall *call) TP_IFACE_QUARK_CHANNEL_INTERFACE_DTMF); } +/** + * empathy_tp_call_is_receiving_video: + * @call: the call + * + * Indicates if the call is receiving video or not. + * + * Returns: %TRUE if the call is currently receiving video, %FALSE otherwise. + */ +gboolean +empathy_tp_call_is_receiving_video (EmpathyTpCall *call) +{ + EmpathyTpCallPriv *priv = GET_PRIV (call); + + g_return_val_if_fail (EMPATHY_IS_TP_CALL (call), FALSE); + + return priv->video->direction == TP_MEDIA_STREAM_DIRECTION_RECEIVE || + priv->video->direction == TP_MEDIA_STREAM_DIRECTION_BIDIRECTIONAL; +} + +/** + * empathy_tp_call_is_sending_video: + * @call: the call + * + * Indicates if the call is sending video or not. + * + * Returns: %TRUE if the call is currently sending video, %FALSE otherwise. + */ +gboolean +empathy_tp_call_is_sending_video (EmpathyTpCall *call) +{ + EmpathyTpCallPriv *priv = GET_PRIV (call); + + g_return_val_if_fail (EMPATHY_IS_TP_CALL (call), FALSE); + + return priv->video->direction == TP_MEDIA_STREAM_DIRECTION_SEND || + priv->video->direction == TP_MEDIA_STREAM_DIRECTION_BIDIRECTIONAL; +} diff --git a/libempathy/empathy-tp-call.h b/libempathy/empathy-tp-call.h index 406ed1c3f..a00fe3e40 100644 --- a/libempathy/empathy-tp-call.h +++ b/libempathy/empathy-tp-call.h @@ -85,6 +85,8 @@ void empathy_tp_call_request_video_stream_direction (EmpathyTpCall *call, void empathy_tp_call_start_tone (EmpathyTpCall *call, TpDTMFEvent event); void empathy_tp_call_stop_tone (EmpathyTpCall *call); gboolean empathy_tp_call_has_dtmf (EmpathyTpCall *call); +gboolean empathy_tp_call_is_receiving_video (EmpathyTpCall *call); +gboolean empathy_tp_call_is_sending_video (EmpathyTpCall *call); G_END_DECLS |