]> git.0d.be Git - empathy.git/blob - libempathy-gtk/empathy-contact-menu.c
15f47b20659654d0f08afb498047010103def66e
[empathy.git] / libempathy-gtk / empathy-contact-menu.c
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3  * Copyright (C) 2008 Collabora Ltd.
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18  *
19  * Authors: Xavier Claessens <xclaesse@gmail.com>
20  */
21
22 #include "config.h"
23
24 #include <string.h>
25
26 #include <glib/gi18n-lib.h>
27 #include <gtk/gtk.h>
28 #include <telepathy-logger/log-manager.h>
29
30 #include <libempathy/empathy-contact-manager.h>
31 #include <libempathy/empathy-request-util.h>
32 #include <libempathy/empathy-utils.h>
33 #include <libempathy/empathy-chatroom-manager.h>
34 #include <libempathy/empathy-contact-manager.h>
35
36 #include "empathy-contact-menu.h"
37 #include "empathy-images.h"
38 #include "empathy-log-window.h"
39 #include "empathy-contact-dialogs.h"
40 #include "empathy-ui-utils.h"
41 #include "empathy-share-my-desktop.h"
42
43 static GtkWidget *empathy_contact_block_menu_item_new (EmpathyContact *);
44
45 GtkWidget *
46 empathy_contact_menu_new (EmpathyContact             *contact,
47                           EmpathyContactFeatureFlags  features)
48 {
49         GtkWidget    *menu;
50         GtkMenuShell *shell;
51         GtkWidget    *item;
52
53         g_return_val_if_fail (EMPATHY_IS_CONTACT (contact), NULL);
54
55         if (features == EMPATHY_CONTACT_FEATURE_NONE) {
56                 return NULL;
57         }
58
59         menu = gtk_menu_new ();
60         shell = GTK_MENU_SHELL (menu);
61
62         /* Add Contact */
63         item = empathy_contact_add_menu_item_new (contact);
64         if (item) {
65                 gtk_menu_shell_append (shell, item);
66                 gtk_widget_show (item);
67         }
68
69         /* Chat */
70         if (features & EMPATHY_CONTACT_FEATURE_CHAT) {
71                 item = empathy_contact_chat_menu_item_new (contact);
72                 gtk_menu_shell_append (shell, item);
73                 gtk_widget_show (item);
74         }
75
76         if (features & EMPATHY_CONTACT_FEATURE_CALL) {
77                 /* Audio Call */
78                 item = empathy_contact_audio_call_menu_item_new (contact);
79                 gtk_menu_shell_append (shell, item);
80                 gtk_widget_show (item);
81
82                 /* Video Call */
83                 item = empathy_contact_video_call_menu_item_new (contact);
84                 gtk_menu_shell_append (shell, item);
85                 gtk_widget_show (item);
86         }
87
88         /* Log */
89         if (features & EMPATHY_CONTACT_FEATURE_LOG) {
90                 item = empathy_contact_log_menu_item_new (contact);
91                 gtk_menu_shell_append (shell, item);
92                 gtk_widget_show (item);
93         }
94
95         /* Invite */
96         item = empathy_contact_invite_menu_item_new (contact);
97         gtk_menu_shell_append (shell, item);
98         gtk_widget_show (item);
99
100         /* File transfer */
101         if (features & EMPATHY_CONTACT_FEATURE_FT) {
102                 item = empathy_contact_file_transfer_menu_item_new (contact);
103                 gtk_menu_shell_append (shell, item);
104                 gtk_widget_show (item);
105         }
106
107         /* Share my desktop */
108         /* FIXME we should add the "Share my desktop" menu item if Vino is
109         a registered handler in MC5 */
110         item = empathy_contact_share_my_desktop_menu_item_new (contact);
111         gtk_menu_shell_append (shell, item);
112         gtk_widget_show (item);
113
114         /* Separator */
115         if (features & (EMPATHY_CONTACT_FEATURE_EDIT |
116                         EMPATHY_CONTACT_FEATURE_INFO |
117                         EMPATHY_CONTACT_FEATURE_FAVOURITE)) {
118                 item = gtk_separator_menu_item_new ();
119                 gtk_menu_shell_append (shell, item);
120                 gtk_widget_show (item);
121         }
122
123         /* Edit */
124         if (features & EMPATHY_CONTACT_FEATURE_EDIT) {
125                 item = empathy_contact_edit_menu_item_new (contact);
126                 gtk_menu_shell_append (shell, item);
127                 gtk_widget_show (item);
128         }
129
130         /* Info */
131         if (features & EMPATHY_CONTACT_FEATURE_INFO) {
132                 item = empathy_contact_info_menu_item_new (contact);
133                 gtk_menu_shell_append (shell, item);
134                 gtk_widget_show (item);
135         }
136
137         /* Favorite checkbox */
138         if (features & EMPATHY_CONTACT_FEATURE_FAVOURITE) {
139                 item = empathy_contact_favourite_menu_item_new (contact);
140                 gtk_menu_shell_append (shell, item);
141                 gtk_widget_show (item);
142         }
143
144         /* Separator & Block */
145         if (features & EMPATHY_CONTACT_FEATURE_BLOCK &&
146             (item = empathy_contact_block_menu_item_new (contact)) != NULL) {
147                 GtkWidget *sep;
148
149                 sep = gtk_separator_menu_item_new ();
150                 gtk_menu_shell_append (shell, sep);
151                 gtk_widget_show (sep);
152
153                 gtk_menu_shell_append (shell, item);
154                 gtk_widget_show (item);
155         }
156
157         return menu;
158 }
159
160 static void
161 empathy_contact_add_menu_item_activated (GtkMenuItem *item,
162         EmpathyContact *contact)
163 {
164         GtkWidget *toplevel;
165
166         toplevel = gtk_widget_get_toplevel (GTK_WIDGET (item));
167         if (!gtk_widget_is_toplevel (toplevel) || !GTK_IS_WINDOW (toplevel)) {
168                 toplevel = NULL;
169         }
170
171         empathy_new_contact_dialog_show_with_contact (GTK_WINDOW (toplevel),
172                                                       contact);
173 }
174
175 GtkWidget *
176 empathy_contact_add_menu_item_new (EmpathyContact *contact)
177 {
178         GtkWidget *item;
179         GtkWidget *image;
180         EmpathyContactManager *manager;
181         TpConnection *connection;
182         GList *l, *members;
183         gboolean found = FALSE;
184         EmpathyContactListFlags flags;
185
186         g_return_val_if_fail (EMPATHY_IS_CONTACT (contact), NULL);
187
188         if (!empathy_contact_manager_initialized ()) {
189                 return NULL;
190         }
191
192         manager = empathy_contact_manager_dup_singleton ();
193         connection = empathy_contact_get_connection (contact);
194
195         flags = empathy_contact_manager_get_flags_for_connection (manager,
196                         connection);
197
198         if (!(flags & EMPATHY_CONTACT_LIST_CAN_ADD)) {
199                 return NULL;
200         }
201
202         members = empathy_contact_list_get_members (EMPATHY_CONTACT_LIST (manager));
203         for (l = members; l; l = l->next) {
204                 if (!found && empathy_contact_equal (l->data, contact)) {
205                         found = TRUE;
206                         /* we keep iterating so that we don't leak contact
207                          * refs */
208                 }
209
210                 g_object_unref (l->data);
211         }
212         g_list_free (members);
213         g_object_unref (manager);
214
215         if (found) {
216                 return NULL;
217         }
218
219         item = gtk_image_menu_item_new_with_mnemonic (_("_Add Contact…"));
220         image = gtk_image_new_from_icon_name (GTK_STOCK_ADD,
221                                               GTK_ICON_SIZE_MENU);
222         gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (item), image);
223
224         g_signal_connect (item, "activate",
225                         G_CALLBACK (empathy_contact_add_menu_item_activated),
226                         contact);
227
228         return item;
229 }
230
231 static void
232 empathy_contact_block_menu_item_toggled (GtkCheckMenuItem *item,
233                                          EmpathyContact   *contact)
234 {
235         static guint block_signal = 0;
236         EmpathyContactManager *manager;
237         gboolean blocked, abusive;
238
239         if (block_signal > 0)
240                 return;
241
242         blocked = gtk_check_menu_item_get_active (item);
243
244         if (blocked) {
245                 /* confirm the user really wishes to block the contact */
246                 GtkWidget *parent;
247                 GdkPixbuf *avatar;
248
249                 /* gtk_menu_get_attach_widget () doesn't behave properly here
250                  * for some reason */
251                 parent = g_object_get_data (
252                         G_OBJECT (gtk_widget_get_parent (GTK_WIDGET (item))),
253                         "window");
254
255                 avatar = empathy_pixbuf_avatar_from_contact_scaled (contact, 48, 48);
256
257                 if (!empathy_block_contact_dialog_show (GTK_WINDOW (parent),
258                                         contact, avatar, &abusive))
259                         return;
260         }
261
262         manager = empathy_contact_manager_dup_singleton ();
263         empathy_contact_list_set_blocked (EMPATHY_CONTACT_LIST (manager),
264                                           contact, blocked, abusive);
265         g_object_unref (manager);
266
267         /* update the toggle with the blocked status */
268         block_signal++;
269         gtk_check_menu_item_set_active (item, blocked);
270         block_signal--;
271 }
272
273 static GtkWidget *
274 empathy_contact_block_menu_item_new (EmpathyContact *contact)
275 {
276         GtkWidget *item;
277         EmpathyContactManager *manager;
278         TpConnection *connection;
279         EmpathyContactListFlags flags;
280         gboolean blocked;
281
282         g_return_val_if_fail (EMPATHY_IS_CONTACT (contact), NULL);
283
284         manager = empathy_contact_manager_dup_singleton ();
285
286         if (!empathy_contact_manager_initialized ()) {
287                 return NULL;
288         }
289
290         connection = empathy_contact_get_connection (contact);
291
292         flags = empathy_contact_manager_get_flags_for_connection (manager,
293                         connection);
294
295         if (!(flags & EMPATHY_CONTACT_LIST_CAN_BLOCK)) {
296                 return NULL;
297         }
298
299         item = gtk_check_menu_item_new_with_mnemonic (_("_Block Contact"));
300         blocked = empathy_contact_list_get_blocked (
301                         EMPATHY_CONTACT_LIST (manager),
302                         contact);
303
304         gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (item), blocked);
305
306         g_signal_connect (item, "toggled",
307                         G_CALLBACK (empathy_contact_block_menu_item_toggled),
308                         contact);
309
310         return item;
311 }
312
313 static void
314 empathy_contact_chat_menu_item_activated (GtkMenuItem *item,
315         EmpathyContact *contact)
316 {
317   empathy_chat_with_contact (contact, gtk_get_current_event_time ());
318 }
319
320 GtkWidget *
321 empathy_contact_chat_menu_item_new (EmpathyContact *contact)
322 {
323         GtkWidget *item;
324         GtkWidget *image;
325
326         g_return_val_if_fail (EMPATHY_IS_CONTACT (contact), NULL);
327
328         item = gtk_image_menu_item_new_with_mnemonic (_("_Chat"));
329         image = gtk_image_new_from_icon_name (EMPATHY_IMAGE_MESSAGE,
330                                               GTK_ICON_SIZE_MENU);
331         gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (item), image);
332         gtk_widget_set_sensitive (item, !empathy_contact_is_user (contact));
333         gtk_widget_show (image);
334
335         g_signal_connect (item, "activate",
336                                   G_CALLBACK (empathy_contact_chat_menu_item_activated),
337                                   contact);
338
339         return item;
340 }
341
342 static void
343 empathy_contact_audio_call_menu_item_activated (GtkMenuItem *item,
344         EmpathyContact *contact)
345 {
346
347         empathy_call_new_with_streams (contact, TRUE, FALSE,
348                 gtk_get_current_event_time ());
349 }
350
351 GtkWidget *
352 empathy_contact_audio_call_menu_item_new (EmpathyContact *contact)
353 {
354         GtkWidget *item;
355         GtkWidget *image;
356
357         g_return_val_if_fail (EMPATHY_IS_CONTACT (contact), NULL);
358
359         item = gtk_image_menu_item_new_with_mnemonic (C_("menu item", "_Audio Call"));
360         image = gtk_image_new_from_icon_name (EMPATHY_IMAGE_VOIP,
361                                               GTK_ICON_SIZE_MENU);
362         gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (item), image);
363         gtk_widget_set_sensitive (item, empathy_contact_can_voip_audio (contact) &&
364                                         !empathy_contact_is_user (contact));
365         gtk_widget_show (image);
366
367         g_signal_connect (item, "activate",
368                                   G_CALLBACK (empathy_contact_audio_call_menu_item_activated),
369                                   contact);
370
371         return item;
372 }
373
374 static void
375 empathy_contact_video_call_menu_item_activated (GtkMenuItem *item,
376         EmpathyContact *contact)
377 {
378         empathy_call_new_with_streams (contact, TRUE, TRUE,
379                 gtk_get_current_event_time ());
380 }
381
382 GtkWidget *
383 empathy_contact_video_call_menu_item_new (EmpathyContact *contact)
384 {
385         GtkWidget *item;
386         GtkWidget *image;
387
388         g_return_val_if_fail (EMPATHY_IS_CONTACT (contact), NULL);
389
390         item = gtk_image_menu_item_new_with_mnemonic (C_("menu item", "_Video Call"));
391         image = gtk_image_new_from_icon_name (EMPATHY_IMAGE_VIDEO_CALL,
392                                               GTK_ICON_SIZE_MENU);
393         gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (item), image);
394         gtk_widget_set_sensitive (item, empathy_contact_can_voip_video (contact) &&
395                                         !empathy_contact_is_user (contact));
396         gtk_widget_show (image);
397
398         g_signal_connect (item, "activate",
399                                   G_CALLBACK (empathy_contact_video_call_menu_item_activated),
400                                   contact);
401
402         return item;
403 }
404
405 static void
406 contact_log_menu_item_activate_cb (EmpathyContact *contact)
407 {
408         empathy_log_window_show (empathy_contact_get_account (contact),
409                                  empathy_contact_get_id (contact),
410                                  FALSE, NULL);
411 }
412
413 GtkWidget *
414 empathy_contact_log_menu_item_new (EmpathyContact *contact)
415 {
416         TplLogManager     *manager;
417         TplEntity         *entity;
418         gboolean           have_log;
419         GtkWidget         *item;
420         GtkWidget         *image;
421
422         g_return_val_if_fail (EMPATHY_IS_CONTACT (contact), NULL);
423
424         manager = tpl_log_manager_dup_singleton ();
425         entity = tpl_entity_new_from_tp_contact (empathy_contact_get_tp_contact (contact),
426                                                  TPL_ENTITY_CONTACT);
427
428         have_log = tpl_log_manager_exists (manager,
429                                            empathy_contact_get_account (contact),
430                                            entity,
431                                            TPL_EVENT_MASK_TEXT);
432
433         g_object_unref (entity);
434         g_object_unref (manager);
435
436         item = gtk_image_menu_item_new_with_mnemonic (_("_Previous Conversations"));
437         image = gtk_image_new_from_icon_name (EMPATHY_IMAGE_LOG,
438                                               GTK_ICON_SIZE_MENU);
439         gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (item), image);
440         gtk_widget_set_sensitive (item, have_log);
441         gtk_widget_show (image);
442
443         g_signal_connect_swapped (item, "activate",
444                                   G_CALLBACK (contact_log_menu_item_activate_cb),
445                                   contact);
446
447         return item;
448 }
449
450 GtkWidget *
451 empathy_contact_file_transfer_menu_item_new (EmpathyContact *contact)
452 {
453         GtkWidget         *item;
454         GtkWidget         *image;
455
456         g_return_val_if_fail (EMPATHY_IS_CONTACT (contact), NULL);
457
458         item = gtk_image_menu_item_new_with_mnemonic (_("Send File"));
459         image = gtk_image_new_from_icon_name (EMPATHY_IMAGE_DOCUMENT_SEND,
460                                               GTK_ICON_SIZE_MENU);
461         gtk_widget_set_sensitive (item, empathy_contact_can_send_files (contact) &&
462                                         !empathy_contact_is_user (contact));
463         gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (item), image);
464         gtk_widget_show (image);
465
466         g_signal_connect_swapped (item, "activate",
467                                   G_CALLBACK (empathy_send_file_with_file_chooser),
468                                   contact);
469
470         return item;
471 }
472
473 GtkWidget *
474 empathy_contact_share_my_desktop_menu_item_new (EmpathyContact *contact)
475 {
476         GtkWidget         *item;
477         GtkWidget         *image;
478
479         g_return_val_if_fail (EMPATHY_IS_CONTACT (contact), NULL);
480
481         item = gtk_image_menu_item_new_with_mnemonic (_("Share My Desktop"));
482         image = gtk_image_new_from_icon_name (GTK_STOCK_NETWORK,
483                                               GTK_ICON_SIZE_MENU);
484         gtk_widget_set_sensitive (item, empathy_contact_can_use_rfb_stream_tube (
485                 contact));
486         gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (item), image);
487         gtk_widget_show (image);
488
489         g_signal_connect_swapped (item, "activate",
490                                   G_CALLBACK (empathy_share_my_desktop_share_with_contact),
491                                   contact);
492
493         return item;
494 }
495
496 static void
497 favourite_menu_item_toggled_cb (GtkCheckMenuItem *item,
498         EmpathyContact *contact)
499 {
500         EmpathyContactManager *manager;
501         EmpathyContactList *list;
502
503         manager = empathy_contact_manager_dup_singleton ();
504         list = EMPATHY_CONTACT_LIST (manager);
505
506         if (gtk_check_menu_item_get_active (item)) {
507                 empathy_contact_list_add_to_favourites (list, contact);
508         } else {
509                 empathy_contact_list_remove_from_favourites (list, contact);
510         }
511
512         g_object_unref (manager);
513 }
514
515 GtkWidget *
516 empathy_contact_favourite_menu_item_new (EmpathyContact *contact)
517 {
518         GtkWidget *item;
519         EmpathyContactManager *manager;
520
521         item = gtk_check_menu_item_new_with_label (_("Favorite"));
522
523         manager = empathy_contact_manager_dup_singleton ();
524         gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (item),
525                 empathy_contact_list_is_favourite (EMPATHY_CONTACT_LIST (manager),
526                                                    contact));
527
528         g_signal_connect (item, "toggled",
529                           G_CALLBACK (favourite_menu_item_toggled_cb),
530                           contact);
531
532         g_object_unref (manager);
533         return item;
534 }
535
536 static void
537 contact_info_menu_item_activate_cb (EmpathyContact *contact)
538 {
539         empathy_contact_information_dialog_show (contact, NULL);
540 }
541
542 GtkWidget *
543 empathy_contact_info_menu_item_new (EmpathyContact *contact)
544 {
545         GtkWidget *item;
546         GtkWidget *image;
547
548         g_return_val_if_fail (EMPATHY_IS_CONTACT (contact), NULL);
549
550         item = gtk_image_menu_item_new_with_mnemonic (_("Infor_mation"));
551         image = gtk_image_new_from_icon_name (EMPATHY_IMAGE_CONTACT_INFORMATION,
552                                               GTK_ICON_SIZE_MENU);
553         gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (item), image);
554         gtk_widget_show (image);
555
556         g_signal_connect_swapped (item, "activate",
557                                   G_CALLBACK (contact_info_menu_item_activate_cb),
558                                   contact);
559
560         return item;
561 }
562
563 static void
564 contact_edit_menu_item_activate_cb (EmpathyContact *contact)
565 {
566         empathy_contact_edit_dialog_show (contact, NULL);
567 }
568
569 GtkWidget *
570 empathy_contact_edit_menu_item_new (EmpathyContact *contact)
571 {
572         EmpathyContactManager *manager;
573         GtkWidget *item;
574         GtkWidget *image;
575         gboolean enable = FALSE;
576
577         g_return_val_if_fail (EMPATHY_IS_CONTACT (contact), NULL);
578
579         if (empathy_contact_manager_initialized ()) {
580                 TpConnection *connection;
581                 EmpathyContactListFlags flags;
582
583                 manager = empathy_contact_manager_dup_singleton ();
584                 connection = empathy_contact_get_connection (contact);
585                 flags = empathy_contact_manager_get_flags_for_connection (
586                                 manager, connection);
587
588                 enable = (flags & EMPATHY_CONTACT_LIST_CAN_ALIAS ||
589                           flags & EMPATHY_CONTACT_LIST_CAN_GROUP);
590
591                 g_object_unref (manager);
592         }
593
594         item = gtk_image_menu_item_new_with_mnemonic (
595                                                      C_("Edit contact (contextual menu)",
596                                                         "_Edit"));
597         image = gtk_image_new_from_icon_name (GTK_STOCK_EDIT,
598                                               GTK_ICON_SIZE_MENU);
599         gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (item), image);
600         gtk_widget_show (image);
601
602         gtk_widget_set_sensitive (item, enable);
603
604         g_signal_connect_swapped (item, "activate",
605                                   G_CALLBACK (contact_edit_menu_item_activate_cb),
606                                   contact);
607
608         return item;
609 }
610
611 typedef struct  {
612         EmpathyContact *contact;
613         EmpathyChatroom *chatroom;
614 } RoomSubMenuData;
615
616 static RoomSubMenuData *
617 room_sub_menu_data_new (EmpathyContact *contact,
618                         EmpathyChatroom *chatroom)
619 {
620         RoomSubMenuData *data;
621
622         data = g_slice_new (RoomSubMenuData);
623         data->contact = g_object_ref (contact);
624         data->chatroom = g_object_ref (chatroom);
625         return data;
626 }
627
628 static void
629 room_sub_menu_data_free (RoomSubMenuData *data)
630 {
631         g_object_unref (data->contact);
632         g_object_unref (data->chatroom);
633         g_slice_free (RoomSubMenuData, data);
634 }
635
636 static void
637 room_sub_menu_activate_cb (GtkWidget *item,
638                            RoomSubMenuData *data)
639 {
640         EmpathyTpChat *chat;
641
642         chat = empathy_chatroom_get_tp_chat (data->chatroom);
643         if (chat == NULL) {
644                 /* channel was invalidated. Ignoring */
645                 return;
646         }
647
648         /* send invitation */
649         empathy_contact_list_add (EMPATHY_CONTACT_LIST (chat), data->contact,
650                 _("Inviting you to this room"));
651 }
652
653 static GtkWidget *
654 create_room_sub_menu (EmpathyContact *contact,
655                       EmpathyChatroom *chatroom)
656 {
657         GtkWidget *item;
658         RoomSubMenuData *data;
659
660         item = gtk_menu_item_new_with_label (empathy_chatroom_get_name (chatroom));
661         data = room_sub_menu_data_new (contact, chatroom);
662         g_signal_connect_data (item, "activate",
663                                G_CALLBACK (room_sub_menu_activate_cb), data,
664                                (GClosureNotify) room_sub_menu_data_free, 0);
665
666         return item;
667 }
668
669 GtkWidget *
670 empathy_contact_invite_menu_item_new (EmpathyContact *contact)
671 {
672         GtkWidget *item;
673         GtkWidget *image;
674         GtkWidget *room_item;
675         EmpathyChatroomManager *mgr;
676         GList *rooms, *l;
677         GtkWidget *submenu = NULL;
678
679         g_return_val_if_fail (EMPATHY_IS_CONTACT (contact), NULL);
680
681         item = gtk_image_menu_item_new_with_mnemonic (_("_Invite to Chat Room"));
682         image = gtk_image_new_from_icon_name (EMPATHY_IMAGE_GROUP_MESSAGE,
683                                               GTK_ICON_SIZE_MENU);
684         gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (item), image);
685
686         if (empathy_contact_is_user (contact)) {
687                 gtk_widget_set_sensitive (item, FALSE);
688                 gtk_widget_show (image);
689                 return item;
690         }
691
692         mgr = empathy_chatroom_manager_dup_singleton (NULL);
693         rooms = empathy_chatroom_manager_get_chatrooms (mgr,
694                 empathy_contact_get_account (contact));
695
696         for (l = rooms; l != NULL; l = g_list_next (l)) {
697                 EmpathyChatroom *chatroom = l->data;
698
699                 if (empathy_chatroom_get_tp_chat (chatroom) != NULL) {
700                         if (G_UNLIKELY (submenu == NULL))
701                                 submenu = gtk_menu_new ();
702
703                         room_item = create_room_sub_menu (contact, chatroom);
704                         gtk_menu_shell_append ((GtkMenuShell *) submenu, room_item);
705                         gtk_widget_show (room_item);
706                 }
707         }
708
709         if (submenu) {
710                 gtk_menu_item_set_submenu (GTK_MENU_ITEM (item), submenu);
711         } else {
712                 gtk_widget_set_sensitive (item, FALSE);
713         }
714
715         gtk_widget_show (image);
716
717         g_object_unref (mgr);
718         g_list_free (rooms);
719
720         return item;
721 }
722