]> git.0d.be Git - empathy.git/blobdiff - libempathy-gtk/empathy-contact-list-view.c
Remove an empty line
[empathy.git] / libempathy-gtk / empathy-contact-list-view.c
index c4dbbf6af5babf1d4407d132ec43eb6eca68a5e5..d51fade2a04d6ab88edf109afa0f7b1a1232aac0 100644 (file)
@@ -28,6 +28,7 @@
 #include <string.h>
 
 #include <glib/gi18n.h>
+#include <gdk/gdkkeysyms.h>
 #include <gtk/gtk.h>
 #include <glade/glade.h>
 
@@ -36,7 +37,7 @@
 #include <libempathy/empathy-contact-factory.h>
 #include <libempathy/empathy-contact-list.h>
 #include <libempathy/empathy-contact-groups.h>
-#include <libempathy/empathy-debug.h>
+#include <libempathy/empathy-dispatcher.h>
 #include <libempathy/empathy-utils.h>
 
 #include "empathy-contact-list-view.h"
 #include "empathy-cell-renderer-expander.h"
 #include "empathy-cell-renderer-text.h"
 #include "empathy-cell-renderer-activatable.h"
+#include "empathy-event-manager.h"
 #include "empathy-ui-utils.h"
 #include "empathy-gtk-enum-types.h"
 #include "empathy-gtk-marshal.h"
 
-#define DEBUG_DOMAIN "ContactListView"
+#define DEBUG_FLAG EMPATHY_DEBUG_CONTACT
+#include <libempathy/empathy-debug.h>
 
 /* Flashing delay for icons (milliseconds). */
 #define FLASH_TIMEOUT 500
  * (e.g. online, offline or from normal to a busy state).
  */
 
-#define GET_PRIV(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), EMPATHY_TYPE_CONTACT_LIST_VIEW, EmpathyContactListViewPriv))
-
+#define GET_PRIV(obj) EMPATHY_GET_PRIV (obj, EmpathyContactListView)
 typedef struct {
        EmpathyContactListStore        *store;
        GtkTreeRowReference            *drag_row;
        EmpathyContactListFeatureFlags  list_features;
        EmpathyContactFeatureFlags      contact_features;
+       GtkWidget                      *tooltip_widget;
+       EmpathyEventManager            *event_manager;
+       guint                           flash_timeout_id;
+       gboolean                        flash_on;
 } EmpathyContactListViewPriv;
 
 typedef struct {
@@ -115,6 +121,205 @@ static guint signals[LAST_SIGNAL];
 
 G_DEFINE_TYPE (EmpathyContactListView, empathy_contact_list_view, GTK_TYPE_TREE_VIEW);
 
+static void
+contact_list_view_flash_stop (EmpathyContactListView *view)
+{
+       EmpathyContactListViewPriv *priv = GET_PRIV (view);
+
+       if (priv->flash_timeout_id == 0) {
+               return;
+       }
+
+       DEBUG ("Stop flashing");
+       g_source_remove (priv->flash_timeout_id);
+       priv->flash_timeout_id = 0;
+       priv->flash_on = FALSE;
+}
+
+typedef struct {
+       EmpathyEvent *event;
+       gboolean      on;
+} FlashForeachData;
+
+static gboolean
+contact_list_view_flash_foreach (GtkTreeModel *model,
+                                GtkTreePath  *path,
+                                GtkTreeIter  *iter,
+                                gpointer      user_data)
+{
+       FlashForeachData *data = (FlashForeachData*) user_data;
+       EmpathyContact   *contact;
+       const gchar      *icon_name;
+       GtkTreePath      *parent_path = NULL;
+       GtkTreeIter       parent_iter;
+
+       gtk_tree_model_get (model, iter,
+                           EMPATHY_CONTACT_LIST_STORE_COL_CONTACT, &contact,
+                           -1);
+
+       if (contact != data->event->contact) {
+               if (contact) {
+                       g_object_unref (contact);
+               }
+               return FALSE;
+       }
+
+       if (data->on) {
+               icon_name = data->event->icon_name;
+       } else {
+               icon_name = empathy_icon_name_for_contact (contact);
+       }
+
+       gtk_tree_store_set (GTK_TREE_STORE (model), iter,
+                           EMPATHY_CONTACT_LIST_STORE_COL_ICON_STATUS, icon_name,
+                           -1);
+
+       /* To make sure the parent is shown correctly, we emit
+        * the row-changed signal on the parent so it prompts
+        * it to be refreshed by the filter func. 
+        */
+       if (gtk_tree_model_iter_parent (model, &parent_iter, iter)) {
+               parent_path = gtk_tree_model_get_path (model, &parent_iter);
+       }
+       if (parent_path) {
+               gtk_tree_model_row_changed (model, parent_path, &parent_iter);
+               gtk_tree_path_free (parent_path);
+       }
+
+       g_object_unref (contact);
+
+       return FALSE;
+}
+
+static gboolean
+contact_list_view_flash_cb (EmpathyContactListView *view)
+{
+       EmpathyContactListViewPriv *priv = GET_PRIV (view);
+       GtkTreeModel               *model;
+       GSList                     *events, *l;
+       gboolean                    found_event = FALSE;
+       FlashForeachData            data;
+
+       priv->flash_on = !priv->flash_on;
+       data.on = priv->flash_on;
+       model = GTK_TREE_MODEL (priv->store);
+
+       events = empathy_event_manager_get_events (priv->event_manager);
+       for (l = events; l; l = l->next) {
+               data.event = l->data;
+               if (!data.event->contact) {
+                       continue;
+               }
+
+               found_event = TRUE;
+               gtk_tree_model_foreach (model,
+                                       contact_list_view_flash_foreach,
+                                       &data);
+       }
+
+       if (!found_event) {
+               contact_list_view_flash_stop (view);
+       }
+
+       return TRUE;
+}
+
+static void
+contact_list_view_flash_start (EmpathyContactListView *view)
+{
+       EmpathyContactListViewPriv *priv = GET_PRIV (view);
+
+       if (priv->flash_timeout_id != 0) {
+               return;
+       }
+
+       DEBUG ("Start flashing");
+       priv->flash_timeout_id = g_timeout_add (FLASH_TIMEOUT,
+                                               (GSourceFunc) contact_list_view_flash_cb,
+                                               view);
+}
+
+static void
+contact_list_view_event_added_cb (EmpathyEventManager    *manager,
+                                 EmpathyEvent           *event,
+                                 EmpathyContactListView *view)
+{
+       if (event->contact) {
+               contact_list_view_flash_start (view);
+       }
+}
+
+static void
+contact_list_view_event_removed_cb (EmpathyEventManager    *manager,
+                                   EmpathyEvent           *event,
+                                   EmpathyContactListView *view)
+{
+       EmpathyContactListViewPriv *priv = GET_PRIV (view);
+       FlashForeachData            data;
+
+       if (!event->contact) {
+               return;
+       }
+
+       data.on = FALSE;
+       data.event = event;
+       gtk_tree_model_foreach (GTK_TREE_MODEL (priv->store),
+                               contact_list_view_flash_foreach,
+                               &data);
+}
+
+static gboolean
+contact_list_view_query_tooltip_cb (EmpathyContactListView *view,
+                                   gint                    x,
+                                   gint                    y,
+                                   gboolean                keyboard_mode,
+                                   GtkTooltip             *tooltip,
+                                   gpointer                user_data)
+{
+       EmpathyContactListViewPriv *priv = GET_PRIV (view);
+       EmpathyContact             *contact;
+       GtkTreeModel               *model;
+       GtkTreeIter                 iter;
+       GtkTreePath                *path;
+
+       /* FIXME: We need GTK version >= 2.12.10. See GNOME bug #504087 */
+       if (gtk_check_version (2, 12, 10)) {
+               return FALSE;
+       }
+
+       if (!gtk_tree_view_get_tooltip_context (GTK_TREE_VIEW (view), &x, &y,
+                                               keyboard_mode,
+                                               &model, &path, &iter)) {
+               return FALSE;
+       }
+
+       gtk_tree_view_set_tooltip_row (GTK_TREE_VIEW (view), tooltip, path);
+       gtk_tree_path_free (path);
+
+       gtk_tree_model_get (model, &iter,
+                           EMPATHY_CONTACT_LIST_STORE_COL_CONTACT, &contact,
+                           -1);
+       if (!contact) {
+               return FALSE;
+       }
+
+       if (!priv->tooltip_widget) {
+               priv->tooltip_widget = empathy_contact_widget_new (contact,
+                       EMPATHY_CONTACT_WIDGET_EDIT_NONE);
+               g_object_add_weak_pointer (G_OBJECT (priv->tooltip_widget),
+                                          (gpointer) &priv->tooltip_widget);
+       } else {
+               empathy_contact_widget_set_contact (priv->tooltip_widget,
+                                                   contact);
+       }
+
+       gtk_tooltip_set_custom (tooltip, priv->tooltip_widget);
+
+       g_object_unref (contact);
+
+       return TRUE;
+}
+
 static void
 contact_list_view_drag_data_received (GtkWidget         *widget,
                                      GdkDragContext    *context,
@@ -141,10 +346,10 @@ contact_list_view_drag_data_received (GtkWidget         *widget,
        priv = GET_PRIV (widget);
 
        id = (const gchar*) selection->data;
-       empathy_debug (DEBUG_DOMAIN, "Received %s%s drag & drop contact from roster with id:'%s'",
-                     context->action == GDK_ACTION_MOVE ? "move" : "",
-                     context->action == GDK_ACTION_COPY ? "copy" : "",
-                     id);
+       DEBUG ("Received %s%s drag & drop contact from roster with id:'%s'",
+               context->action == GDK_ACTION_MOVE ? "move" : "",
+               context->action == GDK_ACTION_COPY ? "copy" : "",
+               id);
 
        strv = g_strsplit (id, "/", 2);
        factory = empathy_contact_factory_new ();
@@ -159,7 +364,7 @@ contact_list_view_drag_data_received (GtkWidget         *widget,
        g_strfreev (strv);
 
        if (!contact) {
-               empathy_debug (DEBUG_DOMAIN, "No contact found associated with drag & drop");
+               DEBUG ("No contact found associated with drag & drop");
                return;
        }
 
@@ -190,11 +395,10 @@ contact_list_view_drag_data_received (GtkWidget         *widget,
                gtk_tree_path_free (path);
        }
 
-       empathy_debug (DEBUG_DOMAIN,
-                     "contact %s (%d) dragged from '%s' to '%s'",
-                     empathy_contact_get_id (contact),
-                     empathy_contact_get_handle (contact),
-                     old_group, new_group);
+       DEBUG ("contact %s (%d) dragged from '%s' to '%s'",
+               empathy_contact_get_id (contact),
+               empathy_contact_get_handle (contact),
+               old_group, new_group);
 
        list = empathy_contact_list_store_get_list_iface (priv->store);
        if (new_group) {
@@ -407,17 +611,13 @@ contact_list_view_popup_menu_idle_cb (gpointer user_data)
                menu = empathy_contact_list_view_get_group_menu (data->view);
        }
 
-       if (!menu) {
-               goto OUT;
+       if (menu) {
+               gtk_widget_show (menu);
+               gtk_menu_popup (GTK_MENU (menu),
+                               NULL, NULL, NULL, NULL,
+                               data->button, data->time);
        }
 
-       gtk_widget_show (menu);
-
-       gtk_menu_popup (GTK_MENU (menu),
-                       NULL, NULL, NULL, NULL,
-                       data->button, data->time);
-
-OUT:
        g_slice_free (MenuPopupData, data);
 
        return FALSE;
@@ -441,6 +641,24 @@ contact_list_view_button_press_event_cb (EmpathyContactListView *view,
        return FALSE;
 }
 
+static gboolean
+contact_list_view_key_press_event_cb (EmpathyContactListView *view,
+                                     GdkEventKey            *event,
+                                     gpointer                user_data)
+{
+       if (event->keyval == GDK_Menu) {
+               MenuPopupData *data;
+
+               data = g_slice_new (MenuPopupData);
+               data->view = view;
+               data->button = 0;
+               data->time = event->time;
+               g_idle_add (contact_list_view_popup_menu_idle_cb, data);
+       }
+
+       return FALSE;
+}
+
 static void
 contact_list_view_row_activated_cb (EmpathyContactListView *view,
                                    GtkTreePath            *path,
@@ -452,21 +670,36 @@ contact_list_view_row_activated_cb (EmpathyContactListView *view,
        GtkTreeModel               *model;
        GtkTreeIter                 iter;
 
-       if (!(priv->contact_features & EMPATHY_CONTACT_FEATURE_CHAT)) {
-               return;
-       }
-
-       model = gtk_tree_view_get_model (GTK_TREE_VIEW (view));
-
+       model = GTK_TREE_MODEL (priv->store);
        gtk_tree_model_get_iter (model, &iter, path);
        gtk_tree_model_get (model, &iter,
                            EMPATHY_CONTACT_LIST_STORE_COL_CONTACT, &contact,
                            -1);
 
-       if (contact) {
-               empathy_chat_with_contact (contact);
-               g_object_unref (contact);
+       if (!contact) {
+               return;
+       }
+
+       if (priv->event_manager) {
+               GSList *events, *l;
+
+               events = empathy_event_manager_get_events (priv->event_manager);
+               for (l = events; l; l = l->next) {
+                       EmpathyEvent *event = l->data;
+
+                       if (event->contact == contact) {
+                               empathy_event_activate (event);
+                               goto OUT;
+                       }
+               }
+       }
+
+       if (priv->contact_features & EMPATHY_CONTACT_FEATURE_CHAT) {
+               empathy_dispatcher_chat_with_contact (contact);
        }
+
+OUT:
+       g_object_unref (contact);
 }
 
 static void
@@ -493,7 +726,7 @@ contact_list_view_voip_activated_cb (EmpathyCellRendererActivatable *cell,
                            -1);
 
        if (contact) {
-               empathy_call_with_contact (contact);
+               empathy_dispatcher_call_with_contact (contact);
                g_object_unref (contact);
        }
 }
@@ -859,6 +1092,7 @@ contact_list_view_set_list_features (EmpathyContactListView         *view,
                                     EmpathyContactListFeatureFlags  features)
 {
        EmpathyContactListViewPriv *priv = GET_PRIV (view);
+       gboolean                    has_tooltip;
 
        g_return_if_fail (EMPATHY_IS_CONTACT_LIST_VIEW (view));
 
@@ -883,9 +1117,47 @@ contact_list_view_set_list_features (EmpathyContactListView         *view,
                                   G_N_ELEMENTS (drag_types_dest),
                                   GDK_ACTION_MOVE | GDK_ACTION_COPY);
        } else {
-               /* FIXME: URI could still be  droped depending on FT feature */
+               /* FIXME: URI could still be droped depending on FT feature */
                gtk_drag_dest_unset (GTK_WIDGET (view));
        }
+
+       /* Update has-tooltip */
+       has_tooltip = (features & EMPATHY_CONTACT_LIST_FEATURE_CONTACT_TOOLTIP) != 0;
+       gtk_widget_set_has_tooltip (GTK_WIDGET (view), has_tooltip);
+
+       /* Enable event handling if needed */
+       if (features & EMPATHY_CONTACT_LIST_FEATURE_CONTACT_EVENTS &&
+           !priv->event_manager) {
+               GSList *l;
+
+               priv->event_manager = empathy_event_manager_new ();
+               g_signal_connect (priv->event_manager, "event-added",
+                                 G_CALLBACK (contact_list_view_event_added_cb),
+                                 view);
+               g_signal_connect (priv->event_manager, "event-removed",
+                                 G_CALLBACK (contact_list_view_event_removed_cb),
+                                 view);
+
+               l = empathy_event_manager_get_events (priv->event_manager);
+               while (l) {
+                       contact_list_view_event_added_cb (priv->event_manager,
+                                                         l->data, view);
+                       l = l->next;
+               }
+       }
+
+       /* Disable event handling if needed */
+       if (!(features & EMPATHY_CONTACT_LIST_FEATURE_CONTACT_EVENTS) &&
+           priv->event_manager) {
+               g_signal_handlers_disconnect_by_func (priv->event_manager,
+                                                     contact_list_view_event_added_cb,
+                                                     view);
+               g_signal_handlers_disconnect_by_func (priv->event_manager,
+                                                     contact_list_view_event_removed_cb,
+                                                     view);
+               g_object_unref (priv->event_manager);
+               priv->event_manager = NULL;
+       }
 }
 
 static void
@@ -899,6 +1171,16 @@ contact_list_view_finalize (GObject *object)
                g_object_unref (priv->store);
        }
 
+       if (priv->event_manager) {
+               g_signal_handlers_disconnect_by_func (priv->event_manager,
+                                                     contact_list_view_event_added_cb,
+                                                     object);
+               g_signal_handlers_disconnect_by_func (priv->event_manager,
+                                                     contact_list_view_event_removed_cb,
+                                                     object);
+               g_object_unref (priv->event_manager);
+       }
+
        G_OBJECT_CLASS (empathy_contact_list_view_parent_class)->finalize (object);
 }
 
@@ -1015,6 +1297,10 @@ empathy_contact_list_view_class_init (EmpathyContactListViewClass *klass)
 static void
 empathy_contact_list_view_init (EmpathyContactListView *view)
 {
+       EmpathyContactListViewPriv *priv = G_TYPE_INSTANCE_GET_PRIVATE (view,
+               EMPATHY_TYPE_CONTACT_LIST_VIEW, EmpathyContactListViewPriv);
+
+       view->priv = priv;
        /* Get saved group states. */
        empathy_contact_groups_get_all ();
 
@@ -1023,22 +1309,24 @@ empathy_contact_list_view_init (EmpathyContactListView *view)
                                              NULL, NULL);
 
        /* Connect to tree view signals rather than override. */
-       g_signal_connect (view,
-                         "button-press-event",
+       g_signal_connect (view, "button-press-event",
                          G_CALLBACK (contact_list_view_button_press_event_cb),
                          NULL);
-       g_signal_connect (view,
-                         "row-activated",
+       g_signal_connect (view, "key-press-event",
+                         G_CALLBACK (contact_list_view_key_press_event_cb),
+                         NULL);
+       g_signal_connect (view, "row-activated",
                          G_CALLBACK (contact_list_view_row_activated_cb),
                          NULL);
-       g_signal_connect (view,
-                         "row-expanded",
+       g_signal_connect (view, "row-expanded",
                          G_CALLBACK (contact_list_view_row_expand_or_collapse_cb),
                          GINT_TO_POINTER (TRUE));
-       g_signal_connect (view,
-                         "row-collapsed",
+       g_signal_connect (view, "row-collapsed",
                          G_CALLBACK (contact_list_view_row_expand_or_collapse_cb),
                          GINT_TO_POINTER (FALSE));
+       g_signal_connect (view, "query-tooltip",
+                         G_CALLBACK (contact_list_view_query_tooltip_cb),
+                         NULL);
 }
 
 EmpathyContactListView *
@@ -1122,8 +1410,8 @@ contact_list_view_remove_dialog_show (GtkWindow   *parent,
        
        dialog = gtk_dialog_new_with_buttons (window_title, parent,
                                              GTK_DIALOG_MODAL,
+                                             GTK_STOCK_CANCEL, GTK_RESPONSE_NO,
                                              GTK_STOCK_DELETE, GTK_RESPONSE_YES,
-                                             GTK_STOCK_CANCEL, GTK_RESPONSE_NO,
                                              NULL);
        gtk_dialog_set_has_separator (GTK_DIALOG(dialog), FALSE);
         
@@ -1271,10 +1559,9 @@ empathy_contact_list_view_get_contact_menu (EmpathyContactListView *view)
 
        menu = empathy_contact_menu_new (contact, priv->contact_features);
 
-       if (!menu &&
-           !(priv->list_features & EMPATHY_CONTACT_LIST_FEATURE_CONTACT_REMOVE)) {
+       if (!(priv->list_features & EMPATHY_CONTACT_LIST_FEATURE_CONTACT_REMOVE)) {
                g_object_unref (contact);
-               return NULL;
+               return menu;
        }
 
        if (menu) {