]> git.0d.be Git - empathy.git/blob - libempathy-gtk/empathy-contact-menu.c
Added empathy_send_file_with_file_chooser_and_manager to make use of the file transfe...
[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         empathy_send_file_with_file_chooser_and_manager (contact);
199 }
200
201 GtkWidget *
202 empathy_contact_file_transfer_menu_item_new (EmpathyContact *contact)
203 {
204         GtkWidget         *item;
205         GtkWidget         *image;
206
207         g_return_val_if_fail (EMPATHY_IS_CONTACT (contact), NULL);
208
209         item = gtk_image_menu_item_new_with_mnemonic (_("Send file"));
210         image = gtk_image_new_from_icon_name (EMPATHY_IMAGE_DOCUMENT_SEND,
211                                               GTK_ICON_SIZE_MENU);
212         gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (item), image);
213         gtk_widget_show (image);
214
215         g_signal_connect_swapped (item, "activate",
216                                   G_CALLBACK (contact_file_transfer_menu_item_activate_cb),
217                                   contact);
218
219         return item;
220 }
221
222 static void
223 contact_info_menu_item_activate_cb (EmpathyContact *contact)
224 {
225         empathy_contact_information_dialog_show (contact, NULL, FALSE, FALSE);
226 }
227
228 GtkWidget *
229 empathy_contact_info_menu_item_new (EmpathyContact *contact)
230 {
231         GtkWidget *item;
232         GtkWidget *image;
233
234         g_return_val_if_fail (EMPATHY_IS_CONTACT (contact), NULL);
235
236         item = gtk_image_menu_item_new_with_mnemonic (_("Infor_mation"));
237         image = gtk_image_new_from_icon_name (EMPATHY_IMAGE_CONTACT_INFORMATION,
238                                               GTK_ICON_SIZE_MENU);
239         gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (item), image);
240         gtk_widget_show (image);
241
242         g_signal_connect_swapped (item, "activate",
243                                   G_CALLBACK (contact_info_menu_item_activate_cb),
244                                   contact);
245         
246         return item;
247 }
248
249 static void
250 contact_edit_menu_item_activate_cb (EmpathyContact *contact)
251 {
252         empathy_contact_information_dialog_show (contact, NULL, TRUE, FALSE);
253 }
254
255 GtkWidget *
256 empathy_contact_edit_menu_item_new (EmpathyContact *contact)
257 {
258         GtkWidget *item;
259         GtkWidget *image;
260
261         g_return_val_if_fail (EMPATHY_IS_CONTACT (contact), NULL);
262
263         item = gtk_image_menu_item_new_with_mnemonic (_("_Edit"));
264         image = gtk_image_new_from_icon_name (GTK_STOCK_EDIT,
265                                               GTK_ICON_SIZE_MENU);
266         gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (item), image);
267         gtk_widget_show (image);
268
269         g_signal_connect_swapped (item, "activate",
270                                   G_CALLBACK (contact_edit_menu_item_activate_cb),
271                                   contact);
272         
273         return item;
274 }
275
276 typedef struct 
277 {
278   EmpathyContact *contact;
279   EmpathyChatroom *chatroom;
280 } contact_room_sub_menu_item_activate_cb_ctx;
281
282 static contact_room_sub_menu_item_activate_cb_ctx *
283 contact_room_sub_menu_item_activate_cb_ctx_new (EmpathyContact *contact,
284                                                 EmpathyChatroom *chatroom)
285 {
286   contact_room_sub_menu_item_activate_cb_ctx *ctx;
287
288   ctx = g_slice_new (contact_room_sub_menu_item_activate_cb_ctx);
289
290   ctx->contact = g_object_ref (contact);
291   ctx->chatroom = g_object_ref (chatroom);
292
293   return ctx;
294 }
295
296 static void
297 contact_room_sub_menu_item_activate_cb_ctx_free (
298     contact_room_sub_menu_item_activate_cb_ctx *ctx)
299 {
300   /* FIXME: seems this is never called... */
301   g_object_unref (ctx->contact);
302   g_object_unref (ctx->chatroom);
303
304   g_slice_free (contact_room_sub_menu_item_activate_cb_ctx, ctx);
305 }
306
307 static void
308 contact_room_sub_menu_item_activate_cb (
309     GtkWidget *item,
310     contact_room_sub_menu_item_activate_cb_ctx *ctx)
311 {
312   GArray *handles;
313   TpHandle handle;
314   TpChannel *channel;
315
316   g_object_get (ctx->chatroom, "tp-channel", &channel, NULL);
317   if (channel == NULL)
318     /* channel was invalidated. Ignoring */
319     return;
320
321   /* send invitation */
322   handles = g_array_new (FALSE, FALSE, sizeof (TpHandle));
323   handle = empathy_contact_get_handle (ctx->contact);
324   g_array_append_val (handles, handle);
325
326   tp_cli_channel_interface_group_call_add_members (channel, -1, handles,
327       _("Inviting to this room"), NULL, NULL, NULL, NULL);
328
329   g_array_free (handles, TRUE);
330   g_object_unref (channel);
331 }
332
333 static GtkWidget *
334 create_room_sub_menu_item (EmpathyContact *contact,
335                            EmpathyChatroom *chatroom)
336 {
337         GtkWidget *item;
338   contact_room_sub_menu_item_activate_cb_ctx *ctx;
339
340         g_return_val_if_fail (EMPATHY_IS_CONTACT (contact), NULL);
341
342   item = gtk_menu_item_new_with_label (empathy_chatroom_get_name (chatroom));
343
344   ctx = contact_room_sub_menu_item_activate_cb_ctx_new (contact, chatroom);
345
346   g_signal_connect_data (item, "activate",
347       G_CALLBACK (contact_room_sub_menu_item_activate_cb), ctx,
348       (GClosureNotify) contact_room_sub_menu_item_activate_cb_ctx_free, 0);
349
350         return item;
351 }
352
353 GtkWidget *
354 empathy_contact_invite_menu_item_new (EmpathyContact *contact)
355 {
356         GtkWidget *item;
357         GtkWidget *image;
358   GtkWidget *room_item;
359   EmpathyChatroomManager *mgr;
360   GList *rooms, *l;
361   GtkWidget *submenu;
362   GtkMenuShell *submenu_shell;
363   gboolean have_rooms = FALSE;
364
365         g_return_val_if_fail (EMPATHY_IS_CONTACT (contact), NULL);
366
367         item = gtk_image_menu_item_new_with_mnemonic (_("_Invite to chatroom"));
368         image = gtk_image_new_from_icon_name (EMPATHY_IMAGE_GROUP_MESSAGE,
369                                               GTK_ICON_SIZE_MENU);
370         gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (item), image);
371
372   mgr = empathy_chatroom_manager_new (NULL);
373   rooms = empathy_chatroom_manager_get_chatrooms (mgr,
374       empathy_contact_get_account (contact));
375
376   /* create rooms sub menu */
377   submenu = gtk_menu_new ();
378   submenu_shell = GTK_MENU_SHELL (submenu);
379
380   for (l = rooms; l != NULL; l = g_list_next (l))
381     {
382       EmpathyChatroom *chatroom = l->data;
383       TpChannel *channel;
384
385       g_object_get (chatroom, "tp-channel", &channel, NULL);
386       if (channel != NULL)
387         {
388           have_rooms = TRUE;
389
390           room_item = create_room_sub_menu_item (contact, chatroom);
391           gtk_menu_shell_append (submenu_shell, room_item);
392           gtk_widget_show (room_item);
393
394           g_object_unref (channel);
395         }
396     }
397
398   if (have_rooms)
399     {
400       gtk_menu_item_set_submenu (GTK_MENU_ITEM (item), submenu);
401     }
402   else
403     {
404       gtk_widget_set_sensitive (item, FALSE);
405       gtk_widget_destroy (submenu);
406     }
407
408         gtk_widget_show (image);
409
410   g_object_unref (mgr);
411   g_list_free (rooms);
412
413         return item;
414 }