]> git.0d.be Git - empathy.git/commitdiff
[darcs-to-svn @ Ctr+Enter adds a new line in and empathy-chat exits 5sec after the...
authorXavier Claessens <xclaesse@src.gnome.org>
Wed, 9 May 2007 18:06:22 +0000 (18:06 +0000)
committerXavier Claessens <xclaesse@src.gnome.org>
Wed, 9 May 2007 18:06:22 +0000 (18:06 +0000)
svn path=/trunk/; revision=39

libempathy-gtk/gossip-chat.c
src/empathy-chat-main.c
src/empathy-main.c

index 03f22514af87584257f4ddc5472636f07bad7b6d..f5f6c415bce76db784ec1245f5d46925d8aad10a 100644 (file)
@@ -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;
        }
index 91dd510b457350da8202d4a5daea1050de4bac7f..9b961d5549ecd65976e70b1c2b98e4f648a08d0b 100644 (file)
 #include <libmissioncontrol/mc-account.h>
 
 #include <libempathy/gossip-contact.h>
+#include <libempathy/gossip-debug.h>
 #include <libempathy/empathy-chandler.h>
 #include <libempathy/empathy-contact-manager.h>
 #include <libempathy/empathy-contact-list.h>
 #include <libempathy-gtk/gossip-private-chat.h>
 
+#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",
index afa1e119e9c553df083cb5b20301df86d4c17bb0..077e1a6b6fa907cbd99beb370636d30114cba66b 100644 (file)
@@ -41,7 +41,7 @@
 
 #include "empathy-filter.h"
 
-#define DEBUG_DOMAIN "Empathy"
+#define DEBUG_DOMAIN "EmpathyMain"
 
 static void error_cb              (MissionControl *mc,
                                   GError         *error,