]> git.0d.be Git - empathy.git/blob - libempathy-gtk/empathy-contact-list-view.c
More flexible API for EmpathyContactWidget, we now have flags to set
[empathy.git] / libempathy-gtk / empathy-contact-list-view.c
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3  * Copyright (C) 2005-2007 Imendio AB
4  * Copyright (C) 2007 Collabora Ltd.
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License as
8  * published by the Free Software Foundation; either version 2 of the
9  * License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public
17  * License along with this program; if not, write to the
18  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19  * Boston, MA 02111-1307, USA.
20  *
21  * Authors: Mikael Hallendal <micke@imendio.com>
22  *          Martyn Russell <martyn@imendio.com>
23  *          Xavier Claessens <xclaesse@gmail.com>
24  */
25
26 #include "config.h"
27
28 #include <string.h>
29
30 #include <glib/gi18n.h>
31 #include <gtk/gtk.h>
32 #include <glade/glade.h>
33
34 #include <libtelepathy/tp-helpers.h>
35
36 #include <libmissioncontrol/mc-account.h>
37 #include <libmissioncontrol/mission-control.h>
38
39 #include <libempathy/empathy-contact-factory.h>
40 #include <libempathy/empathy-contact-list.h>
41 #include <libempathy/empathy-log-manager.h>
42 #include <libempathy/empathy-tp-group.h>
43 #include <libempathy/empathy-debug.h>
44 #include <libempathy/empathy-utils.h>
45 #include <libempathy/empathy-marshal.h>
46
47 #include "empathy-contact-list-view.h"
48 #include "empathy-contact-list-store.h"
49 #include "empathy-images.h"
50 #include "empathy-contact-groups.h"
51 #include "empathy-cell-renderer-expander.h"
52 #include "empathy-cell-renderer-text.h"
53 #include "empathy-cell-renderer-activatable.h"
54 #include "empathy-ui-utils.h"
55 #include "empathy-contact-dialogs.h"
56 //#include "empathy-chat-invite.h"
57 //#include "empathy-ft-window.h"
58 #include "empathy-log-window.h"
59
60 #define DEBUG_DOMAIN "ContactListView"
61
62 /* Flashing delay for icons (milliseconds). */
63 #define FLASH_TIMEOUT 500
64
65 /* Active users are those which have recently changed state
66  * (e.g. online, offline or from normal to a busy state).
67  */
68
69 #define GET_PRIV(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), EMPATHY_TYPE_CONTACT_LIST_VIEW, EmpathyContactListViewPriv))
70
71 struct _EmpathyContactListViewPriv {
72         EmpathyContactListStore *store;
73         GtkUIManager            *ui;
74         GtkTreeRowReference     *drag_row;
75         gboolean                 interactive;
76 };
77
78 typedef struct {
79         EmpathyContactListView *view;
80         GtkTreePath           *path;
81         guint                  timeout_id;
82 } DragMotionData;
83
84 typedef struct {
85         EmpathyContactListView *view;
86         EmpathyContact         *contact;
87         gboolean               remove;
88 } ShowActiveData;
89
90 static void        empathy_contact_list_view_class_init         (EmpathyContactListViewClass *klass);
91 static void        empathy_contact_list_view_init               (EmpathyContactListView      *list);
92 static void        contact_list_view_finalize                  (GObject                    *object);
93 static void        contact_list_view_get_property              (GObject                    *object,
94                                                                 guint                       param_id,
95                                                                 GValue                     *value,
96                                                                 GParamSpec                 *pspec);
97 static void        contact_list_view_set_property              (GObject                    *object,
98                                                                 guint                       param_id,
99                                                                 const GValue               *value,
100                                                                 GParamSpec                 *pspec);
101 static void        contact_list_view_setup                     (EmpathyContactListView      *view);
102 static void        contact_list_view_row_has_child_toggled_cb  (GtkTreeModel               *model,
103                                                                 GtkTreePath                *path,
104                                                                 GtkTreeIter                *iter,
105                                                                 EmpathyContactListView      *view);
106 static void        contact_list_view_drag_data_received        (GtkWidget                  *widget,
107                                                                 GdkDragContext             *context,
108                                                                 gint                        x,
109                                                                 gint                        y,
110                                                                 GtkSelectionData           *selection,
111                                                                 guint                       info,
112                                                                 guint                       time);
113 static gboolean    contact_list_view_drag_motion               (GtkWidget                  *widget,
114                                                                 GdkDragContext             *context,
115                                                                 gint                        x,
116                                                                 gint                        y,
117                                                                 guint                       time);
118 static gboolean    contact_list_view_drag_motion_cb            (DragMotionData             *data);
119 static void        contact_list_view_drag_begin                (GtkWidget                  *widget,
120                                                                 GdkDragContext             *context);
121 static void        contact_list_view_drag_data_get             (GtkWidget                  *widget,
122                                                                 GdkDragContext             *context,
123                                                                 GtkSelectionData           *selection,
124                                                                 guint                       info,
125                                                                 guint                       time);
126 static void        contact_list_view_drag_end                  (GtkWidget                  *widget,
127                                                                 GdkDragContext             *context);
128 static gboolean    contact_list_view_drag_drop                 (GtkWidget                  *widget,
129                                                                 GdkDragContext             *drag_context,
130                                                                 gint                        x,
131                                                                 gint                        y,
132                                                                 guint                       time);
133 static void        contact_list_view_cell_set_background       (EmpathyContactListView      *view,
134                                                                 GtkCellRenderer            *cell,
135                                                                 gboolean                    is_group,
136                                                                 gboolean                    is_active);
137 static void        contact_list_view_pixbuf_cell_data_func     (GtkTreeViewColumn          *tree_column,
138                                                                 GtkCellRenderer            *cell,
139                                                                 GtkTreeModel               *model,
140                                                                 GtkTreeIter                *iter,
141                                                                 EmpathyContactListView     *view);
142 #ifdef HAVE_VOIP
143 static void        contact_list_view_voip_cell_data_func       (GtkTreeViewColumn          *tree_column,
144                                                                 GtkCellRenderer            *cell,
145                                                                 GtkTreeModel               *model,
146                                                                 GtkTreeIter                *iter,
147                                                                 EmpathyContactListView     *view);
148 #endif
149 static void        contact_list_view_avatar_cell_data_func     (GtkTreeViewColumn          *tree_column,
150                                                                 GtkCellRenderer            *cell,
151                                                                 GtkTreeModel               *model,
152                                                                 GtkTreeIter                *iter,
153                                                                 EmpathyContactListView      *view);
154 static void        contact_list_view_text_cell_data_func       (GtkTreeViewColumn          *tree_column,
155                                                                 GtkCellRenderer            *cell,
156                                                                 GtkTreeModel               *model,
157                                                                 GtkTreeIter                *iter,
158                                                                 EmpathyContactListView      *view);
159 static void        contact_list_view_expander_cell_data_func   (GtkTreeViewColumn          *column,
160                                                                 GtkCellRenderer            *cell,
161                                                                 GtkTreeModel               *model,
162                                                                 GtkTreeIter                *iter,
163                                                                 EmpathyContactListView      *view);
164 static GtkWidget * contact_list_view_get_contact_menu          (EmpathyContactListView      *view,
165                                                                 gboolean                    can_send_file,
166                                                                 gboolean                    can_show_log,
167                                                                 gboolean                    can_voip);
168 static gboolean    contact_list_view_button_press_event_cb     (EmpathyContactListView      *view,
169                                                                 GdkEventButton             *event,
170                                                                 gpointer                    user_data);
171 static void        contact_list_view_row_activated_cb          (EmpathyContactListView      *view,
172                                                                 GtkTreePath                *path,
173                                                                 GtkTreeViewColumn          *col,
174                                                                 gpointer                    user_data);
175 #ifdef HAVE_VOIP
176 static void        contact_list_view_voip_activated_cb         (EmpathyCellRendererActivatable *cell,
177                                                                 const gchar                *path_string,
178                                                                 EmpathyContactListView     *view);
179 #endif
180 static void        contact_list_view_row_expand_or_collapse_cb (EmpathyContactListView      *view,
181                                                                 GtkTreeIter                *iter,
182                                                                 GtkTreePath                *path,
183                                                                 gpointer                    user_data);
184 static void        contact_list_view_action_cb                 (GtkAction                  *action,
185                                                                 EmpathyContactListView      *view);
186 static void        contact_list_view_action_activated          (EmpathyContactListView      *view,
187                                                                 EmpathyContact              *contact);
188 static void        contact_list_view_voip_activated            (EmpathyContactListView      *view,
189                                                                 EmpathyContact              *contact);
190
191 enum {
192         PROP_0,
193         PROP_INTERACTIVE
194 };
195
196 static const GtkActionEntry entries[] = {
197         { "ContactMenu", NULL,
198           N_("_Contact"), NULL, NULL,
199           NULL
200         },
201         { "GroupMenu", NULL,
202           N_("_Group"),NULL, NULL,
203           NULL
204         },
205         { "Chat", EMPATHY_IMAGE_MESSAGE,
206           N_("_Chat"), NULL, N_("Chat with contact"),
207           G_CALLBACK (contact_list_view_action_cb)
208         },
209         { "Information", EMPATHY_IMAGE_CONTACT_INFORMATION,
210           N_("Infor_mation"), "<control>I", N_("View contact information"),
211           G_CALLBACK (contact_list_view_action_cb)
212         },
213         { "Rename", NULL,
214           N_("Re_name"), NULL, N_("Rename"),
215           G_CALLBACK (contact_list_view_action_cb)
216         },
217         { "Edit", GTK_STOCK_EDIT,
218           N_("_Edit"), NULL, N_("Edit the groups and name for this contact"),
219           G_CALLBACK (contact_list_view_action_cb)
220         },
221         { "Remove", GTK_STOCK_REMOVE,
222           N_("_Remove"), NULL, N_("Remove contact"),
223           G_CALLBACK (contact_list_view_action_cb)
224         },
225         { "Invite", EMPATHY_IMAGE_GROUP_MESSAGE,
226           N_("_Invite to Chat Room"), NULL, N_("Invite to a currently open chat room"),
227           G_CALLBACK (contact_list_view_action_cb)
228         },
229         { "SendFile", NULL,
230           N_("_Send File..."), NULL, N_("Send a file"),
231           G_CALLBACK (contact_list_view_action_cb)
232         },
233         { "Log", GTK_STOCK_JUSTIFY_LEFT,
234           N_("_View Previous Conversations"), NULL, N_("View previous conversations with this contact"),
235           G_CALLBACK (contact_list_view_action_cb)
236         },
237 #ifdef HAVE_VOIP
238         { "Call", EMPATHY_IMAGE_VOIP,
239           N_("_Call"), NULL, N_("Start a voice or video conversation with this contact"),
240           G_CALLBACK (contact_list_view_action_cb)
241         },
242 #endif
243 };
244
245 static guint n_entries = G_N_ELEMENTS (entries);
246
247 static const gchar *ui_info =
248         "<ui>"
249         "  <popup name='Contact'>"
250         "    <menuitem action='Chat'/>"
251 #ifdef HAVE_VOIP
252         "    <menuitem action='Call'/>"
253 #endif
254         "    <menuitem action='Log'/>"
255         "    <menuitem action='SendFile'/>"
256         "    <separator/>"
257         "    <menuitem action='Invite'/>"
258         "    <separator/>"
259         "    <menuitem action='Edit'/>"
260         "    <menuitem action='Remove'/>"
261         "    <separator/>"
262         "    <menuitem action='Information'/>"
263         "  </popup>"
264         "  <popup name='Group'>"
265         "    <menuitem action='Rename'/>"
266         "  </popup>"
267         "</ui>";
268
269 enum DndDragType {
270         DND_DRAG_TYPE_CONTACT_ID,
271         DND_DRAG_TYPE_URL,
272         DND_DRAG_TYPE_STRING,
273 };
274
275 static const GtkTargetEntry drag_types_dest[] = {
276         { "text/contact-id", 0, DND_DRAG_TYPE_CONTACT_ID },
277         { "text/uri-list",   0, DND_DRAG_TYPE_URL },
278         { "text/plain",      0, DND_DRAG_TYPE_STRING },
279         { "STRING",          0, DND_DRAG_TYPE_STRING },
280 };
281
282 static const GtkTargetEntry drag_types_source[] = {
283         { "text/contact-id", 0, DND_DRAG_TYPE_CONTACT_ID },
284 };
285
286 static GdkAtom drag_atoms_dest[G_N_ELEMENTS (drag_types_dest)];
287 static GdkAtom drag_atoms_source[G_N_ELEMENTS (drag_types_source)];
288
289 enum {
290         DRAG_CONTACT_RECEIVED,
291         LAST_SIGNAL
292 };
293
294 static guint signals[LAST_SIGNAL];
295
296 G_DEFINE_TYPE (EmpathyContactListView, empathy_contact_list_view, GTK_TYPE_TREE_VIEW);
297
298 static void
299 empathy_contact_list_view_class_init (EmpathyContactListViewClass *klass)
300 {
301         GObjectClass   *object_class = G_OBJECT_CLASS (klass);
302         GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (klass);
303
304         object_class->finalize = contact_list_view_finalize;
305         object_class->get_property = contact_list_view_get_property;
306         object_class->set_property = contact_list_view_set_property;
307
308         widget_class->drag_data_received = contact_list_view_drag_data_received;
309         widget_class->drag_drop          = contact_list_view_drag_drop;
310         widget_class->drag_begin         = contact_list_view_drag_begin;
311         widget_class->drag_data_get      = contact_list_view_drag_data_get;
312         widget_class->drag_end           = contact_list_view_drag_end;
313         /* FIXME: noticed but when you drag the row over the treeview
314          * fast, it seems to stop redrawing itself, if we don't
315          * connect this signal, all is fine.
316          */
317         widget_class->drag_motion        = contact_list_view_drag_motion;
318
319         signals[DRAG_CONTACT_RECEIVED] =
320                 g_signal_new ("drag-contact-received",
321                               G_OBJECT_CLASS_TYPE (klass),
322                               G_SIGNAL_RUN_LAST,
323                               0,
324                               NULL, NULL,
325                               empathy_marshal_VOID__OBJECT_STRING_STRING,
326                               G_TYPE_NONE,
327                               3, EMPATHY_TYPE_CONTACT, G_TYPE_STRING, G_TYPE_STRING);
328
329         g_object_class_install_property (object_class,
330                                          PROP_INTERACTIVE,
331                                          g_param_spec_boolean ("interactive",
332                                                                "View is interactive",
333                                                                "Is the view interactive",
334                                                                FALSE,
335                                                                G_PARAM_READWRITE));
336
337         g_type_class_add_private (object_class, sizeof (EmpathyContactListViewPriv));
338 }
339
340 static void
341 empathy_contact_list_view_init (EmpathyContactListView *view)
342 {
343         EmpathyContactListViewPriv *priv;
344         GtkActionGroup            *action_group;
345         GError                    *error = NULL;
346
347         priv = GET_PRIV (view);
348
349         /* Get saved group states. */
350         empathy_contact_groups_get_all ();
351
352         /* Set up UI Manager */
353         priv->ui = gtk_ui_manager_new ();
354
355         action_group = gtk_action_group_new ("Actions");
356         gtk_action_group_set_translation_domain (action_group, GETTEXT_PACKAGE);
357         gtk_action_group_add_actions (action_group, entries, n_entries, view);
358         gtk_ui_manager_insert_action_group (priv->ui, action_group, 0);
359
360         if (!gtk_ui_manager_add_ui_from_string (priv->ui, ui_info, -1, &error)) {
361                 g_warning ("Could not build contact menus from string:'%s'", error->message);
362                 g_error_free (error);
363         }
364
365         g_object_unref (action_group);
366
367         gtk_tree_view_set_row_separator_func (GTK_TREE_VIEW (view), 
368                                               empathy_contact_list_store_row_separator_func,
369                                               NULL, NULL);
370
371         /* Connect to tree view signals rather than override. */
372         g_signal_connect (view,
373                           "button-press-event",
374                           G_CALLBACK (contact_list_view_button_press_event_cb),
375                           NULL);
376         g_signal_connect (view,
377                           "row-activated",
378                           G_CALLBACK (contact_list_view_row_activated_cb),
379                           NULL);
380         g_signal_connect (view,
381                           "row-expanded",
382                           G_CALLBACK (contact_list_view_row_expand_or_collapse_cb),
383                           GINT_TO_POINTER (TRUE));
384         g_signal_connect (view,
385                           "row-collapsed",
386                           G_CALLBACK (contact_list_view_row_expand_or_collapse_cb),
387                           GINT_TO_POINTER (FALSE));
388 }
389
390 static void
391 contact_list_view_finalize (GObject *object)
392 {
393         EmpathyContactListViewPriv *priv;
394
395         priv = GET_PRIV (object);
396
397         if (priv->ui) {
398                 g_object_unref (priv->ui);
399         }
400         if (priv->store) {
401                 g_object_unref (priv->store);
402         }
403
404         G_OBJECT_CLASS (empathy_contact_list_view_parent_class)->finalize (object);
405 }
406
407 static void
408 contact_list_view_get_property (GObject    *object,
409                                 guint       param_id,
410                                 GValue     *value,
411                                 GParamSpec *pspec)
412 {
413         EmpathyContactListViewPriv *priv;
414
415         priv = GET_PRIV (object);
416
417         switch (param_id) {
418         case PROP_INTERACTIVE:
419                 g_value_set_boolean (value, priv->interactive);
420                 break;
421         default:
422                 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
423                 break;
424         };
425 }
426
427 static void
428 contact_list_view_set_property (GObject      *object,
429                                 guint         param_id,
430                                 const GValue *value,
431                                 GParamSpec   *pspec)
432 {
433         EmpathyContactListView     *view = EMPATHY_CONTACT_LIST_VIEW (object);
434         EmpathyContactListViewPriv *priv;
435
436         priv = GET_PRIV (object);
437
438         switch (param_id) {
439         case PROP_INTERACTIVE:
440                 empathy_contact_list_view_set_interactive (view, g_value_get_boolean (value));
441                 break;
442         default:
443                 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
444                 break;
445         };
446 }
447
448 EmpathyContactListView *
449 empathy_contact_list_view_new (EmpathyContactListStore *store)
450 {
451         EmpathyContactListViewPriv *priv;
452         EmpathyContactListView     *view;
453         
454         view = g_object_new (EMPATHY_TYPE_CONTACT_LIST_VIEW, NULL);
455         priv = GET_PRIV (view);
456
457         priv->store = g_object_ref (store);
458         contact_list_view_setup (view);
459
460         return view;
461 }
462
463 void
464 empathy_contact_list_view_set_interactive (EmpathyContactListView  *view,
465                                            gboolean                 interactive)
466 {
467         EmpathyContactListViewPriv *priv = GET_PRIV (view);
468
469         g_return_if_fail (EMPATHY_IS_CONTACT_LIST_VIEW (view));
470
471         priv->interactive = interactive;
472         g_object_notify (G_OBJECT (view), "interactive");
473 }
474
475 gboolean
476 empathy_contact_list_view_get_interactive (EmpathyContactListView  *view)
477 {
478         EmpathyContactListViewPriv *priv = GET_PRIV (view);
479
480         g_return_val_if_fail (EMPATHY_IS_CONTACT_LIST_VIEW (view), FALSE);
481
482         return priv->interactive;
483 }
484
485 EmpathyContact *
486 empathy_contact_list_view_get_selected (EmpathyContactListView *view)
487 {
488         EmpathyContactListViewPriv *priv;
489         GtkTreeSelection          *selection;
490         GtkTreeIter                iter;
491         GtkTreeModel              *model;
492         EmpathyContact             *contact;
493
494         g_return_val_if_fail (EMPATHY_IS_CONTACT_LIST_VIEW (view), NULL);
495
496         priv = GET_PRIV (view);
497
498         selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (view));
499         if (!gtk_tree_selection_get_selected (selection, &model, &iter)) {
500                 return NULL;
501         }
502
503         gtk_tree_model_get (model, &iter, COL_CONTACT, &contact, -1);
504
505         return contact;
506 }
507
508 gchar *
509 empathy_contact_list_view_get_selected_group (EmpathyContactListView *view)
510 {
511         EmpathyContactListViewPriv *priv;
512         GtkTreeSelection          *selection;
513         GtkTreeIter                iter;
514         GtkTreeModel              *model;
515         gboolean                   is_group;
516         gchar                     *name;
517
518         g_return_val_if_fail (EMPATHY_IS_CONTACT_LIST_VIEW (view), NULL);
519
520         priv = GET_PRIV (view);
521
522         selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (view));
523         if (!gtk_tree_selection_get_selected (selection, &model, &iter)) {
524                 return NULL;
525         }
526
527         gtk_tree_model_get (model, &iter,
528                             COL_IS_GROUP, &is_group,
529                             COL_NAME, &name,
530                             -1);
531
532         if (!is_group) {
533                 g_free (name);
534                 return NULL;
535         }
536
537         return name;
538 }
539
540 GtkWidget *
541 empathy_contact_list_view_get_group_menu (EmpathyContactListView *view)
542 {
543         EmpathyContactListViewPriv *priv;
544         GtkWidget                 *widget;
545
546         g_return_val_if_fail (EMPATHY_IS_CONTACT_LIST_VIEW (view), NULL);
547
548         priv = GET_PRIV (view);
549
550         widget = gtk_ui_manager_get_widget (priv->ui, "/Group");
551
552         return widget;
553 }
554
555 GtkWidget *
556 empathy_contact_list_view_get_contact_menu (EmpathyContactListView *view,
557                                             EmpathyContact         *contact)
558 {
559         EmpathyLogManager *log_manager;
560         gboolean           can_show_log;
561         gboolean           can_send_file;
562         gboolean           can_voip;
563
564         g_return_val_if_fail (EMPATHY_IS_CONTACT_LIST_VIEW (view), NULL);
565         g_return_val_if_fail (EMPATHY_IS_CONTACT (contact), NULL);
566
567         log_manager = empathy_log_manager_new ();
568         can_show_log = empathy_log_manager_exists (log_manager,
569                                                    empathy_contact_get_account (contact),
570                                                    empathy_contact_get_id (contact),
571                                                    FALSE);
572         g_object_unref (log_manager);
573         can_send_file = FALSE;
574         can_voip = empathy_contact_can_voip (contact);
575
576         return contact_list_view_get_contact_menu (view,
577                                                    can_send_file,
578                                                    can_show_log,
579                                                    can_voip);
580 }
581
582 static void
583 contact_list_view_setup (EmpathyContactListView *view)
584 {
585         EmpathyContactListViewPriv *priv;
586         GtkCellRenderer           *cell;
587         GtkTreeViewColumn         *col;
588         gint                       i;
589
590         priv = GET_PRIV (view);
591
592         gtk_tree_view_set_search_equal_func (GTK_TREE_VIEW (view),
593                                              empathy_contact_list_store_search_equal_func,
594                                              NULL, NULL);
595
596         g_signal_connect (priv->store, "row-has-child-toggled",
597                           G_CALLBACK (contact_list_view_row_has_child_toggled_cb),
598                           view);
599         gtk_tree_view_set_model (GTK_TREE_VIEW (view),
600                                  GTK_TREE_MODEL (priv->store));
601
602         /* Setup view */
603         g_object_set (view,
604                       "headers-visible", FALSE,
605                       "reorderable", TRUE,
606                       "show-expanders", FALSE,
607                       NULL);
608
609         col = gtk_tree_view_column_new ();
610
611         /* State */
612         cell = gtk_cell_renderer_pixbuf_new ();
613         gtk_tree_view_column_pack_start (col, cell, FALSE);
614         gtk_tree_view_column_set_cell_data_func (
615                 col, cell,
616                 (GtkTreeCellDataFunc) contact_list_view_pixbuf_cell_data_func,
617                 view, NULL);
618
619         g_object_set (cell,
620                       "xpad", 5,
621                       "ypad", 1,
622                       "visible", FALSE,
623                       NULL);
624
625         /* Name */
626         cell = empathy_cell_renderer_text_new ();
627         gtk_tree_view_column_pack_start (col, cell, TRUE);
628         gtk_tree_view_column_set_cell_data_func (
629                 col, cell,
630                 (GtkTreeCellDataFunc) contact_list_view_text_cell_data_func,
631                 view, NULL);
632
633         gtk_tree_view_column_add_attribute (col, cell,
634                                             "name", COL_NAME);
635         gtk_tree_view_column_add_attribute (col, cell,
636                                             "status", COL_STATUS);
637         gtk_tree_view_column_add_attribute (col, cell,
638                                             "is_group", COL_IS_GROUP);
639
640 #ifdef HAVE_VOIP
641         /* Voip Capability Icon */
642         cell = empathy_cell_renderer_activatable_new ();
643         gtk_tree_view_column_pack_start (col, cell, FALSE);
644         gtk_tree_view_column_set_cell_data_func (
645                 col, cell,
646                 (GtkTreeCellDataFunc) contact_list_view_voip_cell_data_func,
647                 view, NULL);
648
649         g_object_set (cell,
650                       "visible", FALSE,
651                       NULL);
652
653         g_signal_connect (cell, "path-activated",
654                           G_CALLBACK (contact_list_view_voip_activated_cb),
655                           view);
656 #endif
657
658         /* Avatar */
659         cell = gtk_cell_renderer_pixbuf_new ();
660         gtk_tree_view_column_pack_start (col, cell, FALSE);
661         gtk_tree_view_column_set_cell_data_func (
662                 col, cell,
663                 (GtkTreeCellDataFunc) contact_list_view_avatar_cell_data_func,
664                 view, NULL);
665
666         g_object_set (cell,
667                       "xpad", 0,
668                       "ypad", 0,
669                       "visible", FALSE,
670                       "width", 32,
671                       "height", 32,
672                       NULL);
673
674         /* Expander */
675         cell = empathy_cell_renderer_expander_new ();
676         gtk_tree_view_column_pack_end (col, cell, FALSE);
677         gtk_tree_view_column_set_cell_data_func (
678                 col, cell,
679                 (GtkTreeCellDataFunc) contact_list_view_expander_cell_data_func,
680                 view, NULL);
681
682         /* Actually add the column now we have added all cell renderers */
683         gtk_tree_view_append_column (GTK_TREE_VIEW (view), col);
684
685         /* Drag & Drop. */
686         for (i = 0; i < G_N_ELEMENTS (drag_types_dest); ++i) {
687                 drag_atoms_dest[i] = gdk_atom_intern (drag_types_dest[i].target,
688                                                       FALSE);
689         }
690
691         for (i = 0; i < G_N_ELEMENTS (drag_types_source); ++i) {
692                 drag_atoms_source[i] = gdk_atom_intern (drag_types_source[i].target,
693                                                         FALSE);
694         }
695
696         /* Note: We support the COPY action too, but need to make the
697          * MOVE action the default.
698          */
699         gtk_drag_source_set (GTK_WIDGET (view),
700                              GDK_BUTTON1_MASK,
701                              drag_types_source,
702                              G_N_ELEMENTS (drag_types_source),
703                              GDK_ACTION_MOVE | GDK_ACTION_COPY);
704
705         gtk_drag_dest_set (GTK_WIDGET (view),
706                            GTK_DEST_DEFAULT_ALL,
707                            drag_types_dest,
708                            G_N_ELEMENTS (drag_types_dest),
709                            GDK_ACTION_MOVE | GDK_ACTION_COPY);
710 }
711
712 static void
713 contact_list_view_row_has_child_toggled_cb (GtkTreeModel          *model,
714                                             GtkTreePath           *path,
715                                             GtkTreeIter           *iter,
716                                             EmpathyContactListView *view)
717 {
718         gboolean  is_group = FALSE;
719         gchar    *name = NULL;
720
721         gtk_tree_model_get (model, iter,
722                             COL_IS_GROUP, &is_group,
723                             COL_NAME, &name,
724                             -1);
725
726         if (!is_group || G_STR_EMPTY (name)) {
727                 g_free (name);
728                 return;
729         }
730
731         if (empathy_contact_group_get_expanded (name)) {
732                 g_signal_handlers_block_by_func (view,
733                                                  contact_list_view_row_expand_or_collapse_cb,
734                                                  GINT_TO_POINTER (TRUE));
735                 gtk_tree_view_expand_row (GTK_TREE_VIEW (view), path, TRUE);
736                 g_signal_handlers_unblock_by_func (view,
737                                                    contact_list_view_row_expand_or_collapse_cb,
738                                                    GINT_TO_POINTER (TRUE));
739         } else {
740                 g_signal_handlers_block_by_func (view,
741                                                  contact_list_view_row_expand_or_collapse_cb,
742                                                  GINT_TO_POINTER (FALSE));
743                 gtk_tree_view_collapse_row (GTK_TREE_VIEW (view), path);
744                 g_signal_handlers_unblock_by_func (view,
745                                                    contact_list_view_row_expand_or_collapse_cb,
746                                                    GINT_TO_POINTER (FALSE));
747         }
748
749         g_free (name);
750 }
751
752 static void
753 contact_list_view_drag_data_received (GtkWidget         *widget,
754                                       GdkDragContext    *context,
755                                       gint               x,
756                                       gint               y,
757                                       GtkSelectionData  *selection,
758                                       guint              info,
759                                       guint              time)
760 {
761         EmpathyContactListViewPriv *priv;
762         EmpathyContactList         *list;
763         EmpathyContactFactory      *factory;
764         McAccount                  *account;
765         GtkTreeModel               *model;
766         GtkTreePath                *path;
767         GtkTreeViewDropPosition     position;
768         EmpathyContact             *contact = NULL;
769         const gchar                *id;
770         gchar                     **strv;
771         gchar                      *new_group = NULL;
772         gchar                      *old_group = NULL;
773         gboolean                    is_row;
774
775         priv = GET_PRIV (widget);
776
777         id = (const gchar*) selection->data;
778         empathy_debug (DEBUG_DOMAIN, "Received %s%s drag & drop contact from roster with id:'%s'",
779                       context->action == GDK_ACTION_MOVE ? "move" : "",
780                       context->action == GDK_ACTION_COPY ? "copy" : "",
781                       id);
782
783         strv = g_strsplit (id, "/", 2);
784         factory = empathy_contact_factory_new ();
785         account = mc_account_lookup (strv[0]);
786         if (account) {
787                 contact = empathy_contact_factory_get_from_id (factory,
788                                                                account,
789                                                                strv[1]);
790                 g_object_unref (account);
791         }
792         g_object_unref (factory);
793         g_strfreev (strv);
794
795         if (!contact) {
796                 empathy_debug (DEBUG_DOMAIN, "No contact found associated with drag & drop");
797                 return;
798         }
799
800         model = gtk_tree_view_get_model (GTK_TREE_VIEW (widget));
801
802         /* Get source group information. */
803         if (priv->drag_row) {
804                 path = gtk_tree_row_reference_get_path (priv->drag_row);
805                 if (path) {
806                         old_group = empathy_contact_list_store_get_parent_group (model, path, NULL);
807                         gtk_tree_path_free (path);
808                 }
809         }
810
811         /* Get destination group information. */
812         is_row = gtk_tree_view_get_dest_row_at_pos (GTK_TREE_VIEW (widget),
813                                                     x,
814                                                     y,
815                                                     &path,
816                                                     &position);
817
818         if (is_row) {
819                 new_group = empathy_contact_list_store_get_parent_group (model, path, NULL);
820                 gtk_tree_path_free (path);
821         }
822
823         empathy_debug (DEBUG_DOMAIN,
824                       "contact %s (%d) dragged from '%s' to '%s'",
825                       empathy_contact_get_id (contact),
826                       empathy_contact_get_handle (contact),
827                       old_group, new_group);
828
829         list = empathy_contact_list_store_get_list_iface (priv->store);
830         if (new_group) {
831                 empathy_contact_list_add_to_group (list, contact, new_group);
832         }
833         if (old_group && context->action == GDK_ACTION_MOVE) {  
834                 empathy_contact_list_remove_from_group (list, contact, old_group);
835         }
836
837         g_free (old_group);
838         g_free (new_group);
839
840         gtk_drag_finish (context, TRUE, FALSE, GDK_CURRENT_TIME);
841 }
842
843 static gboolean
844 contact_list_view_drag_motion (GtkWidget      *widget,
845                                GdkDragContext *context,
846                                gint            x,
847                                gint            y,
848                                guint           time)
849 {
850         static DragMotionData *dm = NULL;
851         GtkTreePath           *path;
852         gboolean               is_row;
853         gboolean               is_different = FALSE;
854         gboolean               cleanup = TRUE;
855
856         is_row = gtk_tree_view_get_path_at_pos (GTK_TREE_VIEW (widget),
857                                                 x,
858                                                 y,
859                                                 &path,
860                                                 NULL,
861                                                 NULL,
862                                                 NULL);
863
864         cleanup &= (!dm);
865
866         if (is_row) {
867                 cleanup &= (dm && gtk_tree_path_compare (dm->path, path) != 0);
868                 is_different = (!dm || (dm && gtk_tree_path_compare (dm->path, path) != 0));
869         } else {
870                 cleanup &= FALSE;
871         }
872
873         if (!is_different && !cleanup) {
874                 return TRUE;
875         }
876
877         if (dm) {
878                 gtk_tree_path_free (dm->path);
879                 if (dm->timeout_id) {
880                         g_source_remove (dm->timeout_id);
881                 }
882
883                 g_free (dm);
884
885                 dm = NULL;
886         }
887
888         if (!gtk_tree_view_row_expanded (GTK_TREE_VIEW (widget), path)) {
889                 dm = g_new0 (DragMotionData, 1);
890
891                 dm->view = EMPATHY_CONTACT_LIST_VIEW (widget);
892                 dm->path = gtk_tree_path_copy (path);
893
894                 dm->timeout_id = g_timeout_add (
895                         1500,
896                         (GSourceFunc) contact_list_view_drag_motion_cb,
897                         dm);
898         }
899
900         return TRUE;
901 }
902
903 static gboolean
904 contact_list_view_drag_motion_cb (DragMotionData *data)
905 {
906         gtk_tree_view_expand_row (GTK_TREE_VIEW (data->view),
907                                   data->path,
908                                   FALSE);
909
910         data->timeout_id = 0;
911
912         return FALSE;
913 }
914
915 static void
916 contact_list_view_drag_begin (GtkWidget      *widget,
917                               GdkDragContext *context)
918 {
919         EmpathyContactListViewPriv *priv;
920         GtkTreeSelection          *selection;
921         GtkTreeModel              *model;
922         GtkTreePath               *path;
923         GtkTreeIter                iter;
924
925         priv = GET_PRIV (widget);
926
927         GTK_WIDGET_CLASS (empathy_contact_list_view_parent_class)->drag_begin (widget,
928                                                                               context);
929
930         selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (widget));
931         if (!gtk_tree_selection_get_selected (selection, &model, &iter)) {
932                 return;
933         }
934
935         path = gtk_tree_model_get_path (model, &iter);
936         priv->drag_row = gtk_tree_row_reference_new (model, path);
937         gtk_tree_path_free (path);
938 }
939
940 static void
941 contact_list_view_drag_data_get (GtkWidget        *widget,
942                                  GdkDragContext   *context,
943                                  GtkSelectionData *selection,
944                                  guint             info,
945                                  guint             time)
946 {
947         EmpathyContactListViewPriv *priv;
948         GtkTreePath                *src_path;
949         GtkTreeIter                 iter;
950         GtkTreeModel               *model;
951         EmpathyContact             *contact;
952         McAccount                  *account;
953         const gchar                *contact_id;
954         const gchar                *account_id;
955         gchar                      *str;
956         
957
958         priv = GET_PRIV (widget);
959
960         model = gtk_tree_view_get_model (GTK_TREE_VIEW (widget));
961         if (!priv->drag_row) {
962                 return;
963         }
964
965         src_path = gtk_tree_row_reference_get_path (priv->drag_row);
966         if (!src_path) {
967                 return;
968         }
969
970         if (!gtk_tree_model_get_iter (model, &iter, src_path)) {
971                 gtk_tree_path_free (src_path);
972                 return;
973         }
974
975         gtk_tree_path_free (src_path);
976
977         contact = empathy_contact_list_view_get_selected (EMPATHY_CONTACT_LIST_VIEW (widget));
978         if (!contact) {
979                 return;
980         }
981
982         account = empathy_contact_get_account (contact);
983         account_id = mc_account_get_unique_name (account);
984         contact_id = empathy_contact_get_id (contact);
985         g_object_unref (contact);
986         str = g_strconcat (account_id, "/", contact_id, NULL);
987
988         switch (info) {
989         case DND_DRAG_TYPE_CONTACT_ID:
990                 gtk_selection_data_set (selection, drag_atoms_source[info], 8,
991                                         (guchar*)str, strlen (str) + 1);
992                 break;
993         }
994
995         g_free (str);
996 }
997
998 static void
999 contact_list_view_drag_end (GtkWidget      *widget,
1000                             GdkDragContext *context)
1001 {
1002         EmpathyContactListViewPriv *priv;
1003
1004         priv = GET_PRIV (widget);
1005
1006         GTK_WIDGET_CLASS (empathy_contact_list_view_parent_class)->drag_end (widget,
1007                                                                             context);
1008
1009         if (priv->drag_row) {
1010                 gtk_tree_row_reference_free (priv->drag_row);
1011                 priv->drag_row = NULL;
1012         }
1013 }
1014
1015 static gboolean
1016 contact_list_view_drag_drop (GtkWidget      *widget,
1017                              GdkDragContext *drag_context,
1018                              gint            x,
1019                              gint            y,
1020                              guint           time)
1021 {
1022         return FALSE;
1023 }
1024
1025 static void
1026 contact_list_view_cell_set_background (EmpathyContactListView *view,
1027                                        GtkCellRenderer       *cell,
1028                                        gboolean               is_group,
1029                                        gboolean               is_active)
1030 {
1031         GdkColor  color;
1032         GtkStyle *style;
1033
1034         style = gtk_widget_get_style (GTK_WIDGET (view));
1035
1036         if (!is_group) {
1037                 if (is_active) {
1038                         color = style->bg[GTK_STATE_SELECTED];
1039
1040                         /* Here we take the current theme colour and add it to
1041                          * the colour for white and average the two. This
1042                          * gives a colour which is inline with the theme but
1043                          * slightly whiter.
1044                          */
1045                         color.red = (color.red + (style->white).red) / 2;
1046                         color.green = (color.green + (style->white).green) / 2;
1047                         color.blue = (color.blue + (style->white).blue) / 2;
1048
1049                         g_object_set (cell,
1050                                       "cell-background-gdk", &color,
1051                                       NULL);
1052                 } else {
1053                         g_object_set (cell,
1054                                       "cell-background-gdk", NULL,
1055                                       NULL);
1056                 }
1057         } else {
1058                 g_object_set (cell,
1059                               "cell-background-gdk", NULL,
1060                               NULL);
1061         }
1062 }
1063
1064 static void
1065 contact_list_view_pixbuf_cell_data_func (GtkTreeViewColumn     *tree_column,
1066                                          GtkCellRenderer       *cell,
1067                                          GtkTreeModel          *model,
1068                                          GtkTreeIter           *iter,
1069                                          EmpathyContactListView *view)
1070 {
1071         gchar    *icon_name;
1072         gboolean  is_group;
1073         gboolean  is_active;
1074
1075         gtk_tree_model_get (model, iter,
1076                             COL_IS_GROUP, &is_group,
1077                             COL_IS_ACTIVE, &is_active,
1078                             COL_ICON_STATUS, &icon_name,
1079                             -1);
1080
1081         g_object_set (cell,
1082                       "visible", !is_group,
1083                       "icon-name", icon_name,
1084                       NULL);
1085
1086         g_free (icon_name);
1087
1088         contact_list_view_cell_set_background (view, cell, is_group, is_active);
1089 }
1090
1091 #ifdef HAVE_VOIP
1092 static void
1093 contact_list_view_voip_cell_data_func (GtkTreeViewColumn      *tree_column,
1094                                        GtkCellRenderer        *cell,
1095                                        GtkTreeModel           *model,
1096                                        GtkTreeIter            *iter,
1097                                        EmpathyContactListView *view)
1098 {
1099         gboolean is_group;
1100         gboolean is_active;
1101         gboolean can_voip;
1102
1103         gtk_tree_model_get (model, iter,
1104                             COL_IS_GROUP, &is_group,
1105                             COL_IS_ACTIVE, &is_active,
1106                             COL_CAN_VOIP, &can_voip,
1107                             -1);
1108
1109         g_object_set (cell,
1110                       "visible", !is_group && can_voip,
1111                       "icon-name", EMPATHY_IMAGE_VOIP,
1112                       NULL);
1113
1114         contact_list_view_cell_set_background (view, cell, is_group, is_active);
1115 }
1116 #endif
1117
1118 static void
1119 contact_list_view_avatar_cell_data_func (GtkTreeViewColumn     *tree_column,
1120                                          GtkCellRenderer       *cell,
1121                                          GtkTreeModel          *model,
1122                                          GtkTreeIter           *iter,
1123                                          EmpathyContactListView *view)
1124 {
1125         GdkPixbuf *pixbuf;
1126         gboolean   show_avatar;
1127         gboolean   is_group;
1128         gboolean   is_active;
1129
1130         gtk_tree_model_get (model, iter,
1131                             COL_PIXBUF_AVATAR, &pixbuf,
1132                             COL_PIXBUF_AVATAR_VISIBLE, &show_avatar,
1133                             COL_IS_GROUP, &is_group,
1134                             COL_IS_ACTIVE, &is_active,
1135                             -1);
1136
1137         g_object_set (cell,
1138                       "visible", !is_group && show_avatar,
1139                       "pixbuf", pixbuf,
1140                       NULL);
1141
1142         if (pixbuf) {
1143                 g_object_unref (pixbuf);
1144         }
1145
1146         contact_list_view_cell_set_background (view, cell, is_group, is_active);
1147 }
1148
1149 static void
1150 contact_list_view_text_cell_data_func (GtkTreeViewColumn     *tree_column,
1151                                        GtkCellRenderer       *cell,
1152                                        GtkTreeModel          *model,
1153                                        GtkTreeIter           *iter,
1154                                        EmpathyContactListView *view)
1155 {
1156         gboolean is_group;
1157         gboolean is_active;
1158         gboolean show_status;
1159
1160         gtk_tree_model_get (model, iter,
1161                             COL_IS_GROUP, &is_group,
1162                             COL_IS_ACTIVE, &is_active,
1163                             COL_STATUS_VISIBLE, &show_status,
1164                             -1);
1165
1166         g_object_set (cell,
1167                       "show-status", show_status,
1168                       NULL);
1169
1170         contact_list_view_cell_set_background (view, cell, is_group, is_active);
1171 }
1172
1173 static void
1174 contact_list_view_expander_cell_data_func (GtkTreeViewColumn     *column,
1175                                            GtkCellRenderer       *cell,
1176                                            GtkTreeModel          *model,
1177                                            GtkTreeIter           *iter,
1178                                            EmpathyContactListView *view)
1179 {
1180         gboolean is_group;
1181         gboolean is_active;
1182
1183         gtk_tree_model_get (model, iter,
1184                             COL_IS_GROUP, &is_group,
1185                             COL_IS_ACTIVE, &is_active,
1186                             -1);
1187
1188         if (gtk_tree_model_iter_has_child (model, iter)) {
1189                 GtkTreePath *path;
1190                 gboolean     row_expanded;
1191
1192                 path = gtk_tree_model_get_path (model, iter);
1193                 row_expanded = gtk_tree_view_row_expanded (GTK_TREE_VIEW (column->tree_view), path);
1194                 gtk_tree_path_free (path);
1195
1196                 g_object_set (cell,
1197                               "visible", TRUE,
1198                               "expander-style", row_expanded ? GTK_EXPANDER_EXPANDED : GTK_EXPANDER_COLLAPSED,
1199                               NULL);
1200         } else {
1201                 g_object_set (cell, "visible", FALSE, NULL);
1202         }
1203
1204         contact_list_view_cell_set_background (view, cell, is_group, is_active);
1205 }
1206
1207 static GtkWidget *
1208 contact_list_view_get_contact_menu (EmpathyContactListView *view,
1209                                     gboolean               can_send_file,
1210                                     gboolean               can_show_log,
1211                                     gboolean               can_voip)
1212 {
1213         EmpathyContactListViewPriv *priv;
1214         GtkAction                 *action;
1215         GtkWidget                 *widget;
1216
1217         priv = GET_PRIV (view);
1218
1219         /* Sort out sensitive items */
1220         action = gtk_ui_manager_get_action (priv->ui, "/Contact/Log");
1221         gtk_action_set_sensitive (action, can_show_log);
1222
1223 #ifdef HAVE_VOIP
1224         action = gtk_ui_manager_get_action (priv->ui, "/Contact/Call");
1225         gtk_action_set_sensitive (action, can_voip);
1226 #endif
1227
1228         action = gtk_ui_manager_get_action (priv->ui, "/Contact/SendFile");
1229         gtk_action_set_visible (action, can_send_file);
1230
1231         widget = gtk_ui_manager_get_widget (priv->ui, "/Contact");
1232
1233         return widget;
1234 }
1235
1236 static gboolean
1237 contact_list_view_button_press_event_cb (EmpathyContactListView *view,
1238                                          GdkEventButton        *event,
1239                                          gpointer               user_data)
1240 {
1241         EmpathyContactListViewPriv *priv;
1242         EmpathyContact             *contact;
1243         GtkTreePath               *path;
1244         GtkTreeSelection          *selection;
1245         GtkTreeModel              *model;
1246         GtkTreeIter                iter;
1247         gboolean                   row_exists;
1248         GtkWidget                 *menu;
1249
1250         priv = GET_PRIV (view);
1251
1252         if (!priv->interactive || event->button != 3) {
1253                 return FALSE;
1254         }
1255
1256         selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (view));
1257         model = gtk_tree_view_get_model (GTK_TREE_VIEW (view));
1258
1259         gtk_widget_grab_focus (GTK_WIDGET (view));
1260
1261         row_exists = gtk_tree_view_get_path_at_pos (GTK_TREE_VIEW (view),
1262                                                     event->x, event->y,
1263                                                     &path,
1264                                                     NULL, NULL, NULL);
1265         if (!row_exists) {
1266                 return FALSE;
1267         }
1268
1269         gtk_tree_selection_unselect_all (selection);
1270         gtk_tree_selection_select_path (selection, path);
1271
1272         gtk_tree_model_get_iter (model, &iter, path);
1273         gtk_tree_path_free (path);
1274
1275         gtk_tree_model_get (model, &iter, COL_CONTACT, &contact, -1);
1276
1277         if (contact) {
1278                 menu = empathy_contact_list_view_get_contact_menu (view, contact);
1279                 g_object_unref (contact);
1280         } else {
1281                 menu = empathy_contact_list_view_get_group_menu (view);
1282         }
1283
1284         if (!menu) {
1285                 return FALSE;
1286         }
1287
1288         gtk_widget_show (menu);
1289
1290         gtk_menu_popup (GTK_MENU (menu),
1291                         NULL, NULL, NULL, NULL,
1292                         event->button, event->time);
1293
1294         return TRUE;
1295 }
1296
1297 static void
1298 contact_list_view_row_activated_cb (EmpathyContactListView *view,
1299                                     GtkTreePath            *path,
1300                                     GtkTreeViewColumn      *col,
1301                                     gpointer                user_data)
1302 {
1303         EmpathyContactListViewPriv *priv = GET_PRIV (view);
1304         EmpathyContact             *contact;
1305         GtkTreeModel               *model;
1306         GtkTreeIter                 iter;
1307
1308         if (!priv->interactive) {
1309                 return;
1310         }
1311
1312         model = gtk_tree_view_get_model (GTK_TREE_VIEW (view));
1313
1314         gtk_tree_model_get_iter (model, &iter, path);
1315         gtk_tree_model_get (model, &iter, COL_CONTACT, &contact, -1);
1316
1317         if (contact) {
1318                 contact_list_view_action_activated (view, contact);
1319                 g_object_unref (contact);
1320         }
1321 }
1322
1323 #ifdef HAVE_VOIP
1324 static void
1325 contact_list_view_voip_activated_cb (EmpathyCellRendererActivatable *cell,
1326                                      const gchar                    *path_string,
1327                                      EmpathyContactListView         *view)
1328 {
1329         EmpathyContactListViewPriv *priv = GET_PRIV (view);
1330         GtkTreeModel               *model;
1331         GtkTreeIter                 iter;
1332         EmpathyContact             *contact;
1333
1334         if (!priv->interactive) {
1335                 return;
1336         }
1337
1338         model = gtk_tree_view_get_model (GTK_TREE_VIEW (view));
1339         if (!gtk_tree_model_get_iter_from_string (model, &iter, path_string)) {
1340                 return;
1341         }
1342
1343         gtk_tree_model_get (model, &iter, COL_CONTACT, &contact, -1);
1344
1345         if (contact) {
1346                 contact_list_view_voip_activated (view, contact);
1347                 g_object_unref (contact);
1348         }
1349 }
1350 #endif
1351
1352
1353 static void
1354 contact_list_view_row_expand_or_collapse_cb (EmpathyContactListView *view,
1355                                              GtkTreeIter           *iter,
1356                                              GtkTreePath           *path,
1357                                              gpointer               user_data)
1358 {
1359         GtkTreeModel *model;
1360         gchar        *name;
1361         gboolean      expanded;
1362
1363         model = gtk_tree_view_get_model (GTK_TREE_VIEW (view));
1364
1365         gtk_tree_model_get (model, iter,
1366                             COL_NAME, &name,
1367                             -1);
1368
1369         expanded = GPOINTER_TO_INT (user_data);
1370         empathy_contact_group_set_expanded (name, expanded);
1371
1372         g_free (name);
1373 }
1374
1375 static void
1376 contact_list_view_action_cb (GtkAction             *action,
1377                              EmpathyContactListView *view)
1378 {
1379         EmpathyContactListViewPriv *priv;
1380         EmpathyContact             *contact;
1381         const gchar               *name;
1382         gchar                     *group;
1383         GtkWindow                 *parent;
1384
1385         priv = GET_PRIV (view);
1386
1387         name = gtk_action_get_name (action);
1388         if (!name) {
1389                 return;
1390         }
1391
1392         empathy_debug (DEBUG_DOMAIN, "Action:'%s' activated", name);
1393
1394         contact = empathy_contact_list_view_get_selected (view);
1395         group = empathy_contact_list_view_get_selected_group (view);
1396         parent = empathy_get_toplevel_window (GTK_WIDGET (view));
1397
1398         if (contact && strcmp (name, "Chat") == 0) {
1399                 contact_list_view_action_activated (view, contact);
1400         }
1401         else if (contact && strcmp (name, "Call") == 0) {
1402                 contact_list_view_voip_activated (view, contact);
1403         }
1404         else if (contact && strcmp (name, "Information") == 0) {
1405                 empathy_contact_information_dialog_show (contact, parent, FALSE, FALSE);
1406         }
1407         else if (contact && strcmp (name, "Edit") == 0) {
1408                 empathy_contact_information_dialog_show (contact, parent, TRUE, TRUE);
1409         }
1410         else if (contact && strcmp (name, "Remove") == 0) {
1411                 /* FIXME: Ask for confirmation */
1412                 EmpathyContactList *list;
1413
1414                 list = empathy_contact_list_store_get_list_iface (priv->store);
1415                 empathy_contact_list_remove (list, contact,
1416                                              _("Sorry, I don't want you in my contact list anymore."));
1417         }
1418         else if (contact && strcmp (name, "Invite") == 0) {
1419         }
1420         else if (contact && strcmp (name, "SendFile") == 0) {
1421         }
1422         else if (contact && strcmp (name, "Log") == 0) {
1423                 empathy_log_window_show (empathy_contact_get_account (contact),
1424                                         empathy_contact_get_id (contact),
1425                                         FALSE,
1426                                         parent);
1427         }
1428         else if (group && strcmp (name, "Rename") == 0) {
1429         }
1430
1431         g_free (group);
1432         if (contact) {
1433                 g_object_unref (contact);
1434         }
1435 }
1436
1437 static void
1438 contact_list_view_action_activated (EmpathyContactListView *view,
1439                                     EmpathyContact         *contact)
1440 {
1441         MissionControl *mc;
1442
1443         mc = empathy_mission_control_new ();
1444         mission_control_request_channel (mc,
1445                                          empathy_contact_get_account (contact),
1446                                          TP_IFACE_CHANNEL_TYPE_TEXT,
1447                                          empathy_contact_get_handle (contact),
1448                                          TP_HANDLE_TYPE_CONTACT,
1449                                          NULL, NULL);
1450         g_object_unref (mc);
1451 }
1452
1453 static void
1454 contact_list_view_voip_activated (EmpathyContactListView *view,
1455                                   EmpathyContact         *contact)
1456 {
1457         empathy_call_contact (contact);
1458 }
1459