aboutsummaryrefslogtreecommitdiffstats
path: root/src/empathy-call.c
diff options
context:
space:
mode:
authorEmilio Pozuelo Monfort <emilio.pozuelo@collabora.co.uk>2011-07-08 19:46:33 +0800
committerEmilio Pozuelo Monfort <emilio.pozuelo@collabora.co.uk>2011-09-08 19:26:25 +0800
commitd5136f90339362d53d780700808dc055fc0a7121 (patch)
tree32ec6c397399c8d22bee88ffd1f1474cbbc1ceff /src/empathy-call.c
parent44731ebba06458462f5c26fed8fd0abab30e7450 (diff)
downloadgsoc2013-empathy-d5136f90339362d53d780700808dc055fc0a7121.tar
gsoc2013-empathy-d5136f90339362d53d780700808dc055fc0a7121.tar.gz
gsoc2013-empathy-d5136f90339362d53d780700808dc055fc0a7121.tar.bz2
gsoc2013-empathy-d5136f90339362d53d780700808dc055fc0a7121.tar.lz
gsoc2013-empathy-d5136f90339362d53d780700808dc055fc0a7121.tar.xz
gsoc2013-empathy-d5136f90339362d53d780700808dc055fc0a7121.tar.zst
gsoc2013-empathy-d5136f90339362d53d780700808dc055fc0a7121.zip
Reuse Call windows when possible
If we have a call window opened for a contact and we get an incoming call from the same person, use the existing window instead of creating another one. Based on a patch from Jonathan Tellier. https://bugzilla.gnome.org/show_bug.cgi?id=580794
Diffstat (limited to 'src/empathy-call.c')
-rw-r--r--src/empathy-call.c43
1 files changed, 37 insertions, 6 deletions
diff --git a/src/empathy-call.c b/src/empathy-call.c
index 1f60217db..a5e463ba3 100644
--- a/src/empathy-call.c
+++ b/src/empathy-call.c
@@ -34,6 +34,8 @@
#include <telepathy-yell/telepathy-yell.h>
+#include <libempathy/empathy-client-factory.h>
+
#include <libempathy-gtk/empathy-ui-utils.h>
#include "empathy-call-window.h"
@@ -55,6 +57,19 @@ static gboolean use_timer = TRUE;
static EmpathyCallFactory *call_factory = NULL;
+/* An EmpathyContact -> EmpathyCallWindow hash table for all existing
+ * Call windows. We own a ref on the EmpathyContacts. */
+static GHashTable *call_windows;
+
+static void
+call_window_destroyed_cb (GtkWidget *window,
+ EmpathyContact *contact)
+{
+ g_hash_table_remove (call_windows, contact);
+
+ g_application_release (G_APPLICATION (app));
+}
+
static void
new_call_handler_cb (EmpathyCallFactory *factory,
EmpathyCallHandler *handler,
@@ -62,17 +77,29 @@ new_call_handler_cb (EmpathyCallFactory *factory,
gpointer user_data)
{
EmpathyCallWindow *window;
+ EmpathyContact *contact;
- DEBUG ("Create a new call window");
+ DEBUG ("Show the call window");
- window = empathy_call_window_new (handler);
+ g_object_get (handler, "target-contact", &contact, NULL);
- g_application_hold (G_APPLICATION (app));
+ window = g_hash_table_lookup (call_windows, contact);
+
+ if (window != NULL)
+ {
+ empathy_call_window_present (window, handler);
+ }
+ else
+ {
+ window = empathy_call_window_new (handler);
- g_signal_connect_swapped (window, "destroy",
- G_CALLBACK (g_application_release), app);
+ g_hash_table_insert (call_windows, g_object_ref (contact), window);
+ g_application_hold (G_APPLICATION (app));
+ g_signal_connect (window, "destroy",
+ G_CALLBACK (call_window_destroyed_cb), contact);
- gtk_widget_show (GTK_WIDGET (window));
+ gtk_widget_show (GTK_WIDGET (window));
+ }
}
static void
@@ -172,6 +199,9 @@ main (int argc,
use_timer = FALSE;
}
+ call_windows = g_hash_table_new_full (g_direct_hash, g_direct_equal,
+ g_object_unref, NULL);
+
/* the inactivity timeout can only be set while the application is held */
g_application_hold (G_APPLICATION (app));
g_application_set_inactivity_timeout (G_APPLICATION (app), TIMEOUT * 1000);
@@ -179,6 +209,7 @@ main (int argc,
retval = g_application_run (G_APPLICATION (app), argc, argv);
+ g_hash_table_unref (call_windows);
g_object_unref (app);
tp_clear_object (&call_factory);