]> git.0d.be Git - empathy.git/blob - libempathy-gtk/empathy-contact-list-view.c
Switch to calling CallFactory to make calls
[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-2008 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-lib.h>
31 #include <gdk/gdkkeysyms.h>
32 #include <gtk/gtk.h>
33 #include <glade/glade.h>
34
35 #include <libmissioncontrol/mc-account.h>
36
37 #include <libempathy/empathy-call-factory.h>
38 #include <libempathy/empathy-contact-factory.h>
39 #include <libempathy/empathy-contact-list.h>
40 #include <libempathy/empathy-contact-groups.h>
41 #include <libempathy/empathy-dispatcher.h>
42 #include <libempathy/empathy-utils.h>
43
44 #include "empathy-contact-list-view.h"
45 #include "empathy-contact-list-store.h"
46 #include "empathy-images.h"
47 #include "empathy-cell-renderer-expander.h"
48 #include "empathy-cell-renderer-text.h"
49 #include "empathy-cell-renderer-activatable.h"
50 #include "empathy-ui-utils.h"
51 #include "empathy-gtk-enum-types.h"
52 #include "empathy-gtk-marshal.h"
53
54 #define DEBUG_FLAG EMPATHY_DEBUG_CONTACT
55 #include <libempathy/empathy-debug.h>
56
57 /* Active users are those which have recently changed state
58  * (e.g. online, offline or from normal to a busy state).
59  */
60
61 #define GET_PRIV(obj) EMPATHY_GET_PRIV (obj, EmpathyContactListView)
62 typedef struct {
63         EmpathyContactListStore        *store;
64         GtkTreeRowReference            *drag_row;
65         EmpathyContactListFeatureFlags  list_features;
66         EmpathyContactFeatureFlags      contact_features;
67         GtkWidget                      *tooltip_widget;
68 } EmpathyContactListViewPriv;
69
70 typedef struct {
71         EmpathyContactListView *view;
72         GtkTreePath           *path;
73         guint                  timeout_id;
74 } DragMotionData;
75
76 typedef struct {
77         EmpathyContactListView *view;
78         EmpathyContact         *contact;
79         gboolean               remove;
80 } ShowActiveData;
81
82 enum {
83         PROP_0,
84         PROP_STORE,
85         PROP_LIST_FEATURES,
86         PROP_CONTACT_FEATURES,
87 };
88
89 enum DndDragType {
90         DND_DRAG_TYPE_CONTACT_ID,
91         DND_DRAG_TYPE_URL,
92         DND_DRAG_TYPE_STRING,
93 };
94
95 static const GtkTargetEntry drag_types_dest[] = {
96         { "text/contact-id", 0, DND_DRAG_TYPE_CONTACT_ID },
97         { "text/uri-list",   0, DND_DRAG_TYPE_URL },
98         { "text/plain",      0, DND_DRAG_TYPE_STRING },
99         { "STRING",          0, DND_DRAG_TYPE_STRING },
100 };
101
102 static const GtkTargetEntry drag_types_source[] = {
103         { "text/contact-id", 0, DND_DRAG_TYPE_CONTACT_ID },
104 };
105
106 static GdkAtom drag_atoms_dest[G_N_ELEMENTS (drag_types_dest)];
107 static GdkAtom drag_atoms_source[G_N_ELEMENTS (drag_types_source)];
108
109 enum {
110         DRAG_CONTACT_RECEIVED,
111         LAST_SIGNAL
112 };
113
114 static guint signals[LAST_SIGNAL];
115
116 G_DEFINE_TYPE (EmpathyContactListView, empathy_contact_list_view, GTK_TYPE_TREE_VIEW);
117
118 static void
119 contact_list_view_tooltip_destroy_cb (GtkWidget              *widget,
120                                       EmpathyContactListView *view)
121 {
122         EmpathyContactListViewPriv *priv = GET_PRIV (view);
123         
124         if (priv->tooltip_widget) {
125                 DEBUG ("Tooltip destroyed");
126                 priv->tooltip_widget = NULL;
127                 g_object_unref (widget);
128         }
129 }
130
131 static gboolean
132 contact_list_view_query_tooltip_cb (EmpathyContactListView *view,
133                                     gint                    x,
134                                     gint                    y,
135                                     gboolean                keyboard_mode,
136                                     GtkTooltip             *tooltip,
137                                     gpointer                user_data)
138 {
139         EmpathyContactListViewPriv *priv = GET_PRIV (view);
140         EmpathyContact             *contact;
141         GtkTreeModel               *model;
142         GtkTreeIter                 iter;
143         GtkTreePath                *path;
144
145         /* FIXME: We need GTK version >= 2.12.10. See GNOME bug #504087 */
146         if (gtk_check_version (2, 12, 10)) {
147                 return FALSE;
148         }
149
150         if (!gtk_tree_view_get_tooltip_context (GTK_TREE_VIEW (view), &x, &y,
151                                                 keyboard_mode,
152                                                 &model, &path, &iter)) {
153                 return FALSE;
154         }
155
156         gtk_tree_view_set_tooltip_row (GTK_TREE_VIEW (view), tooltip, path);
157         gtk_tree_path_free (path);
158
159         gtk_tree_model_get (model, &iter,
160                             EMPATHY_CONTACT_LIST_STORE_COL_CONTACT, &contact,
161                             -1);
162         if (!contact) {
163                 return FALSE;
164         }
165
166         if (!priv->tooltip_widget) {
167                 priv->tooltip_widget = empathy_contact_widget_new (contact,
168                         EMPATHY_CONTACT_WIDGET_FOR_TOOLTIP);
169                 g_object_ref (priv->tooltip_widget);
170                 g_signal_connect (priv->tooltip_widget, "destroy",
171                                   G_CALLBACK (contact_list_view_tooltip_destroy_cb),
172                                   view);
173         } else {
174                 empathy_contact_widget_set_contact (priv->tooltip_widget,
175                                                     contact);
176         }
177
178         gtk_tooltip_set_custom (tooltip, priv->tooltip_widget);
179
180         g_object_unref (contact);
181
182         return TRUE;
183 }
184
185 static void
186 contact_list_view_drag_data_received (GtkWidget         *widget,
187                                       GdkDragContext    *context,
188                                       gint               x,
189                                       gint               y,
190                                       GtkSelectionData  *selection,
191                                       guint              info,
192                                       guint              time)
193 {
194         EmpathyContactListViewPriv *priv;
195         EmpathyContactList         *list;
196         EmpathyContactFactory      *factory;
197         McAccount                  *account;
198         GtkTreeModel               *model;
199         GtkTreePath                *path;
200         GtkTreeViewDropPosition     position;
201         EmpathyContact             *contact = NULL;
202         const gchar                *id;
203         gchar                     **strv;
204         gchar                      *new_group = NULL;
205         gchar                      *old_group = NULL;
206         gboolean                    is_row;
207
208         priv = GET_PRIV (widget);
209
210         id = (const gchar*) selection->data;
211         DEBUG ("Received %s%s drag & drop contact from roster with id:'%s'",
212                 context->action == GDK_ACTION_MOVE ? "move" : "",
213                 context->action == GDK_ACTION_COPY ? "copy" : "",
214                 id);
215
216         strv = g_strsplit (id, "/", 2);
217         factory = empathy_contact_factory_dup_singleton ();
218         account = mc_account_lookup (strv[0]);
219         if (account) {
220                 contact = empathy_contact_factory_get_from_id (factory,
221                                                                account,
222                                                                strv[1]);
223                 g_object_unref (account);
224         }
225         g_object_unref (factory);
226         g_strfreev (strv);
227
228         if (!contact) {
229                 DEBUG ("No contact found associated with drag & drop");
230                 return;
231         }
232
233         empathy_contact_run_until_ready (contact,
234                                          EMPATHY_CONTACT_READY_HANDLE,
235                                          NULL);
236
237         model = gtk_tree_view_get_model (GTK_TREE_VIEW (widget));
238
239         /* Get source group information. */
240         if (priv->drag_row) {
241                 path = gtk_tree_row_reference_get_path (priv->drag_row);
242                 if (path) {
243                         old_group = empathy_contact_list_store_get_parent_group (model, path, NULL);
244                         gtk_tree_path_free (path);
245                 }
246         }
247
248         /* Get destination group information. */
249         is_row = gtk_tree_view_get_dest_row_at_pos (GTK_TREE_VIEW (widget),
250                                                     x,
251                                                     y,
252                                                     &path,
253                                                     &position);
254
255         if (is_row) {
256                 new_group = empathy_contact_list_store_get_parent_group (model, path, NULL);
257                 gtk_tree_path_free (path);
258         }
259
260         DEBUG ("contact %s (%d) dragged from '%s' to '%s'",
261                 empathy_contact_get_id (contact),
262                 empathy_contact_get_handle (contact),
263                 old_group, new_group);
264
265         list = empathy_contact_list_store_get_list_iface (priv->store);
266         if (new_group) {
267                 empathy_contact_list_add_to_group (list, contact, new_group);
268         }
269         if (old_group && context->action == GDK_ACTION_MOVE) {  
270                 empathy_contact_list_remove_from_group (list, contact, old_group);
271         }
272
273         g_free (old_group);
274         g_free (new_group);
275
276         gtk_drag_finish (context, TRUE, FALSE, GDK_CURRENT_TIME);
277 }
278
279 static gboolean
280 contact_list_view_drag_motion_cb (DragMotionData *data)
281 {
282         gtk_tree_view_expand_row (GTK_TREE_VIEW (data->view),
283                                   data->path,
284                                   FALSE);
285
286         data->timeout_id = 0;
287
288         return FALSE;
289 }
290
291 static gboolean
292 contact_list_view_drag_motion (GtkWidget      *widget,
293                                GdkDragContext *context,
294                                gint            x,
295                                gint            y,
296                                guint           time)
297 {
298         static DragMotionData *dm = NULL;
299         GtkTreePath           *path;
300         gboolean               is_row;
301         gboolean               is_different = FALSE;
302         gboolean               cleanup = TRUE;
303
304         is_row = gtk_tree_view_get_path_at_pos (GTK_TREE_VIEW (widget),
305                                                 x,
306                                                 y,
307                                                 &path,
308                                                 NULL,
309                                                 NULL,
310                                                 NULL);
311
312         cleanup &= (!dm);
313
314         if (is_row) {
315                 cleanup &= (dm && gtk_tree_path_compare (dm->path, path) != 0);
316                 is_different = (!dm || (dm && gtk_tree_path_compare (dm->path, path) != 0));
317         } else {
318                 cleanup &= FALSE;
319         }
320
321         if (!is_different && !cleanup) {
322                 return TRUE;
323         }
324
325         if (dm) {
326                 gtk_tree_path_free (dm->path);
327                 if (dm->timeout_id) {
328                         g_source_remove (dm->timeout_id);
329                 }
330
331                 g_free (dm);
332
333                 dm = NULL;
334         }
335
336         if (!gtk_tree_view_row_expanded (GTK_TREE_VIEW (widget), path)) {
337                 dm = g_new0 (DragMotionData, 1);
338
339                 dm->view = EMPATHY_CONTACT_LIST_VIEW (widget);
340                 dm->path = gtk_tree_path_copy (path);
341
342                 dm->timeout_id = g_timeout_add_seconds (1,
343                         (GSourceFunc) contact_list_view_drag_motion_cb,
344                         dm);
345         }
346
347         return TRUE;
348 }
349
350 static void
351 contact_list_view_drag_begin (GtkWidget      *widget,
352                               GdkDragContext *context)
353 {
354         EmpathyContactListViewPriv *priv;
355         GtkTreeSelection          *selection;
356         GtkTreeModel              *model;
357         GtkTreePath               *path;
358         GtkTreeIter                iter;
359
360         priv = GET_PRIV (widget);
361
362         GTK_WIDGET_CLASS (empathy_contact_list_view_parent_class)->drag_begin (widget,
363                                                                               context);
364
365         selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (widget));
366         if (!gtk_tree_selection_get_selected (selection, &model, &iter)) {
367                 return;
368         }
369
370         path = gtk_tree_model_get_path (model, &iter);
371         priv->drag_row = gtk_tree_row_reference_new (model, path);
372         gtk_tree_path_free (path);
373 }
374
375 static void
376 contact_list_view_drag_data_get (GtkWidget        *widget,
377                                  GdkDragContext   *context,
378                                  GtkSelectionData *selection,
379                                  guint             info,
380                                  guint             time)
381 {
382         EmpathyContactListViewPriv *priv;
383         GtkTreePath                *src_path;
384         GtkTreeIter                 iter;
385         GtkTreeModel               *model;
386         EmpathyContact             *contact;
387         McAccount                  *account;
388         const gchar                *contact_id;
389         const gchar                *account_id;
390         gchar                      *str;
391
392         priv = GET_PRIV (widget);
393
394         model = gtk_tree_view_get_model (GTK_TREE_VIEW (widget));
395         if (!priv->drag_row) {
396                 return;
397         }
398
399         src_path = gtk_tree_row_reference_get_path (priv->drag_row);
400         if (!src_path) {
401                 return;
402         }
403
404         if (!gtk_tree_model_get_iter (model, &iter, src_path)) {
405                 gtk_tree_path_free (src_path);
406                 return;
407         }
408
409         gtk_tree_path_free (src_path);
410
411         contact = empathy_contact_list_view_get_selected (EMPATHY_CONTACT_LIST_VIEW (widget));
412         if (!contact) {
413                 return;
414         }
415
416         account = empathy_contact_get_account (contact);
417         account_id = mc_account_get_unique_name (account);
418         contact_id = empathy_contact_get_id (contact);
419         g_object_unref (contact);
420         str = g_strconcat (account_id, "/", contact_id, NULL);
421
422         switch (info) {
423         case DND_DRAG_TYPE_CONTACT_ID:
424                 gtk_selection_data_set (selection, drag_atoms_source[info], 8,
425                                         (guchar*)str, strlen (str) + 1);
426                 break;
427         }
428
429         g_free (str);
430 }
431
432 static void
433 contact_list_view_drag_end (GtkWidget      *widget,
434                             GdkDragContext *context)
435 {
436         EmpathyContactListViewPriv *priv;
437
438         priv = GET_PRIV (widget);
439
440         GTK_WIDGET_CLASS (empathy_contact_list_view_parent_class)->drag_end (widget,
441                                                                             context);
442
443         if (priv->drag_row) {
444                 gtk_tree_row_reference_free (priv->drag_row);
445                 priv->drag_row = NULL;
446         }
447 }
448
449 static gboolean
450 contact_list_view_drag_drop (GtkWidget      *widget,
451                              GdkDragContext *drag_context,
452                              gint            x,
453                              gint            y,
454                              guint           time)
455 {
456         return FALSE;
457 }
458
459 typedef struct {
460         EmpathyContactListView *view;
461         guint                   button;
462         guint32                 time;
463 } MenuPopupData;
464
465 static gboolean
466 contact_list_view_popup_menu_idle_cb (gpointer user_data)
467 {
468         MenuPopupData *data = user_data;
469         GtkWidget     *menu;
470
471         menu = empathy_contact_list_view_get_contact_menu (data->view);
472         if (!menu) {
473                 menu = empathy_contact_list_view_get_group_menu (data->view);
474         }
475
476         if (menu) {
477                 gtk_widget_show (menu);
478                 gtk_menu_popup (GTK_MENU (menu),
479                                 NULL, NULL, NULL, NULL,
480                                 data->button, data->time);
481         }
482
483         g_slice_free (MenuPopupData, data);
484
485         return FALSE;
486 }
487
488 static gboolean
489 contact_list_view_button_press_event_cb (EmpathyContactListView *view,
490                                          GdkEventButton         *event,
491                                          gpointer                user_data)
492 {
493         if (event->button == 3) {
494                 MenuPopupData *data;
495
496                 data = g_slice_new (MenuPopupData);
497                 data->view = view;
498                 data->button = event->button;
499                 data->time = event->time;
500                 g_idle_add (contact_list_view_popup_menu_idle_cb, data);
501         }
502
503         return FALSE;
504 }
505
506 static gboolean
507 contact_list_view_key_press_event_cb (EmpathyContactListView *view,
508                                       GdkEventKey            *event,
509                                       gpointer                user_data)
510 {
511         if (event->keyval == GDK_Menu) {
512                 MenuPopupData *data;
513
514                 data = g_slice_new (MenuPopupData);
515                 data->view = view;
516                 data->button = 0;
517                 data->time = event->time;
518                 g_idle_add (contact_list_view_popup_menu_idle_cb, data);
519         }
520
521         return FALSE;
522 }
523
524 static void
525 contact_list_view_row_activated (GtkTreeView       *view,
526                                  GtkTreePath       *path,
527                                  GtkTreeViewColumn *column)
528 {
529         EmpathyContactListViewPriv *priv = GET_PRIV (view);
530         EmpathyContact             *contact;
531         GtkTreeModel               *model;
532         GtkTreeIter                 iter;
533
534         if (!(priv->contact_features & EMPATHY_CONTACT_FEATURE_CHAT)) {
535                 return;
536         }
537
538         model = GTK_TREE_MODEL (priv->store);
539         gtk_tree_model_get_iter (model, &iter, path);
540         gtk_tree_model_get (model, &iter,
541                             EMPATHY_CONTACT_LIST_STORE_COL_CONTACT, &contact,
542                             -1);
543
544         if (contact) {
545                 DEBUG ("Starting a chat");
546                 empathy_dispatcher_chat_with_contact (contact, NULL, NULL);
547                 g_object_unref (contact);
548         }
549 }
550
551 static void
552 contact_list_view_voip_activated_cb (EmpathyCellRendererActivatable *cell,
553                                      const gchar                    *path_string,
554                                      EmpathyContactListView         *view)
555 {
556         EmpathyContactListViewPriv *priv = GET_PRIV (view);
557         GtkTreeModel               *model;
558         GtkTreeIter                 iter;
559         EmpathyContact             *contact;
560
561         if (!(priv->contact_features & EMPATHY_CONTACT_FEATURE_CALL)) {
562                 return;
563         }
564
565         model = gtk_tree_view_get_model (GTK_TREE_VIEW (view));
566         if (!gtk_tree_model_get_iter_from_string (model, &iter, path_string)) {
567                 return;
568         }
569
570         gtk_tree_model_get (model, &iter,
571                             EMPATHY_CONTACT_LIST_STORE_COL_CONTACT, &contact,
572                             -1);
573
574         if (contact) {
575                 EmpathyCallFactory *factory;
576
577                 factory = empathy_call_factory_get ();
578                 empathy_call_factory_new_call (factory, contact);
579
580                 g_object_unref (contact);
581         }
582 }
583
584 static void
585 contact_list_view_cell_set_background (EmpathyContactListView *view,
586                                        GtkCellRenderer       *cell,
587                                        gboolean               is_group,
588                                        gboolean               is_active)
589 {
590         GdkColor  color;
591         GtkStyle *style;
592
593         style = gtk_widget_get_style (GTK_WIDGET (view));
594
595         if (!is_group && is_active) {
596                 color = style->bg[GTK_STATE_SELECTED];
597
598                 /* Here we take the current theme colour and add it to
599                  * the colour for white and average the two. This
600                  * gives a colour which is inline with the theme but
601                  * slightly whiter.
602                  */
603                 color.red = (color.red + (style->white).red) / 2;
604                 color.green = (color.green + (style->white).green) / 2;
605                 color.blue = (color.blue + (style->white).blue) / 2;
606
607                 g_object_set (cell,
608                               "cell-background-gdk", &color,
609                               NULL);
610         } else {
611                 g_object_set (cell,
612                               "cell-background-gdk", NULL,
613                               NULL);
614         }
615 }
616
617 static void
618 contact_list_view_pixbuf_cell_data_func (GtkTreeViewColumn     *tree_column,
619                                          GtkCellRenderer       *cell,
620                                          GtkTreeModel          *model,
621                                          GtkTreeIter           *iter,
622                                          EmpathyContactListView *view)
623 {
624         gchar    *icon_name;
625         gboolean  is_group;
626         gboolean  is_active;
627
628         gtk_tree_model_get (model, iter,
629                             EMPATHY_CONTACT_LIST_STORE_COL_IS_GROUP, &is_group,
630                             EMPATHY_CONTACT_LIST_STORE_COL_IS_ACTIVE, &is_active,
631                             EMPATHY_CONTACT_LIST_STORE_COL_ICON_STATUS, &icon_name,
632                             -1);
633
634         g_object_set (cell,
635                       "visible", !is_group,
636                       "icon-name", icon_name,
637                       NULL);
638
639         g_free (icon_name);
640
641         contact_list_view_cell_set_background (view, cell, is_group, is_active);
642 }
643
644 static void
645 contact_list_view_voip_cell_data_func (GtkTreeViewColumn      *tree_column,
646                                        GtkCellRenderer        *cell,
647                                        GtkTreeModel           *model,
648                                        GtkTreeIter            *iter,
649                                        EmpathyContactListView *view)
650 {
651         gboolean is_group;
652         gboolean is_active;
653         gboolean can_voip;
654
655         gtk_tree_model_get (model, iter,
656                             EMPATHY_CONTACT_LIST_STORE_COL_IS_GROUP, &is_group,
657                             EMPATHY_CONTACT_LIST_STORE_COL_IS_ACTIVE, &is_active,
658                             EMPATHY_CONTACT_LIST_STORE_COL_CAN_VOIP, &can_voip,
659                             -1);
660
661         g_object_set (cell,
662                       "visible", !is_group && can_voip,
663                       "icon-name", EMPATHY_IMAGE_VOIP,
664                       NULL);
665
666         contact_list_view_cell_set_background (view, cell, is_group, is_active);
667 }
668
669 static void
670 contact_list_view_avatar_cell_data_func (GtkTreeViewColumn     *tree_column,
671                                          GtkCellRenderer       *cell,
672                                          GtkTreeModel          *model,
673                                          GtkTreeIter           *iter,
674                                          EmpathyContactListView *view)
675 {
676         GdkPixbuf *pixbuf;
677         gboolean   show_avatar;
678         gboolean   is_group;
679         gboolean   is_active;
680
681         gtk_tree_model_get (model, iter,
682                             EMPATHY_CONTACT_LIST_STORE_COL_PIXBUF_AVATAR, &pixbuf,
683                             EMPATHY_CONTACT_LIST_STORE_COL_PIXBUF_AVATAR_VISIBLE, &show_avatar,
684                             EMPATHY_CONTACT_LIST_STORE_COL_IS_GROUP, &is_group,
685                             EMPATHY_CONTACT_LIST_STORE_COL_IS_ACTIVE, &is_active,
686                             -1);
687
688         g_object_set (cell,
689                       "visible", !is_group && show_avatar,
690                       "pixbuf", pixbuf,
691                       NULL);
692
693         if (pixbuf) {
694                 g_object_unref (pixbuf);
695         }
696
697         contact_list_view_cell_set_background (view, cell, is_group, is_active);
698 }
699
700 static void
701 contact_list_view_text_cell_data_func (GtkTreeViewColumn     *tree_column,
702                                        GtkCellRenderer       *cell,
703                                        GtkTreeModel          *model,
704                                        GtkTreeIter           *iter,
705                                        EmpathyContactListView *view)
706 {
707         gboolean is_group;
708         gboolean is_active;
709         gboolean show_status;
710
711         gtk_tree_model_get (model, iter,
712                             EMPATHY_CONTACT_LIST_STORE_COL_IS_GROUP, &is_group,
713                             EMPATHY_CONTACT_LIST_STORE_COL_IS_ACTIVE, &is_active,
714                             EMPATHY_CONTACT_LIST_STORE_COL_STATUS_VISIBLE, &show_status,
715                             -1);
716
717         g_object_set (cell,
718                       "show-status", show_status,
719                       NULL);
720
721         contact_list_view_cell_set_background (view, cell, is_group, is_active);
722 }
723
724 static void
725 contact_list_view_expander_cell_data_func (GtkTreeViewColumn     *column,
726                                            GtkCellRenderer       *cell,
727                                            GtkTreeModel          *model,
728                                            GtkTreeIter           *iter,
729                                            EmpathyContactListView *view)
730 {
731         gboolean is_group;
732         gboolean is_active;
733
734         gtk_tree_model_get (model, iter,
735                             EMPATHY_CONTACT_LIST_STORE_COL_IS_GROUP, &is_group,
736                             EMPATHY_CONTACT_LIST_STORE_COL_IS_ACTIVE, &is_active,
737                             -1);
738
739         if (gtk_tree_model_iter_has_child (model, iter)) {
740                 GtkTreePath *path;
741                 gboolean     row_expanded;
742
743                 path = gtk_tree_model_get_path (model, iter);
744                 row_expanded = gtk_tree_view_row_expanded (GTK_TREE_VIEW (column->tree_view), path);
745                 gtk_tree_path_free (path);
746
747                 g_object_set (cell,
748                               "visible", TRUE,
749                               "expander-style", row_expanded ? GTK_EXPANDER_EXPANDED : GTK_EXPANDER_COLLAPSED,
750                               NULL);
751         } else {
752                 g_object_set (cell, "visible", FALSE, NULL);
753         }
754
755         contact_list_view_cell_set_background (view, cell, is_group, is_active);
756 }
757
758 static void
759 contact_list_view_row_expand_or_collapse_cb (EmpathyContactListView *view,
760                                              GtkTreeIter           *iter,
761                                              GtkTreePath           *path,
762                                              gpointer               user_data)
763 {
764         EmpathyContactListViewPriv *priv = GET_PRIV (view);
765         GtkTreeModel               *model;
766         gchar                      *name;
767         gboolean                    expanded;
768
769         if (!(priv->list_features & EMPATHY_CONTACT_LIST_FEATURE_GROUPS_SAVE)) {
770                 return;
771         }
772
773         model = gtk_tree_view_get_model (GTK_TREE_VIEW (view));
774
775         gtk_tree_model_get (model, iter,
776                             EMPATHY_CONTACT_LIST_STORE_COL_NAME, &name,
777                             -1);
778
779         expanded = GPOINTER_TO_INT (user_data);
780         empathy_contact_group_set_expanded (name, expanded);
781
782         g_free (name);
783 }
784
785 static void
786 contact_list_view_row_has_child_toggled_cb (GtkTreeModel          *model,
787                                             GtkTreePath           *path,
788                                             GtkTreeIter           *iter,
789                                             EmpathyContactListView *view)
790 {
791         EmpathyContactListViewPriv *priv = GET_PRIV (view);
792         gboolean  is_group = FALSE;
793         gchar    *name = NULL;
794
795         gtk_tree_model_get (model, iter,
796                             EMPATHY_CONTACT_LIST_STORE_COL_IS_GROUP, &is_group,
797                             EMPATHY_CONTACT_LIST_STORE_COL_NAME, &name,
798                             -1);
799
800         if (!is_group || EMP_STR_EMPTY (name)) {
801                 g_free (name);
802                 return;
803         }
804
805         if (!(priv->list_features & EMPATHY_CONTACT_LIST_FEATURE_GROUPS_SAVE) ||
806             empathy_contact_group_get_expanded (name)) {
807                 g_signal_handlers_block_by_func (view,
808                                                  contact_list_view_row_expand_or_collapse_cb,
809                                                  GINT_TO_POINTER (TRUE));
810                 gtk_tree_view_expand_row (GTK_TREE_VIEW (view), path, TRUE);
811                 g_signal_handlers_unblock_by_func (view,
812                                                    contact_list_view_row_expand_or_collapse_cb,
813                                                    GINT_TO_POINTER (TRUE));
814         } else {
815                 g_signal_handlers_block_by_func (view,
816                                                  contact_list_view_row_expand_or_collapse_cb,
817                                                  GINT_TO_POINTER (FALSE));
818                 gtk_tree_view_collapse_row (GTK_TREE_VIEW (view), path);
819                 g_signal_handlers_unblock_by_func (view,
820                                                    contact_list_view_row_expand_or_collapse_cb,
821                                                    GINT_TO_POINTER (FALSE));
822         }
823
824         g_free (name);
825 }
826
827 static void
828 contact_list_view_setup (EmpathyContactListView *view)
829 {
830         EmpathyContactListViewPriv *priv;
831         GtkCellRenderer           *cell;
832         GtkTreeViewColumn         *col;
833         gint                       i;
834
835         priv = GET_PRIV (view);
836
837         gtk_tree_view_set_search_equal_func (GTK_TREE_VIEW (view),
838                                              empathy_contact_list_store_search_equal_func,
839                                              NULL, NULL);
840
841         g_signal_connect (priv->store, "row-has-child-toggled",
842                           G_CALLBACK (contact_list_view_row_has_child_toggled_cb),
843                           view);
844         gtk_tree_view_set_model (GTK_TREE_VIEW (view),
845                                  GTK_TREE_MODEL (priv->store));
846
847         /* Setup view */
848         g_object_set (view,
849                       "headers-visible", FALSE,
850                       "reorderable", TRUE,
851                       "show-expanders", FALSE,
852                       NULL);
853
854         col = gtk_tree_view_column_new ();
855
856         /* State */
857         cell = gtk_cell_renderer_pixbuf_new ();
858         gtk_tree_view_column_pack_start (col, cell, FALSE);
859         gtk_tree_view_column_set_cell_data_func (
860                 col, cell,
861                 (GtkTreeCellDataFunc) contact_list_view_pixbuf_cell_data_func,
862                 view, NULL);
863
864         g_object_set (cell,
865                       "xpad", 5,
866                       "ypad", 1,
867                       "visible", FALSE,
868                       NULL);
869
870         /* Name */
871         cell = empathy_cell_renderer_text_new ();
872         gtk_tree_view_column_pack_start (col, cell, TRUE);
873         gtk_tree_view_column_set_cell_data_func (
874                 col, cell,
875                 (GtkTreeCellDataFunc) contact_list_view_text_cell_data_func,
876                 view, NULL);
877
878         gtk_tree_view_column_add_attribute (col, cell,
879                                             "name", EMPATHY_CONTACT_LIST_STORE_COL_NAME);
880         gtk_tree_view_column_add_attribute (col, cell,
881                                             "status", EMPATHY_CONTACT_LIST_STORE_COL_STATUS);
882         gtk_tree_view_column_add_attribute (col, cell,
883                                             "is_group", EMPATHY_CONTACT_LIST_STORE_COL_IS_GROUP);
884
885         /* Voip Capability Icon */
886         cell = empathy_cell_renderer_activatable_new ();
887         gtk_tree_view_column_pack_start (col, cell, FALSE);
888         gtk_tree_view_column_set_cell_data_func (
889                 col, cell,
890                 (GtkTreeCellDataFunc) contact_list_view_voip_cell_data_func,
891                 view, NULL);
892
893         g_object_set (cell,
894                       "visible", FALSE,
895                       NULL);
896
897         g_signal_connect (cell, "path-activated",
898                           G_CALLBACK (contact_list_view_voip_activated_cb),
899                           view);
900
901         /* Avatar */
902         cell = gtk_cell_renderer_pixbuf_new ();
903         gtk_tree_view_column_pack_start (col, cell, FALSE);
904         gtk_tree_view_column_set_cell_data_func (
905                 col, cell,
906                 (GtkTreeCellDataFunc) contact_list_view_avatar_cell_data_func,
907                 view, NULL);
908
909         g_object_set (cell,
910                       "xpad", 0,
911                       "ypad", 0,
912                       "visible", FALSE,
913                       "width", 32,
914                       "height", 32,
915                       NULL);
916
917         /* Expander */
918         cell = empathy_cell_renderer_expander_new ();
919         gtk_tree_view_column_pack_end (col, cell, FALSE);
920         gtk_tree_view_column_set_cell_data_func (
921                 col, cell,
922                 (GtkTreeCellDataFunc) contact_list_view_expander_cell_data_func,
923                 view, NULL);
924
925         /* Actually add the column now we have added all cell renderers */
926         gtk_tree_view_append_column (GTK_TREE_VIEW (view), col);
927
928         /* Drag & Drop. */
929         for (i = 0; i < G_N_ELEMENTS (drag_types_dest); ++i) {
930                 drag_atoms_dest[i] = gdk_atom_intern (drag_types_dest[i].target,
931                                                       FALSE);
932         }
933
934         for (i = 0; i < G_N_ELEMENTS (drag_types_source); ++i) {
935                 drag_atoms_source[i] = gdk_atom_intern (drag_types_source[i].target,
936                                                         FALSE);
937         }
938 }
939
940 static void
941 contact_list_view_set_list_features (EmpathyContactListView         *view,
942                                      EmpathyContactListFeatureFlags  features)
943 {
944         EmpathyContactListViewPriv *priv = GET_PRIV (view);
945         gboolean                    has_tooltip;
946
947         g_return_if_fail (EMPATHY_IS_CONTACT_LIST_VIEW (view));
948
949         priv->list_features = features;
950
951         /* Update DnD source/dest */
952         if (features & EMPATHY_CONTACT_LIST_FEATURE_CONTACT_DRAG) {
953                 gtk_drag_source_set (GTK_WIDGET (view),
954                                      GDK_BUTTON1_MASK,
955                                      drag_types_source,
956                                      G_N_ELEMENTS (drag_types_source),
957                                      GDK_ACTION_MOVE | GDK_ACTION_COPY);
958         } else {
959                 gtk_drag_source_unset (GTK_WIDGET (view));
960
961         }
962
963         if (features & EMPATHY_CONTACT_LIST_FEATURE_CONTACT_DROP) {
964                 gtk_drag_dest_set (GTK_WIDGET (view),
965                                    GTK_DEST_DEFAULT_ALL,
966                                    drag_types_dest,
967                                    G_N_ELEMENTS (drag_types_dest),
968                                    GDK_ACTION_MOVE | GDK_ACTION_COPY);
969         } else {
970                 /* FIXME: URI could still be droped depending on FT feature */
971                 gtk_drag_dest_unset (GTK_WIDGET (view));
972         }
973
974         /* Update has-tooltip */
975         has_tooltip = (features & EMPATHY_CONTACT_LIST_FEATURE_CONTACT_TOOLTIP) != 0;
976         gtk_widget_set_has_tooltip (GTK_WIDGET (view), has_tooltip);
977 }
978
979 static void
980 contact_list_view_finalize (GObject *object)
981 {
982         EmpathyContactListViewPriv *priv;
983
984         priv = GET_PRIV (object);
985
986         if (priv->store) {
987                 g_object_unref (priv->store);
988         }
989         if (priv->tooltip_widget) {
990                 gtk_widget_destroy (priv->tooltip_widget);
991         }
992
993         G_OBJECT_CLASS (empathy_contact_list_view_parent_class)->finalize (object);
994 }
995
996 static void
997 contact_list_view_get_property (GObject    *object,
998                                 guint       param_id,
999                                 GValue     *value,
1000                                 GParamSpec *pspec)
1001 {
1002         EmpathyContactListViewPriv *priv;
1003
1004         priv = GET_PRIV (object);
1005
1006         switch (param_id) {
1007         case PROP_STORE:
1008                 g_value_set_object (value, priv->store);
1009                 break;
1010         case PROP_LIST_FEATURES:
1011                 g_value_set_flags (value, priv->list_features);
1012                 break;
1013         case PROP_CONTACT_FEATURES:
1014                 g_value_set_flags (value, priv->contact_features);
1015                 break;
1016         default:
1017                 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
1018                 break;
1019         };
1020 }
1021
1022 static void
1023 contact_list_view_set_property (GObject      *object,
1024                                 guint         param_id,
1025                                 const GValue *value,
1026                                 GParamSpec   *pspec)
1027 {
1028         EmpathyContactListView     *view = EMPATHY_CONTACT_LIST_VIEW (object);
1029         EmpathyContactListViewPriv *priv = GET_PRIV (object);
1030
1031         switch (param_id) {
1032         case PROP_STORE:
1033                 priv->store = g_value_dup_object (value);
1034                 contact_list_view_setup (view);
1035                 break;
1036         case PROP_LIST_FEATURES:
1037                 contact_list_view_set_list_features (view, g_value_get_flags (value));
1038                 break;
1039         case PROP_CONTACT_FEATURES:
1040                 priv->contact_features = g_value_get_flags (value);
1041                 break;
1042         default:
1043                 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
1044                 break;
1045         };
1046 }
1047
1048 static void
1049 empathy_contact_list_view_class_init (EmpathyContactListViewClass *klass)
1050 {
1051         GObjectClass     *object_class = G_OBJECT_CLASS (klass);
1052         GtkWidgetClass   *widget_class = GTK_WIDGET_CLASS (klass);
1053         GtkTreeViewClass *tree_view_class = GTK_TREE_VIEW_CLASS (klass);
1054
1055         object_class->finalize = contact_list_view_finalize;
1056         object_class->get_property = contact_list_view_get_property;
1057         object_class->set_property = contact_list_view_set_property;
1058
1059         widget_class->drag_data_received = contact_list_view_drag_data_received;
1060         widget_class->drag_drop          = contact_list_view_drag_drop;
1061         widget_class->drag_begin         = contact_list_view_drag_begin;
1062         widget_class->drag_data_get      = contact_list_view_drag_data_get;
1063         widget_class->drag_end           = contact_list_view_drag_end;
1064         widget_class->drag_motion        = contact_list_view_drag_motion;
1065
1066         /* We use the class method to let user of this widget to connect to
1067          * the signal and stop emission of the signal so the default handler
1068          * won't be called. */
1069         tree_view_class->row_activated = contact_list_view_row_activated;
1070
1071         signals[DRAG_CONTACT_RECEIVED] =
1072                 g_signal_new ("drag-contact-received",
1073                               G_OBJECT_CLASS_TYPE (klass),
1074                               G_SIGNAL_RUN_LAST,
1075                               0,
1076                               NULL, NULL,
1077                               _empathy_gtk_marshal_VOID__OBJECT_STRING_STRING,
1078                               G_TYPE_NONE,
1079                               3, EMPATHY_TYPE_CONTACT, G_TYPE_STRING, G_TYPE_STRING);
1080
1081         g_object_class_install_property (object_class,
1082                                          PROP_STORE,
1083                                          g_param_spec_object ("store",
1084                                                              "The store of the view",
1085                                                              "The store of the view",
1086                                                               EMPATHY_TYPE_CONTACT_LIST_STORE,
1087                                                               G_PARAM_CONSTRUCT_ONLY | G_PARAM_READWRITE));
1088         g_object_class_install_property (object_class,
1089                                          PROP_LIST_FEATURES,
1090                                          g_param_spec_flags ("list-features",
1091                                                              "Features of the view",
1092                                                              "Falgs for all enabled features",
1093                                                               EMPATHY_TYPE_CONTACT_LIST_FEATURE_FLAGS,
1094                                                               EMPATHY_CONTACT_LIST_FEATURE_NONE,
1095                                                               G_PARAM_READWRITE));
1096         g_object_class_install_property (object_class,
1097                                          PROP_CONTACT_FEATURES,
1098                                          g_param_spec_flags ("contact-features",
1099                                                              "Features of the contact menu",
1100                                                              "Falgs for all enabled features for the menu",
1101                                                               EMPATHY_TYPE_CONTACT_FEATURE_FLAGS,
1102                                                               EMPATHY_CONTACT_FEATURE_NONE,
1103                                                               G_PARAM_READWRITE));
1104
1105         g_type_class_add_private (object_class, sizeof (EmpathyContactListViewPriv));
1106 }
1107
1108 static void
1109 empathy_contact_list_view_init (EmpathyContactListView *view)
1110 {
1111         EmpathyContactListViewPriv *priv = G_TYPE_INSTANCE_GET_PRIVATE (view,
1112                 EMPATHY_TYPE_CONTACT_LIST_VIEW, EmpathyContactListViewPriv);
1113
1114         view->priv = priv;
1115         /* Get saved group states. */
1116         empathy_contact_groups_get_all ();
1117
1118         gtk_tree_view_set_row_separator_func (GTK_TREE_VIEW (view), 
1119                                               empathy_contact_list_store_row_separator_func,
1120                                               NULL, NULL);
1121
1122         /* Connect to tree view signals rather than override. */
1123         g_signal_connect (view, "button-press-event",
1124                           G_CALLBACK (contact_list_view_button_press_event_cb),
1125                           NULL);
1126         g_signal_connect (view, "key-press-event",
1127                           G_CALLBACK (contact_list_view_key_press_event_cb),
1128                           NULL);
1129         g_signal_connect (view, "row-expanded",
1130                           G_CALLBACK (contact_list_view_row_expand_or_collapse_cb),
1131                           GINT_TO_POINTER (TRUE));
1132         g_signal_connect (view, "row-collapsed",
1133                           G_CALLBACK (contact_list_view_row_expand_or_collapse_cb),
1134                           GINT_TO_POINTER (FALSE));
1135         g_signal_connect (view, "query-tooltip",
1136                           G_CALLBACK (contact_list_view_query_tooltip_cb),
1137                           NULL);
1138 }
1139
1140 EmpathyContactListView *
1141 empathy_contact_list_view_new (EmpathyContactListStore        *store,
1142                                EmpathyContactListFeatureFlags  list_features,
1143                                EmpathyContactFeatureFlags      contact_features)
1144 {
1145         g_return_val_if_fail (EMPATHY_IS_CONTACT_LIST_STORE (store), NULL);
1146         
1147         return g_object_new (EMPATHY_TYPE_CONTACT_LIST_VIEW,
1148                              "store", store,
1149                              "contact-features", contact_features,
1150                              "list-features", list_features,
1151                              NULL);
1152 }
1153
1154 EmpathyContact *
1155 empathy_contact_list_view_get_selected (EmpathyContactListView *view)
1156 {
1157         EmpathyContactListViewPriv *priv;
1158         GtkTreeSelection          *selection;
1159         GtkTreeIter                iter;
1160         GtkTreeModel              *model;
1161         EmpathyContact             *contact;
1162
1163         g_return_val_if_fail (EMPATHY_IS_CONTACT_LIST_VIEW (view), NULL);
1164
1165         priv = GET_PRIV (view);
1166
1167         selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (view));
1168         if (!gtk_tree_selection_get_selected (selection, &model, &iter)) {
1169                 return NULL;
1170         }
1171
1172         gtk_tree_model_get (model, &iter,
1173                             EMPATHY_CONTACT_LIST_STORE_COL_CONTACT, &contact,
1174                             -1);
1175
1176         return contact;
1177 }
1178
1179 gchar *
1180 empathy_contact_list_view_get_selected_group (EmpathyContactListView *view)
1181 {
1182         EmpathyContactListViewPriv *priv;
1183         GtkTreeSelection          *selection;
1184         GtkTreeIter                iter;
1185         GtkTreeModel              *model;
1186         gboolean                   is_group;
1187         gchar                     *name;
1188
1189         g_return_val_if_fail (EMPATHY_IS_CONTACT_LIST_VIEW (view), NULL);
1190
1191         priv = GET_PRIV (view);
1192
1193         selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (view));
1194         if (!gtk_tree_selection_get_selected (selection, &model, &iter)) {
1195                 return NULL;
1196         }
1197
1198         gtk_tree_model_get (model, &iter,
1199                             EMPATHY_CONTACT_LIST_STORE_COL_IS_GROUP, &is_group,
1200                             EMPATHY_CONTACT_LIST_STORE_COL_NAME, &name,
1201                             -1);
1202
1203         if (!is_group) {
1204                 g_free (name);
1205                 return NULL;
1206         }
1207
1208         return name;
1209 }
1210
1211 static gboolean
1212 contact_list_view_remove_dialog_show (GtkWindow   *parent, 
1213                                       const gchar *message, 
1214                                       const gchar *secondary_text)
1215 {
1216         GtkWidget *dialog;
1217         gboolean res;
1218         
1219         dialog = gtk_message_dialog_new (parent, GTK_DIALOG_MODAL,
1220                                          GTK_MESSAGE_QUESTION, GTK_BUTTONS_NONE,
1221                                          "%s", message);
1222         gtk_dialog_add_buttons (GTK_DIALOG (dialog),
1223                                 GTK_STOCK_CANCEL, GTK_RESPONSE_NO,
1224                                 GTK_STOCK_DELETE, GTK_RESPONSE_YES,
1225                                 NULL);
1226         gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog),
1227                                                   "%s", secondary_text);
1228          
1229         gtk_widget_show (dialog);
1230          
1231         res = gtk_dialog_run (GTK_DIALOG (dialog));
1232         gtk_widget_destroy (dialog);
1233
1234         return (res == GTK_RESPONSE_YES);
1235 }
1236
1237 static void
1238 contact_list_view_group_remove_activate_cb (GtkMenuItem            *menuitem,
1239                                             EmpathyContactListView *view)
1240 {
1241         EmpathyContactListViewPriv *priv = GET_PRIV (view);
1242         gchar                      *group;
1243
1244         group = empathy_contact_list_view_get_selected_group (view);
1245         if (group) {
1246                 gchar     *text;
1247                 GtkWindow *parent;
1248
1249                 text = g_strdup_printf (_("Do you really want to remove the group '%s'?"), group);
1250                 parent = empathy_get_toplevel_window (GTK_WIDGET (view));
1251                 if (contact_list_view_remove_dialog_show (parent, _("Removing group"), text)) {
1252                         EmpathyContactList *list;
1253
1254                         list = empathy_contact_list_store_get_list_iface (priv->store);
1255                         empathy_contact_list_remove_group (list, group);
1256                 }
1257
1258                 g_free (text);
1259         }
1260
1261         g_free (group);
1262 }
1263
1264 GtkWidget *
1265 empathy_contact_list_view_get_group_menu (EmpathyContactListView *view)
1266 {
1267         EmpathyContactListViewPriv *priv = GET_PRIV (view);
1268         gchar                      *group;
1269         GtkWidget                  *menu;
1270         GtkWidget                  *item;
1271         GtkWidget                  *image;
1272
1273         g_return_val_if_fail (EMPATHY_IS_CONTACT_LIST_VIEW (view), NULL);
1274
1275         if (!(priv->list_features & (EMPATHY_CONTACT_LIST_FEATURE_GROUPS_RENAME |
1276                                      EMPATHY_CONTACT_LIST_FEATURE_GROUPS_REMOVE))) {
1277                 return NULL;
1278         }
1279
1280         group = empathy_contact_list_view_get_selected_group (view);
1281         if (!group) {
1282                 return NULL;
1283         }
1284
1285         menu = gtk_menu_new ();
1286
1287         /* FIXME: Not implemented yet
1288         if (priv->features & EMPATHY_CONTACT_LIST_FEATURE_GROUPS_RENAME) {
1289                 item = gtk_menu_item_new_with_mnemonic (_("Re_name"));
1290                 gtk_menu_shell_append (GTK_MENU_SHELL (menu), item);
1291                 gtk_widget_show (item);
1292                 g_signal_connect (item, "activate",
1293                                   G_CALLBACK (contact_list_view_group_rename_activate_cb),
1294                                   view);
1295         }*/
1296
1297         if (priv->list_features & EMPATHY_CONTACT_LIST_FEATURE_GROUPS_REMOVE) {
1298                 item = gtk_image_menu_item_new_with_mnemonic (_("_Remove"));
1299                 image = gtk_image_new_from_icon_name (GTK_STOCK_REMOVE,
1300                                                       GTK_ICON_SIZE_MENU);
1301                 gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (item), image);
1302                 gtk_menu_shell_append (GTK_MENU_SHELL (menu), item);
1303                 gtk_widget_show (item);
1304                 g_signal_connect (item, "activate",
1305                                   G_CALLBACK (contact_list_view_group_remove_activate_cb),
1306                                   view);
1307         }
1308
1309         g_free (group);
1310
1311         return menu;
1312 }
1313
1314 static void
1315 contact_list_view_remove_activate_cb (GtkMenuItem            *menuitem,
1316                                       EmpathyContactListView *view)
1317 {
1318         EmpathyContactListViewPriv *priv = GET_PRIV (view);
1319         EmpathyContact             *contact;
1320                 
1321         contact = empathy_contact_list_view_get_selected (view);
1322
1323         if (contact) {
1324                 gchar     *text; 
1325                 GtkWindow *parent;
1326
1327                 parent = empathy_get_toplevel_window (GTK_WIDGET (view));
1328                 text = g_strdup_printf (_("Do you really want to remove the contact '%s'?"),
1329                                         empathy_contact_get_name (contact));                                            
1330                 if (contact_list_view_remove_dialog_show (parent, _("Removing contact"), text)) {
1331                         EmpathyContactList *list;
1332
1333                         list = empathy_contact_list_store_get_list_iface (priv->store);
1334                         empathy_contact_list_remove (list, contact, 
1335                                 _("Sorry, I don't want you in my contact list anymore."));
1336                 }
1337
1338                 g_free (text);
1339                 g_object_unref (contact);
1340         }
1341 }
1342
1343 GtkWidget *
1344 empathy_contact_list_view_get_contact_menu (EmpathyContactListView *view)
1345 {
1346         EmpathyContactListViewPriv *priv = GET_PRIV (view);
1347         EmpathyContact             *contact;
1348         GtkWidget                  *menu;
1349         GtkWidget                  *item;
1350         GtkWidget                  *image;
1351
1352         g_return_val_if_fail (EMPATHY_IS_CONTACT_LIST_VIEW (view), NULL);
1353
1354         contact = empathy_contact_list_view_get_selected (view);
1355         if (!contact) {
1356                 return NULL;
1357         }
1358
1359         menu = empathy_contact_menu_new (contact, priv->contact_features);
1360
1361         if (!(priv->list_features & EMPATHY_CONTACT_LIST_FEATURE_CONTACT_REMOVE)) {
1362                 g_object_unref (contact);
1363                 return menu;
1364         }
1365
1366         if (menu) {
1367                 /* Separator */
1368                 item = gtk_separator_menu_item_new ();
1369                 gtk_menu_shell_append (GTK_MENU_SHELL (menu), item);
1370                 gtk_widget_show (item);
1371         } else {
1372                 menu = gtk_menu_new ();
1373         }
1374
1375         /* Remove contact */
1376         if (priv->list_features & EMPATHY_CONTACT_LIST_FEATURE_CONTACT_REMOVE) {
1377                 item = gtk_image_menu_item_new_with_mnemonic (_("_Remove"));
1378                 image = gtk_image_new_from_icon_name (GTK_STOCK_REMOVE,
1379                                                       GTK_ICON_SIZE_MENU);
1380                 gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (item), image);
1381                 gtk_menu_shell_append (GTK_MENU_SHELL (menu), item);
1382                 gtk_widget_show (item);
1383                 g_signal_connect (item, "activate",
1384                                   G_CALLBACK (contact_list_view_remove_activate_cb),
1385                                   view);
1386         }
1387
1388         g_object_unref (contact);
1389
1390         return menu;
1391 }
1392