]> git.0d.be Git - empathy.git/blob - libempathy-gtk/empathy-contact-menu.c
Updated parameter checks to return appropriate values. (Jonny Lamb)
[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.h>
27 #include <gtk/gtk.h>
28
29 #include <libempathy/empathy-log-manager.h>
30 #include <libempathy/empathy-dispatcher.h>
31 #include <libempathy/empathy-utils.h>
32 #include <libempathy/empathy-chatroom-manager.h>
33
34 #include "empathy-contact-menu.h"
35 #include "empathy-images.h"
36 #include "empathy-log-window.h"
37 #include "empathy-contact-dialogs.h"
38 #include "empathy-ui-utils.h"
39
40 GtkWidget *
41 empathy_contact_menu_new (EmpathyContact             *contact,
42                           EmpathyContactFeatureFlags  features)
43 {
44         GtkWidget    *menu;
45         GtkMenuShell *shell;
46         GtkWidget    *item;
47
48         g_return_val_if_fail (EMPATHY_IS_CONTACT (contact), NULL);
49
50         if (features == EMPATHY_CONTACT_FEATURE_NONE) {
51                 return NULL;
52         }
53
54         menu = gtk_menu_new ();
55         shell = GTK_MENU_SHELL (menu);
56
57         /* Chat */
58         if (features & EMPATHY_CONTACT_FEATURE_CHAT) {
59                 item = empathy_contact_chat_menu_item_new (contact);
60                 gtk_menu_shell_append (shell, item);
61                 gtk_widget_show (item);
62         }
63
64         /* Call */
65         if (features & EMPATHY_CONTACT_FEATURE_CALL) {
66                 item = empathy_contact_call_menu_item_new (contact);
67                 gtk_menu_shell_append (shell, item);
68                 gtk_widget_show (item);
69         }
70
71         /* Log */
72         if (features & EMPATHY_CONTACT_FEATURE_LOG) {
73                 item = empathy_contact_log_menu_item_new (contact);
74                 gtk_menu_shell_append (shell, item);
75                 gtk_widget_show (item);
76         }
77
78   /* Invite */
79   item = empathy_contact_invite_menu_item_new (contact);
80         gtk_menu_shell_append (shell, item);
81         gtk_widget_show (item);
82
83         /* File transfer */
84         item = empathy_contact_file_transfer_menu_item_new (contact);
85         gtk_menu_shell_append (shell, item);
86         gtk_widget_show (item);
87
88         /* Separator */
89         if (features & (EMPATHY_CONTACT_FEATURE_EDIT |
90                         EMPATHY_CONTACT_FEATURE_INFO)) {
91                 item = gtk_separator_menu_item_new ();
92                 gtk_menu_shell_append (shell, item);
93                 gtk_widget_show (item);
94         }
95
96         /* Edit */
97         if (features & EMPATHY_CONTACT_FEATURE_EDIT) {
98                 item = empathy_contact_edit_menu_item_new (contact);
99                 gtk_menu_shell_append (shell, item);
100                 gtk_widget_show (item);
101         }
102
103         /* Info */
104         if (features & EMPATHY_CONTACT_FEATURE_INFO) {
105                 item = empathy_contact_info_menu_item_new (contact);
106                 gtk_menu_shell_append (shell, item);
107                 gtk_widget_show (item);
108         }
109
110         return menu;
111 }
112
113 GtkWidget *
114 empathy_contact_chat_menu_item_new (EmpathyContact *contact)
115 {
116         GtkWidget *item;
117         GtkWidget *image;
118
119         g_return_val_if_fail (EMPATHY_IS_CONTACT (contact), NULL);
120
121         item = gtk_image_menu_item_new_with_mnemonic (_("_Chat"));
122         image = gtk_image_new_from_icon_name (EMPATHY_IMAGE_MESSAGE,
123                                               GTK_ICON_SIZE_MENU);
124         gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (item), image);
125         gtk_widget_show (image);
126
127         g_signal_connect_swapped (item, "activate",
128                                   G_CALLBACK (empathy_dispatcher_chat_with_contact),
129                                   contact);
130         
131         return item;
132 }
133
134 GtkWidget *
135 empathy_contact_call_menu_item_new (EmpathyContact *contact)
136 {
137         GtkWidget *item;
138         GtkWidget *image;
139
140         g_return_val_if_fail (EMPATHY_IS_CONTACT (contact), NULL);
141
142         item = gtk_image_menu_item_new_with_mnemonic (_("_Call"));
143         image = gtk_image_new_from_icon_name (EMPATHY_IMAGE_VOIP,
144                                               GTK_ICON_SIZE_MENU);
145         gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (item), image);
146         gtk_widget_set_sensitive (item, empathy_contact_can_voip (contact));
147         gtk_widget_show (image);
148
149         g_signal_connect_swapped (item, "activate",
150                                   G_CALLBACK (empathy_dispatcher_call_with_contact),
151                                   contact);
152         
153         return item;
154 }
155
156 static void
157 contact_log_menu_item_activate_cb (EmpathyContact *contact)
158 {
159         empathy_log_window_show (empathy_contact_get_account (contact),
160                                  empathy_contact_get_id (contact),
161                                  FALSE, NULL);
162 }
163
164 GtkWidget *
165 empathy_contact_log_menu_item_new (EmpathyContact *contact)
166 {
167         EmpathyLogManager *manager;
168         gboolean           have_log;
169         GtkWidget         *item;
170         GtkWidget         *image;
171
172         g_return_val_if_fail (EMPATHY_IS_CONTACT (contact), NULL);
173
174         manager = empathy_log_manager_new ();
175         have_log = empathy_log_manager_exists (manager,
176                                                empathy_contact_get_account (contact),
177                                                empathy_contact_get_id (contact),
178                                                FALSE);
179         g_object_unref (manager);
180
181         item = gtk_image_menu_item_new_with_mnemonic (_("_View Previous Conversations"));
182         image = gtk_image_new_from_icon_name (EMPATHY_IMAGE_LOG,
183                                               GTK_ICON_SIZE_MENU);
184         gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (item), image);
185         gtk_widget_set_sensitive (item, have_log);
186         gtk_widget_show (image);
187
188         g_signal_connect_swapped (item, "activate",
189                                   G_CALLBACK (contact_log_menu_item_activate_cb),
190                                   contact);
191         
192         return item;
193 }
194
195 static void
196 contact_file_transfer_menu_item_activate_cb (EmpathyContact *contact)
197 {
198         g_return_if_fail (EMPATHY_IS_CONTACT (contact));
199         empathy_send_file_with_file_chooser_and_manager (contact);
200 }
201
202 GtkWidget *
203 empathy_contact_file_transfer_menu_item_new (EmpathyContact *contact)
204 {
205         GtkWidget         *item;
206         GtkWidget         *image;
207
208         g_return_val_if_fail (EMPATHY_IS_CONTACT (contact), NULL);
209
210         item = gtk_image_menu_item_new_with_mnemonic (_("Send file"));
211         image = gtk_image_new_from_icon_name (EMPATHY_IMAGE_DOCUMENT_SEND,
212                                               GTK_ICON_SIZE_MENU);
213         gtk_widget_set_sensitive (item, empathy_contact_can_send_files (contact));
214         gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (item), image);
215         gtk_widget_show (image);
216
217         g_signal_connect_swapped (item, "activate",
218                                   G_CALLBACK (contact_file_transfer_menu_item_activate_cb),
219                                   contact);
220
221         return item;
222 }
223
224 static void
225 contact_info_menu_item_activate_cb (EmpathyContact *contact)
226 {
227         empathy_contact_information_dialog_show (contact, NULL, FALSE, FALSE);
228 }
229
230 GtkWidget *
231 empathy_contact_info_menu_item_new (EmpathyContact *contact)
232 {
233         GtkWidget *item;
234         GtkWidget *image;
235
236         g_return_val_if_fail (EMPATHY_IS_CONTACT (contact), NULL);
237
238         item = gtk_image_menu_item_new_with_mnemonic (_("Infor_mation"));
239         image = gtk_image_new_from_icon_name (EMPATHY_IMAGE_CONTACT_INFORMATION,
240                                               GTK_ICON_SIZE_MENU);
241         gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (item), image);
242         gtk_widget_show (image);
243
244         g_signal_connect_swapped (item, "activate",
245                                   G_CALLBACK (contact_info_menu_item_activate_cb),
246                                   contact);
247         
248         return item;
249 }
250
251 static void
252 contact_edit_menu_item_activate_cb (EmpathyContact *contact)
253 {
254         empathy_contact_information_dialog_show (contact, NULL, TRUE, FALSE);
255 }
256
257 GtkWidget *
258 empathy_contact_edit_menu_item_new (EmpathyContact *contact)
259 {
260         GtkWidget *item;
261         GtkWidget *image;
262
263         g_return_val_if_fail (EMPATHY_IS_CONTACT (contact), NULL);
264
265         item = gtk_image_menu_item_new_with_mnemonic (_("_Edit"));
266         image = gtk_image_new_from_icon_name (GTK_STOCK_EDIT,
267                                               GTK_ICON_SIZE_MENU);
268         gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (item), image);
269         gtk_widget_show (image);
270
271         g_signal_connect_swapped (item, "activate",
272                                   G_CALLBACK (contact_edit_menu_item_activate_cb),
273                                   contact);
274         
275         return item;
276 }
277
278 typedef struct 
279 {
280   EmpathyContact *contact;
281   EmpathyChatroom *chatroom;
282 } contact_room_sub_menu_item_activate_cb_ctx;
283
284 static contact_room_sub_menu_item_activate_cb_ctx *
285 contact_room_sub_menu_item_activate_cb_ctx_new (EmpathyContact *contact,
286                                                 EmpathyChatroom *chatroom)
287 {
288   contact_room_sub_menu_item_activate_cb_ctx *ctx;
289
290   ctx = g_slice_new (contact_room_sub_menu_item_activate_cb_ctx);
291
292   ctx->contact = g_object_ref (contact);
293   ctx->chatroom = g_object_ref (chatroom);
294
295   return ctx;
296 }
297
298 static void
299 contact_room_sub_menu_item_activate_cb_ctx_free (
300     contact_room_sub_menu_item_activate_cb_ctx *ctx)
301 {
302   /* FIXME: seems this is never called... */
303   g_object_unref (ctx->contact);
304   g_object_unref (ctx->chatroom);
305
306   g_slice_free (contact_room_sub_menu_item_activate_cb_ctx, ctx);
307 }
308
309 static void
310 contact_room_sub_menu_item_activate_cb (
311     GtkWidget *item,
312     contact_room_sub_menu_item_activate_cb_ctx *ctx)
313 {
314   GArray *handles;
315   TpHandle handle;
316   TpChannel *channel;
317
318   g_object_get (ctx->chatroom, "tp-channel", &channel, NULL);
319   if (channel == NULL)
320     /* channel was invalidated. Ignoring */
321     return;
322
323   /* send invitation */
324   handles = g_array_new (FALSE, FALSE, sizeof (TpHandle));
325   handle = empathy_contact_get_handle (ctx->contact);
326   g_array_append_val (handles, handle);
327
328   tp_cli_channel_interface_group_call_add_members (channel, -1, handles,
329       _("Inviting to this room"), NULL, NULL, NULL, NULL);
330
331   g_array_free (handles, TRUE);
332   g_object_unref (channel);
333 }
334
335 static GtkWidget *
336 create_room_sub_menu_item (EmpathyContact *contact,
337                            EmpathyChatroom *chatroom)
338 {
339         GtkWidget *item;
340   contact_room_sub_menu_item_activate_cb_ctx *ctx;
341
342         g_return_val_if_fail (EMPATHY_IS_CONTACT (contact), NULL);
343
344   item = gtk_menu_item_new_with_label (empathy_chatroom_get_name (chatroom));
345
346   ctx = contact_room_sub_menu_item_activate_cb_ctx_new (contact, chatroom);
347
348   g_signal_connect_data (item, "activate",
349       G_CALLBACK (contact_room_sub_menu_item_activate_cb), ctx,
350       (GClosureNotify) contact_room_sub_menu_item_activate_cb_ctx_free, 0);
351
352         return item;
353 }
354
355 GtkWidget *
356 empathy_contact_invite_menu_item_new (EmpathyContact *contact)
357 {
358         GtkWidget *item;
359         GtkWidget *image;
360   GtkWidget *room_item;
361   EmpathyChatroomManager *mgr;
362   GList *rooms, *l;
363   GtkWidget *submenu;
364   GtkMenuShell *submenu_shell;
365   gboolean have_rooms = FALSE;
366
367         g_return_val_if_fail (EMPATHY_IS_CONTACT (contact), NULL);
368
369         item = gtk_image_menu_item_new_with_mnemonic (_("_Invite to chatroom"));
370         image = gtk_image_new_from_icon_name (EMPATHY_IMAGE_GROUP_MESSAGE,
371                                               GTK_ICON_SIZE_MENU);
372         gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (item), image);
373
374   mgr = empathy_chatroom_manager_new (NULL);
375   rooms = empathy_chatroom_manager_get_chatrooms (mgr,
376       empathy_contact_get_account (contact));
377
378   /* create rooms sub menu */
379   submenu = gtk_menu_new ();
380   submenu_shell = GTK_MENU_SHELL (submenu);
381
382   for (l = rooms; l != NULL; l = g_list_next (l))
383     {
384       EmpathyChatroom *chatroom = l->data;
385       TpChannel *channel;
386
387       g_object_get (chatroom, "tp-channel", &channel, NULL);
388       if (channel != NULL)
389         {
390           have_rooms = TRUE;
391
392           room_item = create_room_sub_menu_item (contact, chatroom);
393           gtk_menu_shell_append (submenu_shell, room_item);
394           gtk_widget_show (room_item);
395
396           g_object_unref (channel);
397         }
398     }
399
400   if (have_rooms)
401     {
402       gtk_menu_item_set_submenu (GTK_MENU_ITEM (item), submenu);
403     }
404   else
405     {
406       gtk_widget_set_sensitive (item, FALSE);
407       gtk_widget_destroy (submenu);
408     }
409
410         gtk_widget_show (image);
411
412   g_object_unref (mgr);
413   g_list_free (rooms);
414
415         return item;
416 }