[empathy] empathy-call: inhibit when we are in a call
- From: Guillaume Desmottes <gdesmott src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [empathy] empathy-call: inhibit when we are in a call
- Date: Fri, 2 Nov 2012 11:42:07 +0000 (UTC)
commit 24296efe62fd601dbff4ad92726d2fa6ded17e8c
Author: Guillaume Desmottes <guillaume desmottes collabora co uk>
Date: Fri Sep 28 10:42:44 2012 +0200
empathy-call: inhibit when we are in a call
https://bugzilla.gnome.org/show_bug.cgi?id=684979
src/empathy-call.c | 29 +++++++++++++++++++++++++++++
1 files changed, 29 insertions(+), 0 deletions(-)
---
diff --git a/src/empathy-call.c b/src/empathy-call.c
index 2d6aab0..348866f 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));
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]