aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXavier Claessens <xclaesse@src.gnome.org>2007-05-10 02:06:22 +0800
committerXavier Claessens <xclaesse@src.gnome.org>2007-05-10 02:06:22 +0800
commit747a707e7dda44eb3b84a1afb9ebdb150a629a9a (patch)
treea919b4247c9b3a80cb0089d9c26cbb22b2f9952e
parentbeb301da43c57e64e781b7f5c69b2bc667f46b1d (diff)
downloadgsoc2013-empathy-747a707e7dda44eb3b84a1afb9ebdb150a629a9a.tar
gsoc2013-empathy-747a707e7dda44eb3b84a1afb9ebdb150a629a9a.tar.gz
gsoc2013-empathy-747a707e7dda44eb3b84a1afb9ebdb150a629a9a.tar.bz2
gsoc2013-empathy-747a707e7dda44eb3b84a1afb9ebdb150a629a9a.tar.lz
gsoc2013-empathy-747a707e7dda44eb3b84a1afb9ebdb150a629a9a.tar.xz
gsoc2013-empathy-747a707e7dda44eb3b84a1afb9ebdb150a629a9a.tar.zst
gsoc2013-empathy-747a707e7dda44eb3b84a1afb9ebdb150a629a9a.zip
[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
-rw-r--r--libempathy-gtk/gossip-chat.c2
-rw-r--r--src/empathy-chat-main.c62
-rw-r--r--src/empathy-main.c2
3 files changed, 64 insertions, 2 deletions
diff --git a/libempathy-gtk/gossip-chat.c b/libempathy-gtk/gossip-chat.c
index 03f22514a..f5f6c415b 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 91dd510b4..9b961d554 100644
--- a/src/empathy-chat-main.c
+++ b/src/empathy-chat-main.c
@@ -33,14 +33,68 @@
#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",
diff --git a/src/empathy-main.c b/src/empathy-main.c
index afa1e119e..077e1a6b6 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,