From: Xavier Claessens Date: Wed, 9 May 2007 18:06:22 +0000 (+0000) Subject: [darcs-to-svn @ Ctr+Enter adds a new line in and empathy-chat exits 5sec after the... X-Git-Url: https://git.0d.be/?p=empathy.git;a=commitdiff_plain;h=747a707e7dda44eb3b84a1afb9ebdb150a629a9a [darcs-to-svn @ Ctr+Enter adds a new line in and empathy-chat exits 5sec after the last chat was closed] svn path=/trunk/; revision=39 --- diff --git a/libempathy-gtk/gossip-chat.c b/libempathy-gtk/gossip-chat.c index 03f22514..f5f6c415 100644 --- a/libempathy-gtk/gossip-chat.c +++ b/libempathy-gtk/gossip-chat.c @@ -562,7 +562,7 @@ chat_input_key_press_event_cb (GtkWidget *widget, text_view_sw = gtk_widget_get_parent (GTK_WIDGET (chat->view)); - if (IS_ENTER (event->keyval) && (event->state & GDK_SHIFT_MASK)) { + if (IS_ENTER (event->keyval) && (event->state & (GDK_SHIFT_MASK | GDK_CONTROL_MASK))) { /* Newline for shift-enter. */ return FALSE; } diff --git a/src/empathy-chat-main.c b/src/empathy-chat-main.c index 91dd510b..9b961d55 100644 --- a/src/empathy-chat-main.c +++ b/src/empathy-chat-main.c @@ -33,14 +33,68 @@ #include #include +#include #include #include #include #include +#define DEBUG_DOMAIN "ChatMain" + #define BUS_NAME "org.gnome.Empathy.Chat" #define OBJECT_PATH "/org/freedesktop/Telepathy/ChannelHandler" +/* Time to wait before exit, in seconds */ +#define EXIT_TIMEOUT 5 + + +static guint chat_count = 0; +static guint exit_timeout = 0; + + +static gboolean +exit_timeout_cb (gpointer user_data) +{ + gossip_debug (DEBUG_DOMAIN, "Timeout, exiting"); + + gtk_main_quit (); + + return FALSE; +} + +static void +exit_timeout_start (void) +{ + if (exit_timeout) { + return; + } + + exit_timeout = g_timeout_add (EXIT_TIMEOUT * 1000, + (GSourceFunc) exit_timeout_cb, + NULL); +} + +static void +exit_timeout_stop (void) +{ + if (exit_timeout) { + gossip_debug (DEBUG_DOMAIN, "Exit timeout canceled"); + g_source_remove (exit_timeout); + exit_timeout = 0; + } +} + +static void +chat_finalized_cb (gpointer user_data, + GossipChat *chat) +{ + chat_count--; + if (chat_count == 0) { + gossip_debug (DEBUG_DOMAIN, "No more chat, start exit timeout"); + exit_timeout_start (); + } +} + static void new_channel_cb (EmpathyChandler *chandler, TpConn *tp_conn, @@ -63,6 +117,13 @@ new_channel_cb (EmpathyChandler *chandler, contact = empathy_contact_list_get_from_handle (list, tp_chan->handle); chat = gossip_private_chat_new_with_channel (contact, tp_chan); + g_object_weak_ref (G_OBJECT (chat), + (GWeakNotify) chat_finalized_cb, + NULL); + + exit_timeout_stop (); + chat_count++; + gossip_chat_present (GOSSIP_CHAT (chat)); g_object_unref (mc); @@ -80,6 +141,7 @@ main (int argc, char *argv[]) gtk_init (&argc, &argv); + exit_timeout_start (); chandler = empathy_chandler_new (BUS_NAME, OBJECT_PATH); g_signal_connect (chandler, "new-channel", diff --git a/src/empathy-main.c b/src/empathy-main.c index afa1e119..077e1a6b 100644 --- a/src/empathy-main.c +++ b/src/empathy-main.c @@ -41,7 +41,7 @@ #include "empathy-filter.h" -#define DEBUG_DOMAIN "Empathy" +#define DEBUG_DOMAIN "EmpathyMain" static void error_cb (MissionControl *mc, GError *error,