]> git.0d.be Git - empathy.git/blobdiff - libempathy-gtk/empathy-status-icon.c
Remove EmpathyPresence object and have "presence" and "presence-message" properties...
[empathy.git] / libempathy-gtk / empathy-status-icon.c
index 654cbd50db80836e42eb1cef9e626a4b791115a8..0cffeb1b4d701d7d7ceee85f48ed2d86748e6bb4 100644 (file)
@@ -2,20 +2,19 @@
 /*
  * Copyright (C) 2007 Collabora Ltd.
  *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License as
- * published by the Free Software Foundation; either version 2 of the
- * License, or (at your option) any later version.
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
  *
- * This program is distributed in the hope that it will be useful,
+ * This library is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * General Public License for more details.
+ * Lesser General Public License for more details.
  *
- * You should have received a copy of the GNU General Public
- * License along with this program; if not, write to the
- * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- * Boston, MA 02111-1307, USA.
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
  * 
  * Authors: Xavier Claessens <xclaesse@gmail.com>
  */
 #include <libempathy/empathy-tp-chat.h>
 #include <libempathy/empathy-debug.h>
 #include <libempathy/empathy-utils.h>
-#include <libempathy/empathy-conf.h>
 #include <libempathy/empathy-idle.h>
 #include <libempathy/empathy-filter.h>
 
 #include "empathy-status-icon.h"
 #include "empathy-contact-dialogs.h"
 #include "empathy-presence-chooser.h"
+#include "empathy-conf.h"
 #include "empathy-preferences.h"
 #include "empathy-ui-utils.h"
 #include "empathy-accounts-dialog.h"
 #include "empathy-images.h"
+#include "empathy-new-message-dialog.h"
 
 
 #define GET_PRIV(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), \
@@ -100,6 +100,9 @@ static void       status_icon_message_received_cb (EmpathyTpChat          *tp_ch
 static void       status_icon_idle_notify_cb      (EmpathyStatusIcon      *icon);
 static void       status_icon_update_tooltip      (EmpathyStatusIcon      *icon);
 static void       status_icon_set_from_state      (EmpathyStatusIcon      *icon);
+static void       status_icon_set_visibility      (EmpathyStatusIcon      *icon,
+                                                  gboolean                visible,
+                                                  gboolean                store);
 static void       status_icon_toggle_visibility   (EmpathyStatusIcon      *icon);
 static void       status_icon_activate_cb         (GtkStatusIcon          *status_icon,
                                                   EmpathyStatusIcon      *icon);
@@ -117,9 +120,12 @@ static void       status_icon_quit_cb             (GtkWidget              *windo
                                                   EmpathyStatusIcon      *icon);
 static void       status_icon_show_hide_window_cb (GtkWidget              *widget,
                                                   EmpathyStatusIcon      *icon);
-static void       status_icon_local_pending_cb    (EmpathyContactManager  *manager,
-                                                  EmpathyContact          *contact,
+static void       status_icon_pendings_changed_cb (EmpathyContactManager  *manager,
+                                                  EmpathyContact         *contact,
+                                                  EmpathyContact         *actor,
+                                                  guint                   reason,
                                                   gchar                  *message,
+                                                  gboolean                is_pending,
                                                   EmpathyStatusIcon      *icon);
 static void       status_icon_event_subscribe_cb  (StatusIconEvent        *event);
 static void       status_icon_event_flash_state_cb (StatusIconEvent       *event);
@@ -134,6 +140,32 @@ static void       status_icon_event_free          (StatusIconEvent        *event
 
 G_DEFINE_TYPE (EmpathyStatusIcon, empathy_status_icon, G_TYPE_OBJECT);
 
+static void
+status_icon_notify_use_nm_cb (EmpathyConf  *conf,
+                             const gchar *key,
+                             gpointer     user_data)
+{
+       EmpathyStatusIconPriv *priv = GET_PRIV (user_data);
+       gboolean               use_nm;
+
+       if (empathy_conf_get_bool (conf, key, &use_nm)) {
+               empathy_idle_set_use_nm (priv->idle, use_nm);
+       }
+}
+
+static void
+status_icon_notify_visibility_cb (EmpathyConf *conf,
+                                 const gchar *key,
+                                 gpointer     user_data)
+{
+       EmpathyStatusIcon *icon = user_data;
+       gboolean           hidden = FALSE;
+
+       if (empathy_conf_get_bool (conf, key, &hidden)) {
+               status_icon_set_visibility (icon, !hidden, FALSE);
+       }
+}
+
 static void
 empathy_status_icon_class_init (EmpathyStatusIconClass *klass)
 {
@@ -148,20 +180,38 @@ static void
 empathy_status_icon_init (EmpathyStatusIcon *icon)
 {
        EmpathyStatusIconPriv *priv;
-       GList                 *pending, *l;
+       GList                 *pendings, *l;
+       gboolean               use_nm;
 
        priv = GET_PRIV (icon);
 
        priv->icon = gtk_status_icon_new ();
-       priv->idle = empathy_idle_new ();
        priv->manager = empathy_contact_manager_new ();
        priv->mc = empathy_mission_control_new ();
-       priv->text_filter = empathy_filter_new ("org.gnome.Empathy.Chat",
-                                               "/org/freedesktop/Telepathy/Filter",
+       priv->text_filter = empathy_filter_new ("org.gnome.Empathy.ChatFilter",
+                                               "/org/gnome/Empathy/ChatFilter",
                                                TP_IFACE_CHANNEL_TYPE_TEXT,
                                                MC_FILTER_PRIORITY_DIALOG,
                                                MC_FILTER_FLAG_INCOMING);
 
+       /* Setup EmpathyIdle */
+       priv->idle = empathy_idle_new ();
+       empathy_conf_get_bool (empathy_conf_get (),
+                              EMPATHY_PREFS_USE_NM,
+                              &use_nm);
+       empathy_conf_notify_add (empathy_conf_get (),
+                                EMPATHY_PREFS_USE_NM,
+                                status_icon_notify_use_nm_cb,
+                                icon);
+       empathy_idle_set_auto_away (priv->idle, TRUE);
+       empathy_idle_set_use_nm (priv->idle, use_nm);
+
+       /* make icon listen and respond to MAIN_WINDOW_HIDDEN changes */
+       empathy_conf_notify_add (empathy_conf_get (),
+                                EMPATHY_PREFS_UI_MAIN_WINDOW_HIDDEN,
+                                status_icon_notify_visibility_cb,
+                                icon);
+
        status_icon_create_menu (icon);
        status_icon_idle_notify_cb (icon);
 
@@ -177,21 +227,25 @@ empathy_status_icon_init (EmpathyStatusIcon *icon)
        g_signal_connect (priv->icon, "popup-menu",
                          G_CALLBACK (status_icon_popup_menu_cb),
                          icon);
-       g_signal_connect (priv->manager, "local-pending",
-                         G_CALLBACK (status_icon_local_pending_cb),
+       g_signal_connect (priv->manager, "pendings-changed",
+                         G_CALLBACK (status_icon_pendings_changed_cb),
                          icon);
 
-       pending = empathy_contact_list_get_local_pending (EMPATHY_CONTACT_LIST (priv->manager));
-       for (l = pending; l; l = l->next) {
-               EmpathyContactListInfo *info;
+       pendings = empathy_contact_list_get_pendings (EMPATHY_CONTACT_LIST (priv->manager));
+       for (l = pendings; l; l = l->next) {
+               EmpathyPendingInfo *info;
 
                info = l->data;
-               status_icon_local_pending_cb (priv->manager,
-                                             info->contact,
-                                             info->message,
-                                             icon);
+               status_icon_pendings_changed_cb (priv->manager,
+                                                info->member,
+                                                info->actor,
+                                                0,
+                                                info->message,
+                                                TRUE,
+                                                icon);
+               empathy_pending_info_free (info);
        }
-       g_list_free (pending);
+       g_list_free (pendings);
 }
 
 static void
@@ -221,7 +275,6 @@ empathy_status_icon_new (GtkWindow *window)
        EmpathyStatusIconPriv *priv;
        EmpathyStatusIcon     *icon;
        gboolean               should_hide;
-       gboolean               visible;
 
        g_return_val_if_fail (GTK_IS_WINDOW (window), NULL);
 
@@ -237,10 +290,9 @@ empathy_status_icon_new (GtkWindow *window)
        empathy_conf_get_bool (empathy_conf_get (),
                              EMPATHY_PREFS_UI_MAIN_WINDOW_HIDDEN,
                              &should_hide);
-       visible = empathy_window_get_is_visible (window);
 
-       if ((!should_hide && !visible) || (should_hide && visible)) {
-               status_icon_toggle_visibility (icon);
+       if (gtk_window_is_active (priv->window) == should_hide) {
+               status_icon_set_visibility (icon, !should_hide, FALSE);
        }
 
        return icon;
@@ -259,9 +311,11 @@ status_icon_filter_new_channel (EmpathyFilter     *filter,
 
        priv = GET_PRIV (icon);
 
-       empathy_debug (DEBUG_DOMAIN, "New text channel to be filtered");
-
        account = mission_control_get_account_for_connection (priv->mc, tp_conn, NULL);
+
+       empathy_debug (DEBUG_DOMAIN, "New text channel to be filtered for contact %s",
+                      empathy_inspect_channel (account, tp_chan));
+
        tp_chat = empathy_tp_chat_new (account, tp_chan);
        g_object_set_data (G_OBJECT (tp_chat), "filter", filter);
        g_object_unref (account);
@@ -318,7 +372,7 @@ status_icon_idle_notify_cb (EmpathyStatusIcon *icon)
        if (flash_state != MC_PRESENCE_UNSET) {
                const gchar *icon_name;
 
-               icon_name = empathy_icon_name_for_presence_state (flash_state);
+               icon_name = empathy_icon_name_for_presence (flash_state);
                if (!priv->flash_state_event) {
                        /* We are now flashing */
                        priv->flash_state_event = status_icon_event_new (icon, icon_name, NULL);
@@ -375,30 +429,30 @@ status_icon_set_from_state (EmpathyStatusIcon *icon)
        priv = GET_PRIV (icon);
 
        state = empathy_idle_get_state (priv->idle);
-       icon_name = empathy_icon_name_for_presence_state (state);
+       icon_name = empathy_icon_name_for_presence (state);
        gtk_status_icon_set_from_icon_name (priv->icon, icon_name);
 }
 
 static void
-status_icon_toggle_visibility (EmpathyStatusIcon *icon)
+status_icon_set_visibility (EmpathyStatusIcon *icon,
+                           gboolean           visible,
+                           gboolean           store)
 {
        EmpathyStatusIconPriv *priv;
-       gboolean               visible;
 
        priv = GET_PRIV (icon);
 
-       visible = gtk_window_has_toplevel_focus (GTK_WINDOW (priv->window));
+       if (store) {
+               empathy_conf_set_bool (empathy_conf_get (),
+                                      EMPATHY_PREFS_UI_MAIN_WINDOW_HIDDEN, !visible);
+       }
 
-       if (visible) {
+       if (!visible) {
                empathy_window_iconify (priv->window, priv->icon);
-               empathy_conf_set_bool (empathy_conf_get (),
-                                     EMPATHY_PREFS_UI_MAIN_WINDOW_HIDDEN, TRUE);
        } else {
                GList *accounts;
 
                empathy_window_present (GTK_WINDOW (priv->window), TRUE);
-               empathy_conf_set_bool (empathy_conf_get (),
-                                     EMPATHY_PREFS_UI_MAIN_WINDOW_HIDDEN, FALSE);
        
                /* Show the accounts dialog if there is no enabled accounts */
                accounts = mc_accounts_list_by_enabled (TRUE);
@@ -412,6 +466,16 @@ status_icon_toggle_visibility (EmpathyStatusIcon *icon)
        }
 }
 
+static void
+status_icon_toggle_visibility (EmpathyStatusIcon *icon)
+{
+       EmpathyStatusIconPriv *priv = GET_PRIV (icon);
+       gboolean               visible;
+
+       visible = gtk_window_is_active (priv->window);
+       status_icon_set_visibility (icon, !visible, TRUE);
+}
+
 static void
 status_icon_activate_cb (GtkStatusIcon     *status_icon,
                         EmpathyStatusIcon *icon)
@@ -435,7 +499,7 @@ status_icon_delete_event_cb (GtkWidget         *widget,
                             GdkEvent          *event,
                             EmpathyStatusIcon *icon)
 {
-       status_icon_toggle_visibility (icon);
+       status_icon_set_visibility (icon, FALSE, TRUE);
 
        return TRUE;
 }
@@ -494,14 +558,11 @@ status_icon_create_menu (EmpathyStatusIcon *icon)
 
        empathy_glade_connect (glade,
                              icon,
+                             "tray_show_list", "toggled", status_icon_show_hide_window_cb,
                              "tray_new_message", "activate", status_icon_new_message_cb,
                              "tray_quit", "activate", status_icon_quit_cb,
                              NULL);
 
-       g_signal_connect (priv->show_window_item, "toggled",
-                         G_CALLBACK (status_icon_show_hide_window_cb),
-                         icon);
-
        g_object_unref (glade);
 }
 
@@ -513,7 +574,7 @@ status_icon_new_message_cb (GtkWidget         *widget,
 
        priv = GET_PRIV (icon);
 
-       //empathy_new_message_dialog_show (GTK_WINDOW (priv->window));
+       empathy_new_message_dialog_show (NULL);
 }
 
 static void
@@ -527,38 +588,51 @@ static void
 status_icon_show_hide_window_cb (GtkWidget         *widget,
                                 EmpathyStatusIcon *icon)
 {
-       status_icon_toggle_visibility (icon);
+       gboolean visible;
+
+       visible = gtk_check_menu_item_get_active (GTK_CHECK_MENU_ITEM (widget));
+       status_icon_set_visibility (icon, visible, TRUE);
 }
 
 static void
-status_icon_local_pending_cb (EmpathyContactManager *manager,
-                             EmpathyContact         *contact,
-                             gchar                 *message,
-                             EmpathyStatusIcon     *icon)
+status_icon_pendings_changed_cb (EmpathyContactManager *manager,
+                                EmpathyContact        *contact,
+                                EmpathyContact        *actor,
+                                guint                  reason,
+                                gchar                 *message,
+                                gboolean               is_pending,
+                                EmpathyStatusIcon     *icon)
 {
        EmpathyStatusIconPriv *priv;
        StatusIconEvent       *event;
-       gchar                 *str;
+       GString               *str;
        GList                 *l;
 
        priv = GET_PRIV (icon);
 
+       if (!is_pending) {
+               /* FIXME: We should remove the event */
+               return;
+       }
+
        for (l = priv->events; l; l = l->next) {
                if (empathy_contact_equal (contact, ((StatusIconEvent*)l->data)->user_data)) {
                        return;
                }
        }
 
-       str = g_strdup_printf (_("Subscription requested for %s\n"
-                                "Message: %s"),
-                              empathy_contact_get_name (contact),
-                              message);
+       str = g_string_new (NULL);
+       g_string_printf (str, _("Subscription requested by %s"),
+                        empathy_contact_get_name (contact));   
+       if (!G_STR_EMPTY (message)) {
+               g_string_append_printf (str, _("\nMessage: %s"), message);
+       }
 
-       event = status_icon_event_new (icon, GTK_STOCK_DIALOG_QUESTION, str);
+       event = status_icon_event_new (icon, GTK_STOCK_DIALOG_QUESTION, str->str);
        event->user_data = g_object_ref (contact);
        event->func = status_icon_event_subscribe_cb;
 
-       g_free (str);
+       g_string_free (str, TRUE);
 }
 
 static void
@@ -620,6 +694,7 @@ status_icon_event_new (EmpathyStatusIcon *icon,
                                                     (GSourceFunc) status_icon_event_timeout_cb,
                                                     icon);
                status_icon_event_timeout_cb (icon);
+               status_icon_update_tooltip (icon);
        }
 
        return event;
@@ -669,7 +744,6 @@ status_icon_event_timeout_cb (EmpathyStatusIcon *icon)
                event = priv->events->data;
                gtk_status_icon_set_from_icon_name (priv->icon, event->icon_name);
        }
-       status_icon_update_tooltip (icon);
 
        return TRUE;
 }