]> git.0d.be Git - empathy.git/blob - libempathy-gtk/empathy-contact-menu.c
a6f5a209d14719e06be82c476fb5add0bbc42fe4
[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 #include "empathy-call-utils.h"
43
44 static GtkWidget *empathy_contact_block_menu_item_new (EmpathyContact *);
45
46 GtkWidget *
47 empathy_contact_menu_new (EmpathyContact             *contact,
48                           EmpathyContactFeatureFlags  features)
49 {
50         GtkWidget    *menu;
51         GtkMenuShell *shell;
52         GtkWidget    *item;
53
54         g_return_val_if_fail (EMPATHY_IS_CONTACT (contact), NULL);
55
56         if (features == EMPATHY_CONTACT_FEATURE_NONE) {
57                 return NULL;
58         }
59
60         menu = gtk_menu_new ();
61         shell = GTK_MENU_SHELL (menu);
62
63         /* Add Contact */
64         item = empathy_contact_add_menu_item_new (contact);
65         if (item) {
66                 gtk_menu_shell_append (shell, item);
67                 gtk_widget_show (item);
68         }
69
70         /* Chat */
71         if (features & EMPATHY_CONTACT_FEATURE_CHAT) {
72                 item = empathy_contact_chat_menu_item_new (contact);
73                 gtk_menu_shell_append (shell, item);
74                 gtk_widget_show (item);
75         }
76
77         if (features & EMPATHY_CONTACT_FEATURE_CALL) {
78                 /* Audio Call */
79                 item = empathy_contact_audio_call_menu_item_new (contact);
80                 gtk_menu_shell_append (shell, item);
81                 gtk_widget_show (item);
82
83                 /* Video Call */
84                 item = empathy_contact_video_call_menu_item_new (contact);
85                 gtk_menu_shell_append (shell, item);
86                 gtk_widget_show (item);
87         }
88
89         /* Invite */
90         item = empathy_contact_invite_menu_item_new (contact);
91         gtk_menu_shell_append (shell, item);
92         gtk_widget_show (item);
93
94         /* File transfer */
95         if (features & EMPATHY_CONTACT_FEATURE_FT) {
96                 item = empathy_contact_file_transfer_menu_item_new (contact);
97                 gtk_menu_shell_append (shell, item);
98                 gtk_widget_show (item);
99         }
100
101         /* Share my desktop */
102         /* FIXME we should add the "Share my desktop" menu item if Vino is
103         a registered handler in MC5 */
104         item = empathy_contact_share_my_desktop_menu_item_new (contact);
105         gtk_menu_shell_append (shell, item);
106         gtk_widget_show (item);
107
108         /* Separator */
109         if (features & (EMPATHY_CONTACT_FEATURE_EDIT |
110                         EMPATHY_CONTACT_FEATURE_INFO)) {
111                 item = gtk_separator_menu_item_new ();
112                 gtk_menu_shell_append (shell, item);
113                 gtk_widget_show (item);
114         }
115
116         /* Edit */
117         if (features & EMPATHY_CONTACT_FEATURE_EDIT) {
118                 item = empathy_contact_edit_menu_item_new (contact);
119                 gtk_menu_shell_append (shell, item);
120                 gtk_widget_show (item);
121         }
122
123         /* Log */
124         if (features & EMPATHY_CONTACT_FEATURE_LOG) {
125                 item = empathy_contact_log_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         /* Separator & Block */
138         if (features & EMPATHY_CONTACT_FEATURE_BLOCK &&
139             (item = empathy_contact_block_menu_item_new (contact)) != NULL) {
140                 GtkWidget *sep;
141
142                 sep = gtk_separator_menu_item_new ();
143                 gtk_menu_shell_append (shell, sep);
144                 gtk_widget_show (sep);
145
146                 gtk_menu_shell_append (shell, item);
147                 gtk_widget_show (item);
148         }
149
150         return menu;
151 }
152
153 static void
154 empathy_contact_add_menu_item_activated (GtkMenuItem *item,
155         EmpathyContact *contact)
156 {
157         GtkWidget *toplevel;
158
159         toplevel = gtk_widget_get_toplevel (GTK_WIDGET (item));
160         if (!gtk_widget_is_toplevel (toplevel) || !GTK_IS_WINDOW (toplevel)) {
161                 toplevel = NULL;
162         }
163
164         empathy_new_contact_dialog_show_with_contact (GTK_WINDOW (toplevel),
165                                                       contact);
166 }
167
168 GtkWidget *
169 empathy_contact_add_menu_item_new (EmpathyContact *contact)
170 {
171         GtkWidget *item;
172         GtkWidget *image;
173         EmpathyContactManager *manager;
174         TpConnection *connection;
175         GList *l, *members;
176         gboolean found = FALSE;
177         EmpathyContactListFlags flags;
178
179         g_return_val_if_fail (EMPATHY_IS_CONTACT (contact), NULL);
180
181         if (!empathy_contact_manager_initialized ()) {
182                 return NULL;
183         }
184
185         manager = empathy_contact_manager_dup_singleton ();
186         connection = empathy_contact_get_connection (contact);
187
188         flags = empathy_contact_manager_get_flags_for_connection (manager,
189                         connection);
190
191         if (!(flags & EMPATHY_CONTACT_LIST_CAN_ADD)) {
192                 return NULL;
193         }
194
195         members = empathy_contact_list_get_members (EMPATHY_CONTACT_LIST (manager));
196         for (l = members; l; l = l->next) {
197                 if (!found && empathy_contact_equal (l->data, contact)) {
198                         found = TRUE;
199                         /* we keep iterating so that we don't leak contact
200                          * refs */
201                 }
202
203                 g_object_unref (l->data);
204         }
205         g_list_free (members);
206         g_object_unref (manager);
207
208         if (found) {
209                 return NULL;
210         }
211
212         item = gtk_image_menu_item_new_with_mnemonic (_("_Add Contact…"));
213         image = gtk_image_new_from_icon_name (GTK_STOCK_ADD,
214                                               GTK_ICON_SIZE_MENU);
215         gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (item), image);
216
217         g_signal_connect (item, "activate",
218                         G_CALLBACK (empathy_contact_add_menu_item_activated),
219                         contact);
220
221         return item;
222 }
223
224 static void
225 empathy_contact_block_menu_item_toggled (GtkCheckMenuItem *item,
226                                          EmpathyContact   *contact)
227 {
228         static guint block_signal = 0;
229         gboolean blocked, abusive;
230         TpContact *tp_contact;
231
232         if (block_signal > 0)
233                 return;
234
235         blocked = gtk_check_menu_item_get_active (item);
236
237         if (blocked) {
238                 /* confirm the user really wishes to block the contact */
239                 GtkWidget *parent;
240                 GdkPixbuf *avatar;
241
242                 /* gtk_menu_get_attach_widget () doesn't behave properly here
243                  * for some reason */
244                 parent = g_object_get_data (
245                         G_OBJECT (gtk_widget_get_parent (GTK_WIDGET (item))),
246                         "window");
247
248                 avatar = empathy_pixbuf_avatar_from_contact_scaled (contact, 48, 48);
249
250                 if (!empathy_block_contact_dialog_show (GTK_WINDOW (parent),
251                                         contact, avatar, &abusive))
252                         return;
253         }
254
255         tp_contact = empathy_contact_get_tp_contact (contact);
256
257         if (blocked)
258                 tp_contact_block_async (tp_contact, abusive, NULL, NULL);
259         else
260                 tp_contact_unblock_async (tp_contact, NULL, NULL);
261
262         /* update the toggle with the blocked status */
263         block_signal++;
264         gtk_check_menu_item_set_active (item, blocked);
265         block_signal--;
266 }
267
268 static GtkWidget *
269 empathy_contact_block_menu_item_new (EmpathyContact *contact)
270 {
271         GtkWidget *item;
272         EmpathyContactManager *manager;
273         TpConnection *connection;
274         TpContact *tp_contact;
275
276         g_return_val_if_fail (EMPATHY_IS_CONTACT (contact), NULL);
277
278         manager = empathy_contact_manager_dup_singleton ();
279
280         if (!empathy_contact_manager_initialized ()) {
281                 return NULL;
282         }
283
284         connection = empathy_contact_get_connection (contact);
285
286         if (!tp_proxy_has_interface_by_id (connection,
287                 TP_IFACE_QUARK_CONNECTION_INTERFACE_CONTACT_BLOCKING))
288                 return NULL;
289
290         item = gtk_check_menu_item_new_with_mnemonic (_("_Block Contact"));
291
292         tp_contact = empathy_contact_get_tp_contact (contact);
293
294         gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (item),
295                         tp_contact_is_blocked (tp_contact));
296
297         g_signal_connect (item, "toggled",
298                         G_CALLBACK (empathy_contact_block_menu_item_toggled),
299                         contact);
300
301         return item;
302 }
303
304 static void
305 empathy_contact_chat_menu_item_activated (GtkMenuItem *item,
306         EmpathyContact *contact)
307 {
308         empathy_chat_with_contact (contact, empathy_get_current_action_time ());
309 }
310
311 GtkWidget *
312 empathy_contact_chat_menu_item_new (EmpathyContact *contact)
313 {
314         GtkWidget *item;
315         GtkWidget *image;
316
317         g_return_val_if_fail (EMPATHY_IS_CONTACT (contact), NULL);
318
319         item = gtk_image_menu_item_new_with_mnemonic (_("_Chat"));
320         image = gtk_image_new_from_icon_name (EMPATHY_IMAGE_MESSAGE,
321                                               GTK_ICON_SIZE_MENU);
322         gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (item), image);
323         gtk_widget_set_sensitive (item, !empathy_contact_is_user (contact));
324         gtk_widget_show (image);
325
326         g_signal_connect (item, "activate",
327                                   G_CALLBACK (empathy_contact_chat_menu_item_activated),
328                                   contact);
329
330         return item;
331 }
332
333 static void
334 empathy_contact_audio_call_menu_item_activated (GtkMenuItem *item,
335         EmpathyContact *contact)
336 {
337         empathy_call_new_with_streams (empathy_contact_get_id (contact),
338                 empathy_contact_get_account (contact),
339                 TRUE, FALSE,
340                 empathy_get_current_action_time ());
341 }
342
343 GtkWidget *
344 empathy_contact_audio_call_menu_item_new (EmpathyContact *contact)
345 {
346         GtkWidget *item;
347         GtkWidget *image;
348
349         g_return_val_if_fail (EMPATHY_IS_CONTACT (contact), NULL);
350
351         item = gtk_image_menu_item_new_with_mnemonic (C_("menu item", "_Audio Call"));
352         image = gtk_image_new_from_icon_name (EMPATHY_IMAGE_VOIP,
353                                               GTK_ICON_SIZE_MENU);
354         gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (item), image);
355         gtk_widget_set_sensitive (item, empathy_contact_can_voip_audio (contact) &&
356                                         !empathy_contact_is_user (contact));
357         gtk_widget_show (image);
358
359         g_signal_connect (item, "activate",
360                                   G_CALLBACK (empathy_contact_audio_call_menu_item_activated),
361                                   contact);
362
363         return item;
364 }
365
366 static void
367 empathy_contact_video_call_menu_item_activated (GtkMenuItem *item,
368         EmpathyContact *contact)
369 {
370         empathy_call_new_with_streams (empathy_contact_get_id (contact),
371                 empathy_contact_get_account (contact),
372                 TRUE, TRUE,
373                 empathy_get_current_action_time ());
374 }
375
376 GtkWidget *
377 empathy_contact_video_call_menu_item_new (EmpathyContact *contact)
378 {
379         GtkWidget *item;
380         GtkWidget *image;
381
382         g_return_val_if_fail (EMPATHY_IS_CONTACT (contact), NULL);
383
384         item = gtk_image_menu_item_new_with_mnemonic (C_("menu item", "_Video Call"));
385         image = gtk_image_new_from_icon_name (EMPATHY_IMAGE_VIDEO_CALL,
386                                               GTK_ICON_SIZE_MENU);
387         gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (item), image);
388         gtk_widget_set_sensitive (item, empathy_contact_can_voip_video (contact) &&
389                                         !empathy_contact_is_user (contact));
390         gtk_widget_show (image);
391
392         g_signal_connect (item, "activate",
393                                   G_CALLBACK (empathy_contact_video_call_menu_item_activated),
394                                   contact);
395
396         return item;
397 }
398
399 static void
400 contact_log_menu_item_activate_cb (EmpathyContact *contact)
401 {
402         empathy_log_window_show (empathy_contact_get_account (contact),
403                                  empathy_contact_get_id (contact),
404                                  FALSE, NULL);
405 }
406
407 GtkWidget *
408 empathy_contact_log_menu_item_new (EmpathyContact *contact)
409 {
410         TplLogManager     *manager;
411         TplEntity         *entity;
412         gboolean           have_log;
413         GtkWidget         *item;
414         GtkWidget         *image;
415
416         g_return_val_if_fail (EMPATHY_IS_CONTACT (contact), NULL);
417
418         manager = tpl_log_manager_dup_singleton ();
419         entity = tpl_entity_new_from_tp_contact (empathy_contact_get_tp_contact (contact),
420                                                  TPL_ENTITY_CONTACT);
421
422         have_log = tpl_log_manager_exists (manager,
423                                            empathy_contact_get_account (contact),
424                                            entity,
425                                            TPL_EVENT_MASK_TEXT);
426
427         g_object_unref (entity);
428         g_object_unref (manager);
429
430         item = gtk_image_menu_item_new_with_mnemonic (_("_Previous Conversations"));
431         image = gtk_image_new_from_icon_name (EMPATHY_IMAGE_LOG,
432                                               GTK_ICON_SIZE_MENU);
433         gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (item), image);
434         gtk_widget_set_sensitive (item, have_log);
435         gtk_widget_show (image);
436
437         g_signal_connect_swapped (item, "activate",
438                                   G_CALLBACK (contact_log_menu_item_activate_cb),
439                                   contact);
440
441         return item;
442 }
443
444 GtkWidget *
445 empathy_contact_file_transfer_menu_item_new (EmpathyContact *contact)
446 {
447         GtkWidget         *item;
448         GtkWidget         *image;
449
450         g_return_val_if_fail (EMPATHY_IS_CONTACT (contact), NULL);
451
452         item = gtk_image_menu_item_new_with_mnemonic (_("Send File"));
453         image = gtk_image_new_from_icon_name (EMPATHY_IMAGE_DOCUMENT_SEND,
454                                               GTK_ICON_SIZE_MENU);
455         gtk_widget_set_sensitive (item, empathy_contact_can_send_files (contact) &&
456                                         !empathy_contact_is_user (contact));
457         gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (item), image);
458         gtk_widget_show (image);
459
460         g_signal_connect_swapped (item, "activate",
461                                   G_CALLBACK (empathy_send_file_with_file_chooser),
462                                   contact);
463
464         return item;
465 }
466
467 GtkWidget *
468 empathy_contact_share_my_desktop_menu_item_new (EmpathyContact *contact)
469 {
470         GtkWidget         *item;
471         GtkWidget         *image;
472
473         g_return_val_if_fail (EMPATHY_IS_CONTACT (contact), NULL);
474
475         item = gtk_image_menu_item_new_with_mnemonic (_("Share My Desktop"));
476         image = gtk_image_new_from_icon_name (GTK_STOCK_NETWORK,
477                                               GTK_ICON_SIZE_MENU);
478         gtk_widget_set_sensitive (item, empathy_contact_can_use_rfb_stream_tube (
479                 contact));
480         gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (item), image);
481         gtk_widget_show (image);
482
483         g_signal_connect_swapped (item, "activate",
484                                   G_CALLBACK (empathy_share_my_desktop_share_with_contact),
485                                   contact);
486
487         return item;
488 }
489
490 static void
491 contact_info_menu_item_activate_cb (EmpathyContact *contact)
492 {
493         empathy_contact_information_dialog_show (contact, NULL);
494 }
495
496 GtkWidget *
497 empathy_contact_info_menu_item_new (EmpathyContact *contact)
498 {
499         GtkWidget *item;
500         GtkWidget *image;
501
502         g_return_val_if_fail (EMPATHY_IS_CONTACT (contact), NULL);
503
504         item = gtk_image_menu_item_new_with_mnemonic (_("Infor_mation"));
505         image = gtk_image_new_from_icon_name (EMPATHY_IMAGE_CONTACT_INFORMATION,
506                                               GTK_ICON_SIZE_MENU);
507         gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (item), image);
508         gtk_widget_show (image);
509
510         g_signal_connect_swapped (item, "activate",
511                                   G_CALLBACK (contact_info_menu_item_activate_cb),
512                                   contact);
513
514         return item;
515 }
516
517 static void
518 contact_edit_menu_item_activate_cb (EmpathyContact *contact)
519 {
520         empathy_contact_edit_dialog_show (contact, NULL);
521 }
522
523 GtkWidget *
524 empathy_contact_edit_menu_item_new (EmpathyContact *contact)
525 {
526         EmpathyContactManager *manager;
527         GtkWidget *item;
528         GtkWidget *image;
529         gboolean enable = FALSE;
530
531         g_return_val_if_fail (EMPATHY_IS_CONTACT (contact), NULL);
532
533         if (empathy_contact_manager_initialized ()) {
534                 TpConnection *connection;
535                 EmpathyContactListFlags flags;
536
537                 manager = empathy_contact_manager_dup_singleton ();
538                 connection = empathy_contact_get_connection (contact);
539                 flags = empathy_contact_manager_get_flags_for_connection (
540                                 manager, connection);
541
542                 enable = (flags & EMPATHY_CONTACT_LIST_CAN_ALIAS ||
543                           flags & EMPATHY_CONTACT_LIST_CAN_GROUP);
544
545                 g_object_unref (manager);
546         }
547
548         item = gtk_image_menu_item_new_with_mnemonic (
549                                                      C_("Edit contact (contextual menu)",
550                                                         "_Edit"));
551         image = gtk_image_new_from_icon_name (GTK_STOCK_EDIT,
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         gtk_widget_set_sensitive (item, enable);
557
558         g_signal_connect_swapped (item, "activate",
559                                   G_CALLBACK (contact_edit_menu_item_activate_cb),
560                                   contact);
561
562         return item;
563 }
564
565 typedef struct  {
566         EmpathyContact *contact;
567         EmpathyChatroom *chatroom;
568 } RoomSubMenuData;
569
570 static RoomSubMenuData *
571 room_sub_menu_data_new (EmpathyContact *contact,
572                         EmpathyChatroom *chatroom)
573 {
574         RoomSubMenuData *data;
575
576         data = g_slice_new (RoomSubMenuData);
577         data->contact = g_object_ref (contact);
578         data->chatroom = g_object_ref (chatroom);
579         return data;
580 }
581
582 static void
583 room_sub_menu_data_free (RoomSubMenuData *data)
584 {
585         g_object_unref (data->contact);
586         g_object_unref (data->chatroom);
587         g_slice_free (RoomSubMenuData, data);
588 }
589
590 static void
591 room_sub_menu_activate_cb (GtkWidget *item,
592                            RoomSubMenuData *data)
593 {
594         EmpathyTpChat *chat;
595
596         chat = empathy_chatroom_get_tp_chat (data->chatroom);
597         if (chat == NULL) {
598                 /* channel was invalidated. Ignoring */
599                 return;
600         }
601
602         /* send invitation */
603         empathy_contact_list_add (EMPATHY_CONTACT_LIST (chat), data->contact,
604                 _("Inviting you to this room"));
605 }
606
607 static GtkWidget *
608 create_room_sub_menu (EmpathyContact *contact,
609                       EmpathyChatroom *chatroom)
610 {
611         GtkWidget *item;
612         RoomSubMenuData *data;
613
614         item = gtk_menu_item_new_with_label (empathy_chatroom_get_name (chatroom));
615         data = room_sub_menu_data_new (contact, chatroom);
616         g_signal_connect_data (item, "activate",
617                                G_CALLBACK (room_sub_menu_activate_cb), data,
618                                (GClosureNotify) room_sub_menu_data_free, 0);
619
620         return item;
621 }
622
623 GtkWidget *
624 empathy_contact_invite_menu_item_new (EmpathyContact *contact)
625 {
626         GtkWidget *item;
627         GtkWidget *image;
628         GtkWidget *room_item;
629         EmpathyChatroomManager *mgr;
630         GList *rooms, *l;
631         GtkWidget *submenu = NULL;
632
633         g_return_val_if_fail (EMPATHY_IS_CONTACT (contact), NULL);
634
635         item = gtk_image_menu_item_new_with_mnemonic (_("_Invite to Chat Room"));
636         image = gtk_image_new_from_icon_name (EMPATHY_IMAGE_GROUP_MESSAGE,
637                                               GTK_ICON_SIZE_MENU);
638         gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (item), image);
639
640         if (empathy_contact_is_user (contact)) {
641                 gtk_widget_set_sensitive (item, FALSE);
642                 gtk_widget_show (image);
643                 return item;
644         }
645
646         mgr = empathy_chatroom_manager_dup_singleton (NULL);
647         rooms = empathy_chatroom_manager_get_chatrooms (mgr,
648                 empathy_contact_get_account (contact));
649
650         for (l = rooms; l != NULL; l = g_list_next (l)) {
651                 EmpathyChatroom *chatroom = l->data;
652
653                 if (empathy_chatroom_get_tp_chat (chatroom) != NULL) {
654                         if (G_UNLIKELY (submenu == NULL))
655                                 submenu = gtk_menu_new ();
656
657                         room_item = create_room_sub_menu (contact, chatroom);
658                         gtk_menu_shell_append ((GtkMenuShell *) submenu, room_item);
659                         gtk_widget_show (room_item);
660                 }
661         }
662
663         if (submenu) {
664                 gtk_menu_item_set_submenu (GTK_MENU_ITEM (item), submenu);
665         } else {
666                 gtk_widget_set_sensitive (item, FALSE);
667         }
668
669         gtk_widget_show (image);
670
671         g_object_unref (mgr);
672         g_list_free (rooms);
673
674         return item;
675 }
676