]> git.0d.be Git - empathy.git/blobdiff - src/empathy-status-icon.c
Updated Polish translation
[empathy.git] / src / empathy-status-icon.c
index 9c21948808732794dd87e5b9dc4068d19032d1bc..d1ea96c98631195613447cf74ba8f8f0db9b92ca 100644 (file)
 
 #include <string.h>
 
+#include <glib.h>
+
 #include <gtk/gtk.h>
 #include <gdk/gdkkeysyms.h>
+#include <glib/gi18n.h>
 
 #include <libnotify/notification.h>
+#include <libnotify/notify.h>
+
+#include <telepathy-glib/account-manager.h>
+#include <telepathy-glib/util.h>
 
 #include <libempathy/empathy-utils.h>
-#include <libempathy/empathy-idle.h>
-#include <libempathy/empathy-account-manager.h>
 
 #include <libempathy-gtk/empathy-presence-chooser.h>
 #include <libempathy-gtk/empathy-conf.h>
 #include <libempathy-gtk/empathy-ui-utils.h>
 #include <libempathy-gtk/empathy-images.h>
 #include <libempathy-gtk/empathy-new-message-dialog.h>
+#include <libempathy-gtk/empathy-new-call-dialog.h>
+#include <libempathy-gtk/empathy-notify-manager.h>
 
 #include "empathy-accounts-dialog.h"
 #include "empathy-status-icon.h"
 #include "empathy-preferences.h"
 #include "empathy-event-manager.h"
-#include "empathy-misc.h"
 
 #define DEBUG_FLAG EMPATHY_DEBUG_DISPATCHER
 #include <libempathy/empathy-debug.h>
@@ -53,8 +59,8 @@
 #define GET_PRIV(obj) EMPATHY_GET_PRIV (obj, EmpathyStatusIcon)
 typedef struct {
        GtkStatusIcon       *icon;
-       EmpathyIdle         *idle;
-       EmpathyAccountManager *account_manager;
+       TpAccountManager    *account_manager;
+       EmpathyNotifyManager *notify_mgr;
        gboolean             showing_event_icon;
        guint                blink_timeout;
        EmpathyEventManager *event_manager;
@@ -123,41 +129,73 @@ notification_close_helper (EmpathyStatusIconPriv *priv)
        }
 }
 
+static void
+notification_action_cb (NotifyNotification *notification,
+                       gchar              *action,
+                       EmpathyStatusIcon  *icon)
+{
+       EmpathyStatusIconPriv *priv = GET_PRIV (icon);
+
+       if (priv->event)
+               empathy_event_activate (priv->event);
+}
+
 static void
 status_icon_update_notification (EmpathyStatusIcon *icon)
 {
        EmpathyStatusIconPriv *priv = GET_PRIV (icon);
        GdkPixbuf *pixbuf = NULL;
 
-       if (!empathy_notification_is_enabled ()) {
+       if (!empathy_notify_manager_notification_is_enabled (priv->notify_mgr)) {
                /* always close the notification if this happens */
                notification_close_helper (priv);
                return;
        }
 
        if (priv->event) {
-               pixbuf = empathy_misc_get_pixbuf_for_notification (priv->event->contact,
-                                                                  priv->event->icon_name);
+               gchar *message_esc = NULL;
+
+               if (priv->event->message != NULL)
+                       message_esc = g_markup_escape_text (priv->event->message, -1);
 
                if (priv->notification) {
                        notify_notification_update (priv->notification,
-                                                   priv->event->header, priv->event->message,
+                                                   priv->event->header, message_esc,
                                                    NULL);
                } else {
                        priv->notification = notify_notification_new_with_status_icon
-                               (priv->event->header, priv->event->message, NULL, priv->icon);
+                               (priv->event->header, message_esc, NULL, priv->icon);
                        notify_notification_set_timeout (priv->notification,
                                                         NOTIFY_EXPIRES_DEFAULT);
 
+                       if (empathy_notify_manager_has_capability (priv->notify_mgr,
+                                  EMPATHY_NOTIFY_MANAGER_CAP_ACTIONS) &&
+                                  priv->event->type != EMPATHY_EVENT_TYPE_PRESENCE) {
+                               notify_notification_add_action (priv->notification,
+                                       "respond",
+                                       _("Respond"),
+                                       (NotifyActionCallback) notification_action_cb,
+                                       icon,
+                                       NULL);
+                       }
+
                        g_signal_connect (priv->notification, "closed",
                                          G_CALLBACK (status_icon_notification_closed_cb), icon);
+               }
 
-               }
-               notify_notification_set_icon_from_pixbuf (priv->notification,
+               pixbuf = empathy_notify_manager_get_pixbuf_for_notification (
+                                                                  priv->notify_mgr, priv->event->contact,
+                                                                  priv->event->icon_name);
+
+               if (pixbuf != NULL) {
+                       notify_notification_set_icon_from_pixbuf (priv->notification,
                                                          pixbuf);
+                       g_object_unref (pixbuf);
+               }
+
                notify_notification_show (priv->notification, NULL);
 
-               g_object_unref (pixbuf);
+               g_free (message_esc);
        } else {
                notification_close_helper (priv);
        }
@@ -167,23 +205,36 @@ static void
 status_icon_update_tooltip (EmpathyStatusIcon *icon)
 {
        EmpathyStatusIconPriv *priv = GET_PRIV (icon);
-       gchar                 *tooltip = NULL;
 
        if (priv->event) {
+               gchar *tooltip = NULL;
+
                if (priv->event->message != NULL)
-                               tooltip = g_strdup_printf ("<i>%s</i>\n%s",
-                                                          priv->event->header,
-                                                          priv->event->message);
+                               tooltip = g_markup_printf_escaped ("<i>%s</i>\n%s",
+                                                                  priv->event->header,
+                                                                  priv->event->message);
                else
-                               tooltip = g_strdup_printf ("<i>%s</i>",
-                                                          priv->event->header);
+                               tooltip = g_markup_printf_escaped ("<i>%s</i>",
+                                                                  priv->event->header);
                gtk_status_icon_set_tooltip_markup (priv->icon, tooltip);
+               g_free (tooltip);
        } else {
-               tooltip = g_strdup (empathy_idle_get_status (priv->idle));
-               gtk_status_icon_set_tooltip_text (priv->icon, tooltip);
-       }
+               TpConnectionPresenceType type;
+               gchar *msg;
+
+               type = tp_account_manager_get_most_available_presence (
+                       priv->account_manager, NULL, &msg);
+
+               if (!EMP_STR_EMPTY (msg)) {
+                       gtk_status_icon_set_tooltip_text (priv->icon, msg);
+               }
+               else {
+                       gtk_status_icon_set_tooltip_text (priv->icon,
+                                               empathy_presence_get_default_message (type));
+               }
 
-       g_free (tooltip);
+               g_free (msg);
+       }
 }
 
 static void
@@ -197,7 +248,15 @@ status_icon_update_icon (EmpathyStatusIcon *icon)
        } else {
                TpConnectionPresenceType state;
 
-               state = empathy_idle_get_state (priv->idle);
+               state = tp_account_manager_get_most_available_presence (
+                       priv->account_manager, NULL, NULL);
+
+               /* An unset presence type here doesn't make sense. Force it
+                * to be offline. */
+               if (state == TP_CONNECTION_PRESENCE_TYPE_UNSET) {
+                       state = TP_CONNECTION_PRESENCE_TYPE_OFFLINE;
+               }
+
                icon_name = empathy_icon_name_for_presence (state);
        }
 
@@ -229,13 +288,14 @@ status_icon_event_added_cb (EmpathyEventManager *manager,
        DEBUG ("New event %p", event);
 
        priv->event = event;
-       priv->showing_event_icon = TRUE;
-
-       status_icon_update_icon (icon);
-       status_icon_update_tooltip (icon);
+       if (event->must_ack) {
+               priv->showing_event_icon = TRUE;
+               status_icon_update_icon (icon);
+               status_icon_update_tooltip (icon);
+       }
        status_icon_update_notification (icon);
 
-       if (!priv->blink_timeout) {
+       if (!priv->blink_timeout && priv->showing_event_icon) {
                priv->blink_timeout = g_timeout_add (BLINK_TIMEOUT,
                                                     (GSourceFunc) status_icon_blink_timeout_cb,
                                                     icon);
@@ -260,7 +320,7 @@ status_icon_event_removed_cb (EmpathyEventManager *manager,
 
        /* update notification anyway, as it's safe and we might have been
         * changed presence in the meanwhile
-        */     
+        */
        status_icon_update_notification (icon);
 
        if (!priv->event && priv->blink_timeout) {
@@ -280,7 +340,7 @@ status_icon_event_updated_cb (EmpathyEventManager *manager,
                return;
        }
 
-       if (empathy_notification_is_enabled ()) {
+       if (empathy_notify_manager_notification_is_enabled (priv->notify_mgr)) {
                status_icon_update_notification (icon);
        }
 
@@ -302,18 +362,7 @@ status_icon_set_visibility (EmpathyStatusIcon *icon,
        if (!visible) {
                empathy_window_iconify (priv->window, priv->icon);
        } else {
-               GList *accounts;
-
-               empathy_window_present (GTK_WINDOW (priv->window), TRUE);
-
-               /* Show the accounts dialog if there is no enabled accounts */
-               accounts = mc_accounts_list_by_enabled (TRUE);
-               if (accounts) {
-                       mc_accounts_list_free (accounts);
-               } else {
-                       DEBUG ("No enabled account, Showing account dialog");
-                       empathy_accounts_dialog_show (GTK_WINDOW (priv->window), NULL);
-               }
+               empathy_window_present (GTK_WINDOW (priv->window));
        }
 }
 
@@ -341,14 +390,14 @@ status_icon_toggle_visibility (EmpathyStatusIcon *icon)
 }
 
 static void
-status_icon_idle_notify_cb (EmpathyStatusIcon *icon)
+status_icon_presence_changed_cb (EmpathyStatusIcon *icon)
 {
        EmpathyStatusIconPriv *priv = GET_PRIV (icon);
 
        status_icon_update_icon (icon);
        status_icon_update_tooltip (icon);
 
-       if (!empathy_notification_is_enabled ()) {
+       if (!empathy_notify_manager_notification_is_enabled (priv->notify_mgr)) {
                /* dismiss the outstanding notification if present */
 
                if (priv->notification) {
@@ -378,7 +427,7 @@ status_icon_key_press_event_cb  (GtkWidget *window,
        }
        return FALSE;
 }
-                               
+
 static void
 status_icon_activate_cb (GtkStatusIcon     *status_icon,
                         EmpathyStatusIcon *icon)
@@ -411,6 +460,13 @@ status_icon_new_message_cb (GtkAction         *action,
        empathy_new_message_dialog_show (NULL);
 }
 
+static void
+status_icon_new_call_cb (GtkAction         *action,
+                           EmpathyStatusIcon *icon)
+{
+       empathy_new_call_dialog_show (NULL);
+}
+
 static void
 status_icon_quit_cb (GtkAction         *action,
                     EmpathyStatusIcon *icon)
@@ -472,6 +528,7 @@ status_icon_create_menu (EmpathyStatusIcon *icon)
        empathy_builder_connect (gui, icon,
                              "show_list", "toggled", status_icon_show_hide_window_cb,
                              "new_message", "activate", status_icon_new_message_cb,
+                             "new_call", "activate", status_icon_new_call_cb,
                              "quit", "activate", status_icon_quit_cb,
                              NULL);
 
@@ -480,20 +537,18 @@ status_icon_create_menu (EmpathyStatusIcon *icon)
 }
 
 static void
-status_icon_connection_changed_cb (EmpathyAccountManager *manager,
-                                  McAccount *account,
-                                  TpConnectionStatusReason reason,
-                                  TpConnectionStatus current,
-                                  TpConnectionStatus previous,
-                                  EmpathyStatusIcon *icon)
+status_icon_status_changed_cb (TpAccount *account,
+                              TpConnectionStatus current,
+                              TpConnectionStatus previous,
+                              TpConnectionStatusReason reason,
+                              gchar *dbus_error_name,
+                              GHashTable *details,
+                              EmpathyStatusIcon *icon)
 {
        EmpathyStatusIconPriv *priv = GET_PRIV (icon);
-       int connected_accounts;
 
-       /* Check for a connected account */
-       connected_accounts = empathy_account_manager_get_connected_accounts (manager);
-
-       gtk_action_set_sensitive (priv->new_message_item, connected_accounts > 0);
+       gtk_action_set_sensitive (priv->new_message_item,
+                                 empathy_account_manager_get_accounts_connected (NULL));
 }
 
 static void
@@ -505,10 +560,6 @@ status_icon_finalize (GObject *object)
                g_source_remove (priv->blink_timeout);
        }
 
-       g_signal_handlers_disconnect_by_func (priv->account_manager,
-                                             status_icon_connection_changed_cb,
-                                             object);
-
        if (priv->notification) {
                notify_notification_close (priv->notification, NULL);
                g_object_unref (priv->notification);
@@ -516,10 +567,10 @@ status_icon_finalize (GObject *object)
        }
 
        g_object_unref (priv->icon);
-       g_object_unref (priv->idle);
        g_object_unref (priv->account_manager);
        g_object_unref (priv->event_manager);
        g_object_unref (priv->ui_manager);
+       g_object_unref (priv->notify_mgr);
 }
 
 static void
@@ -532,6 +583,33 @@ empathy_status_icon_class_init (EmpathyStatusIconClass *klass)
        g_type_class_add_private (object_class, sizeof (EmpathyStatusIconPriv));
 }
 
+static void
+account_manager_prepared_cb (GObject *source_object,
+                            GAsyncResult *result,
+                            gpointer user_data)
+{
+       GList *list, *l;
+       TpAccountManager *account_manager = TP_ACCOUNT_MANAGER (source_object);
+       EmpathyStatusIcon *icon = user_data;
+       GError *error = NULL;
+
+       if (!tp_account_manager_prepare_finish (account_manager, result, &error)) {
+               DEBUG ("Failed to prepare account manager: %s", error->message);
+               g_error_free (error);
+               return;
+       }
+
+       list = tp_account_manager_get_valid_accounts (account_manager);
+       for (l = list; l != NULL; l = l->next) {
+               empathy_signal_connect_weak (l->data, "status-changed",
+                                            G_CALLBACK (status_icon_status_changed_cb),
+                                            G_OBJECT (icon));
+       }
+       g_list_free (list);
+
+       status_icon_presence_changed_cb (icon);
+}
+
 static void
 empathy_status_icon_init (EmpathyStatusIcon *icon)
 {
@@ -540,13 +618,11 @@ empathy_status_icon_init (EmpathyStatusIcon *icon)
 
        icon->priv = priv;
        priv->icon = gtk_status_icon_new ();
-       priv->account_manager = empathy_account_manager_dup_singleton ();
-       priv->idle = empathy_idle_dup_singleton ();
+       priv->account_manager = tp_account_manager_dup ();
        priv->event_manager = empathy_event_manager_dup_singleton ();
 
-       g_signal_connect (priv->account_manager,
-                         "account-connection-changed",
-                         G_CALLBACK (status_icon_connection_changed_cb), icon);
+       tp_account_manager_prepare_async (priv->account_manager, NULL,
+           account_manager_prepared_cb, icon);
 
        /* make icon listen and respond to MAIN_WINDOW_HIDDEN changes */
        empathy_conf_notify_add (empathy_conf_get (),
@@ -555,10 +631,10 @@ empathy_status_icon_init (EmpathyStatusIcon *icon)
                                 icon);
 
        status_icon_create_menu (icon);
-       status_icon_idle_notify_cb (icon);
 
-       g_signal_connect_swapped (priv->idle, "notify",
-                                 G_CALLBACK (status_icon_idle_notify_cb),
+       g_signal_connect_swapped (priv->account_manager,
+                                 "most-available-presence-changed",
+                                 G_CALLBACK (status_icon_presence_changed_cb),
                                  icon);
        g_signal_connect (priv->event_manager, "event-added",
                          G_CALLBACK (status_icon_event_added_cb),
@@ -575,6 +651,8 @@ empathy_status_icon_init (EmpathyStatusIcon *icon)
        g_signal_connect (priv->icon, "popup-menu",
                          G_CALLBACK (status_icon_popup_menu_cb),
                          icon);
+
+       priv->notify_mgr = empathy_notify_manager_dup_singleton ();
 }
 
 EmpathyStatusIcon *