aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2012-09-28 16:42:44 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2012-11-02 19:35:50 +0800
commit24296efe62fd601dbff4ad92726d2fa6ded17e8c (patch)
tree5cebb9d34b4a2fc6c14fe6471c0a1676dd4c0d5a
parentb42c4d7fe379f92ee007381422d2e66f5de88a91 (diff)
downloadgsoc2013-empathy-24296efe62fd601dbff4ad92726d2fa6ded17e8c.tar
gsoc2013-empathy-24296efe62fd601dbff4ad92726d2fa6ded17e8c.tar.gz
gsoc2013-empathy-24296efe62fd601dbff4ad92726d2fa6ded17e8c.tar.bz2
gsoc2013-empathy-24296efe62fd601dbff4ad92726d2fa6ded17e8c.tar.lz
gsoc2013-empathy-24296efe62fd601dbff4ad92726d2fa6ded17e8c.tar.xz
gsoc2013-empathy-24296efe62fd601dbff4ad92726d2fa6ded17e8c.tar.zst
gsoc2013-empathy-24296efe62fd601dbff4ad92726d2fa6ded17e8c.zip
empathy-call: inhibit when we are in a call
https://bugzilla.gnome.org/show_bug.cgi?id=684979
-rw-r--r--src/empathy-call.c29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/empathy-call.c b/src/empathy-call.c
index 2d6aab0b1..348866f86 100644
--- a/src/empathy-call.c
+++ b/src/empathy-call.c
@@ -54,6 +54,7 @@
static GtkApplication *app = NULL;
static gboolean activated = FALSE;
static gboolean use_timer = TRUE;
+static guint inhibit_id = 0;
static EmpathyCallFactory *call_factory = NULL;
@@ -107,6 +108,32 @@ incoming_call_cb (EmpathyCallFactory *factory,
}
static void
+call_window_inhibit_cb (EmpathyCallWindow *window,
+ gboolean inhibit,
+ gpointer user_data)
+{
+ if (inhibit)
+ {
+ if (inhibit_id != 0)
+ return;
+
+ inhibit_id = gtk_application_inhibit (GTK_APPLICATION (app),
+ GTK_WINDOW (window),
+ GTK_APPLICATION_INHIBIT_LOGOUT & GTK_APPLICATION_INHIBIT_SWITCH &
+ GTK_APPLICATION_INHIBIT_SUSPEND & GTK_APPLICATION_INHIBIT_IDLE,
+ _("In a call"));
+ }
+ else
+ {
+ if (inhibit_id == 0)
+ return;
+
+ gtk_application_uninhibit (GTK_APPLICATION (app), inhibit_id);
+ inhibit_id = 0;
+ }
+}
+
+static void
new_call_handler_cb (EmpathyCallFactory *factory,
EmpathyCallHandler *handler,
gboolean outgoing,
@@ -133,6 +160,8 @@ new_call_handler_cb (EmpathyCallFactory *factory,
g_application_hold (G_APPLICATION (app));
g_signal_connect (window, "destroy",
G_CALLBACK (call_window_destroyed_cb), contact);
+ g_signal_connect (window, "inhibit",
+ G_CALLBACK (call_window_inhibit_cb), NULL);
gtk_widget_show (GTK_WIDGET (window));
}