]> git.0d.be Git - empathy.git/blob - megaphone/src/megaphone-applet.c
Added functions to determine if a contact has video capabilities
[empathy.git] / megaphone / src / megaphone-applet.c
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /* 
3  * Copyright (C) 2007 Raphaël Slinckx <raphael@slinckx.net>
4  * Copyright (C) 2007-2009 Collabora Ltd.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (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
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19  *
20  * Authors: Raphaël Slinckx <raphael@slinckx.net>
21  *          Xavier Claessens <xclaesse@gmail.com>
22  */
23
24 #include "config.h"
25
26 #include <string.h>
27
28 #include <glib/gi18n.h>
29 #include <gtk/gtk.h>
30 #include <bonobo/bonobo-ui-component.h>
31 #include <panel-2.0/panel-applet-gconf.h>
32 #include <gconf/gconf-client.h>
33
34 #include <libmissioncontrol/mission-control.h>
35
36 #include <libempathy/empathy-tp-contact-factory.h>
37 #include <libempathy/empathy-account-manager.h>
38 #include <libempathy/empathy-dispatcher.h>
39 #include <libempathy/empathy-contact.h>
40 #include <libempathy/empathy-contact-list.h>
41 #include <libempathy/empathy-contact-manager.h>
42 #include <libempathy/empathy-utils.h>
43
44 #include <libempathy-gtk/empathy-contact-list-view.h>
45 #include <libempathy-gtk/empathy-contact-list-store.h>
46 #include <libempathy-gtk/empathy-contact-dialogs.h>
47 #include <libempathy-gtk/empathy-ui-utils.h>
48
49 #include "megaphone-applet.h"
50
51 #define DEBUG_FLAG EMPATHY_DEBUG_OTHER
52 #include <libempathy/empathy-debug.h>
53
54 #define GET_PRIV(obj) EMPATHY_GET_PRIV (obj, MegaphoneApplet)
55 typedef struct {
56         EmpathyTpContactFactory *factory;
57         EmpathyAccountManager   *account_manager;
58         EmpathyAccount          *account;
59         gchar                   *id;
60         GtkWidget               *image;
61         gint                     image_size;
62         EmpathyContact          *contact;
63         GConfClient             *gconf;
64         guint                    gconf_cnxn;
65 } MegaphoneAppletPriv;
66
67 G_DEFINE_TYPE(MegaphoneApplet, megaphone_applet, PANEL_TYPE_APPLET)
68
69 static void
70 megaphone_applet_update_icon (MegaphoneApplet *applet)
71 {
72         MegaphoneAppletPriv *priv = GET_PRIV (applet);
73         EmpathyAvatar       *avatar = NULL;
74         GdkPixbuf           *avatar_pixbuf;
75
76         if (priv->contact) {
77                 avatar = empathy_contact_get_avatar (priv->contact);
78         } else {
79                 gtk_image_set_from_icon_name (GTK_IMAGE (priv->image),
80                                               GTK_STOCK_PREFERENCES,
81                                               GTK_ICON_SIZE_MENU);
82                 return;
83         }
84
85         if (!avatar) {
86                 gchar *avatar_token;
87
88                 /* Try to take avatar from cache */
89                 avatar_token = panel_applet_gconf_get_string (PANEL_APPLET (applet),
90                                                               "avatar_token",
91                                                               NULL);
92                 if (!EMP_STR_EMPTY (avatar_token)) {
93                         empathy_contact_load_avatar_cache (priv->contact, avatar_token);
94                         avatar = empathy_contact_get_avatar (priv->contact);
95                 }
96                 g_free (avatar_token);
97         }
98
99         if (avatar) {
100                 avatar_pixbuf = empathy_pixbuf_from_avatar_scaled (avatar,
101                                                                    priv->image_size - 2,
102                                                                    priv->image_size - 2);
103         } else {
104                 GtkIconTheme *icon_theme;
105
106                 /* Load the default icon when no avatar is found */
107                 icon_theme = gtk_icon_theme_get_default ();
108                 avatar_pixbuf = gtk_icon_theme_load_icon (icon_theme,
109                                                           "stock_contact",
110                                                           priv->image_size - 2,
111                                                           0, NULL);
112         }
113
114         /* Now some desaturation if the contact is offline */
115         if (!empathy_contact_is_online (priv->contact)) {
116                 GdkPixbuf *offline_avatar;
117
118                 offline_avatar = gdk_pixbuf_new (GDK_COLORSPACE_RGB, TRUE,
119                                                  8,
120                                                  gdk_pixbuf_get_height (avatar_pixbuf),
121                                                  gdk_pixbuf_get_width (avatar_pixbuf));
122                 gdk_pixbuf_saturate_and_pixelate (avatar_pixbuf,
123                                                   offline_avatar,
124                                                   0.0,
125                                                   TRUE);
126                 g_object_unref (avatar_pixbuf);
127                 avatar_pixbuf = offline_avatar;
128         }
129
130         gtk_image_set_from_pixbuf (GTK_IMAGE (priv->image), avatar_pixbuf);
131         g_object_unref (avatar_pixbuf);
132 }
133
134 static void
135 megaphone_applet_update_contact (MegaphoneApplet *applet)
136 {
137         MegaphoneAppletPriv *priv = GET_PRIV (applet);
138         const gchar         *name;
139         const gchar         *status;
140         gchar               *tip;
141         const gchar         *avatar_token = NULL;
142
143         if (priv->contact) {
144                 EmpathyAvatar *avatar;
145
146                 avatar = empathy_contact_get_avatar (priv->contact);
147                 if (avatar) {
148                         avatar_token = avatar->token;
149                 }
150         }
151
152         if (avatar_token) {
153                 panel_applet_gconf_set_string (PANEL_APPLET (applet),
154                                                "avatar_token", avatar_token,
155                                                NULL);
156         }
157
158         megaphone_applet_update_icon (applet);
159
160         if (priv->contact ) {
161                 name = empathy_contact_get_name (priv->contact);
162                 status = empathy_contact_get_status (priv->contact);
163                 tip = g_strdup_printf ("<b>%s</b>: %s", name, status);
164                 gtk_widget_set_tooltip_markup (GTK_WIDGET (applet), tip);
165                 g_free (tip);
166         } else {
167                 gtk_widget_set_tooltip_markup (GTK_WIDGET (applet),
168                                                _("Please configure a contact."));
169         }
170
171 }
172
173 static void
174 megaphone_applet_got_contact_cb (EmpathyTpContactFactory *factory,
175                                  EmpathyContact          *contact,
176                                  const GError            *error,
177                                  gpointer                 user_data,
178                                  GObject                 *applet)
179 {
180         MegaphoneAppletPriv *priv = GET_PRIV (applet);
181
182         if (error != NULL) {
183                 DEBUG ("Error: %s", error->message);
184                 return;
185         }
186
187         priv->contact = g_object_ref (contact);
188         g_signal_connect_swapped (priv->contact, "notify",
189                                   G_CALLBACK (megaphone_applet_update_contact),
190                                   applet);
191         megaphone_applet_update_contact (MEGAPHONE_APPLET (applet));
192 }
193
194 static void
195 megaphone_applet_new_connection_cb (EmpathyAccountManager *manager,
196                                     TpConnection          *connection,
197                                     EmpathyAccount        *account,
198                                     MegaphoneApplet       *applet)
199 {
200         MegaphoneAppletPriv *priv = GET_PRIV (applet);
201
202         if (priv->contact || !empathy_account_equal (account, priv->account)) {
203                 return;
204         }
205
206         priv->factory = empathy_tp_contact_factory_dup_singleton (connection);
207         empathy_tp_contact_factory_get_from_id (priv->factory, priv->id,
208                 megaphone_applet_got_contact_cb,
209                 NULL, NULL, G_OBJECT (applet));
210 }
211
212 static void
213 megaphone_applet_preferences_response_cb (GtkWidget       *dialog,
214                                           gint             response,
215                                           MegaphoneApplet *applet) 
216 {
217         if (response == GTK_RESPONSE_ACCEPT) {
218                 EmpathyContactListView *contact_list;
219                 EmpathyContact         *contact;
220
221                 /* Retrieve the selected contact, if any and set it up in gconf.
222                  * GConf will notify us from the change and we will adjust ourselves */
223                 contact_list = g_object_get_data (G_OBJECT (dialog), "contact-list");
224                 contact = empathy_contact_list_view_dup_selected (contact_list);
225                 if (contact) {
226                         EmpathyAccount   *account;
227                         const gchar *account_id;
228                         const gchar *contact_id;
229                         gchar       *str;
230
231                         account = empathy_contact_get_account (contact);
232                         account_id = empathy_account_get_unique_name (account);
233                         contact_id = empathy_contact_get_id (contact);
234
235                         str = g_strconcat (account_id, "/", contact_id, NULL);
236                         panel_applet_gconf_set_string (PANEL_APPLET (applet),
237                                                        "avatar_token", "",
238                                                        NULL);
239                         panel_applet_gconf_set_string (PANEL_APPLET (applet),
240                                                        "contact_id", str,
241                                                        NULL);
242                         g_free (str);
243                         g_object_unref (contact);
244                 }
245         }
246         gtk_widget_destroy (dialog);
247 }
248
249 static void
250 megaphone_applet_show_preferences (MegaphoneApplet *applet)
251 {
252         GtkWidget               *dialog;
253         GtkWidget               *scroll;
254         EmpathyContactListView  *contact_list;
255         EmpathyContactListStore *contact_store;
256         EmpathyContactManager   *contact_manager;
257
258         dialog = gtk_dialog_new_with_buttons (_("Select contact..."),
259                                               NULL, 0,
260                                               GTK_STOCK_CANCEL,
261                                               GTK_RESPONSE_REJECT,
262                                               GTK_STOCK_OK,
263                                               GTK_RESPONSE_ACCEPT,
264                                               NULL);
265
266         /* Show all contacts, even offline and sort alphabetically */
267         contact_manager = empathy_contact_manager_dup_singleton ();
268         contact_store = empathy_contact_list_store_new (EMPATHY_CONTACT_LIST (contact_manager));
269         g_object_set (contact_store,
270                       "is-compact", TRUE,
271                       "show-avatars", TRUE,
272                       "show-offline", TRUE,
273                       "sort-criterium", EMPATHY_CONTACT_LIST_STORE_SORT_NAME,
274                       NULL);
275         contact_list = empathy_contact_list_view_new (contact_store,
276                                                       EMPATHY_CONTACT_LIST_FEATURE_NONE,
277                                                       EMPATHY_CONTACT_FEATURE_NONE);
278         g_object_unref (contact_manager);
279         g_object_unref (contact_store);
280         gtk_widget_show (GTK_WIDGET (contact_list));
281
282         gtk_window_set_default_size (GTK_WINDOW (dialog), 300, 500);
283         scroll = gtk_scrolled_window_new (NULL, NULL);
284         gtk_container_add (GTK_CONTAINER (scroll), GTK_WIDGET (contact_list));
285         gtk_container_add (GTK_CONTAINER (GTK_DIALOG (dialog)->vbox), scroll);
286         gtk_widget_show (scroll);
287         
288         g_object_set_data (G_OBJECT (dialog), "contact-list", contact_list);
289
290         g_signal_connect (dialog, "response",
291                           G_CALLBACK (megaphone_applet_preferences_response_cb),
292                           applet);
293
294         gtk_widget_show (dialog);
295 }
296
297 static gboolean
298 megaphone_applet_button_press_event_cb (GtkWidget       *widget,
299                                         GdkEventButton  *event, 
300                                         MegaphoneApplet *applet)
301 {
302         MegaphoneAppletPriv *priv = GET_PRIV (applet);
303
304         /* Only react on left-clicks */
305         if (event->button != 1 || event->type != GDK_BUTTON_PRESS) {
306                 return FALSE;
307         }
308
309         /* If the contact is unavailable we display the preferences dialog */
310         if (priv->contact == NULL) {
311                 megaphone_applet_show_preferences (applet);
312                 return TRUE;
313         }
314         
315         DEBUG ("Requesting text channel for contact %s (%d)",
316                 empathy_contact_get_id (priv->contact),
317                 empathy_contact_get_handle (priv->contact));
318
319         empathy_dispatcher_chat_with_contact (priv->contact, NULL, NULL);
320
321         return TRUE;
322 }
323
324 static void
325 megaphone_applet_size_allocate_cb (GtkWidget       *widget,
326                                    GtkAllocation   *allocation,
327                                    MegaphoneApplet *applet)
328 {
329         MegaphoneAppletPriv *priv = GET_PRIV (applet);
330         gint                 size;
331         PanelAppletOrient    orient;
332
333         orient = panel_applet_get_orient (PANEL_APPLET (widget));
334         if (orient == PANEL_APPLET_ORIENT_LEFT ||
335             orient == PANEL_APPLET_ORIENT_RIGHT) {
336                 size = allocation->width;
337         } else {
338                 size = allocation->height;
339         }
340
341         if (size != priv->image_size) {
342                 priv->image_size = size;
343                 megaphone_applet_update_icon (applet);
344         }
345 }
346
347 static void
348 megaphone_applet_finalize (GObject *object)
349 {
350         MegaphoneAppletPriv *priv = GET_PRIV (object);
351         
352         if (priv->contact) {
353                 g_object_unref (priv->contact);
354         }
355         if (priv->factory) {
356                 g_object_unref (priv->factory);
357         }
358         if (priv->account_manager) {
359                 g_signal_handlers_disconnect_by_func (priv->account_manager,
360                         megaphone_applet_new_connection_cb, object);
361                 g_object_unref (priv->account_manager);
362         }
363
364         if (priv->gconf_cnxn != 0) {
365                 gconf_client_notify_remove (priv->gconf, priv->gconf_cnxn);
366         }
367         g_object_unref (priv->gconf);
368         g_free (priv->id);
369
370         G_OBJECT_CLASS (megaphone_applet_parent_class)->finalize (object);
371 }
372
373 static void
374 megaphone_applet_class_init (MegaphoneAppletClass *class)
375 {
376         GObjectClass *object_class;
377
378         object_class = G_OBJECT_CLASS (class);
379
380         object_class->finalize = megaphone_applet_finalize;
381
382         g_type_class_add_private (object_class, sizeof (MegaphoneAppletPriv));
383         empathy_gtk_init ();
384 }
385
386 static void
387 megaphone_applet_init (MegaphoneApplet *applet)
388 {
389         MegaphoneAppletPriv *priv = G_TYPE_INSTANCE_GET_PRIVATE (applet,
390                 MEGAPHONE_TYPE_APPLET, MegaphoneAppletPriv);
391
392         applet->priv = priv;
393         priv->gconf = gconf_client_get_default ();
394         priv->account_manager = empathy_account_manager_dup_singleton ();
395         g_signal_connect (priv->account_manager, "new-connection",
396                 G_CALLBACK (megaphone_applet_new_connection_cb), applet);
397
398         /* Image holds the contact avatar */
399         priv->image = gtk_image_new ();
400         gtk_widget_show (priv->image);
401         gtk_container_add (GTK_CONTAINER (applet), priv->image);
402
403         /* We want transparency */
404         panel_applet_set_flags (PANEL_APPLET (applet), PANEL_APPLET_EXPAND_MINOR);
405         panel_applet_set_background_widget (PANEL_APPLET (applet), GTK_WIDGET (applet));
406
407         /* Listen for clicks on the applet to dispatch a channel */
408         g_signal_connect (applet, "button-press-event",
409                           G_CALLBACK (megaphone_applet_button_press_event_cb),
410                           applet);
411
412         /* Allow to resize our avatar when needed */
413         g_signal_connect (applet, "size-allocate",
414                           G_CALLBACK (megaphone_applet_size_allocate_cb),
415                           applet);
416 }
417
418 static void
419 megaphone_applet_set_contact (MegaphoneApplet *applet,
420                               const gchar     *str)
421 {
422         MegaphoneAppletPriv *priv = GET_PRIV (applet);
423         TpConnection        *connection;
424         gchar              **strv = NULL;
425
426         DEBUG ("Setting new contact %s", str);
427
428         /* Release old contact, if any */
429         if (priv->contact) {
430                 g_signal_handlers_disconnect_by_func (priv->contact,
431                                                       megaphone_applet_update_contact,
432                                                       applet);
433                 g_object_unref (priv->contact),
434                 priv->contact = NULL;
435         }
436         if (priv->account) {
437                 g_object_unref (priv->account),
438                 priv->account = NULL;
439         }
440         if (priv->factory) {
441                 g_object_unref (priv->factory),
442                 priv->factory = NULL;
443         }
444
445         /* Lookup the new contact */
446         if (str) {
447                 strv = g_strsplit (str, "/", 2);
448                 priv->account = empathy_account_manager_lookup (priv->account_manager, 
449                         strv[0]);
450                 priv->id = strv[1];
451                 g_free (strv[0]);
452                 g_free (strv);
453         }
454
455         if (priv->account) {
456                 connection = empathy_account_get_connection (priv->account);
457                 if (connection) {
458                         megaphone_applet_new_connection_cb (priv->account_manager,
459                                 connection, priv->account, applet);
460                 }
461         }
462 }
463
464 static void
465 megaphone_applet_information_cb (BonoboUIComponent *uic,
466                                  MegaphoneApplet   *applet,
467                                  const gchar       *verb_name)
468 {
469         MegaphoneAppletPriv *priv = GET_PRIV (applet);
470
471         /* FIXME: We should grey out the menu item if there are no available contact */
472         if (priv->contact) {
473                 empathy_contact_information_dialog_show (priv->contact, NULL);
474         }
475 }
476
477 static void
478 megaphone_applet_preferences_cb (BonoboUIComponent *uic, 
479                                  MegaphoneApplet   *applet, 
480                                  const gchar       *verb_name)
481 {
482         megaphone_applet_show_preferences (applet);
483 }
484
485 static void
486 megaphone_applet_gconf_notify_cb (GConfClient     *client,
487                                   guint            cnxn_id,
488                                   GConfEntry      *entry,
489                                   MegaphoneApplet *applet)
490 {
491         const gchar *key;
492         GConfValue  *value;
493
494         key = gconf_entry_get_key (entry);
495         value = gconf_entry_get_value (entry);
496         DEBUG ("GConf notification for key '%s'", key);
497
498         if (value && g_str_has_suffix (key, "/contact_id")) {
499                 megaphone_applet_set_contact (applet,
500                                               gconf_value_get_string (value));
501         }
502 }
503
504 static void
505 megaphone_applet_about_cb (BonoboUIComponent *uic, 
506                            MegaphoneApplet   *applet, 
507                            const gchar       *verb_name)
508 {
509         const char* authors[] = {
510                 "Raphaël Slinckx <raphael@slinckx.net>", 
511                 "Xavier Claessens <xclaesse@gmail.com>", 
512                 NULL
513         };
514
515         gtk_show_about_dialog (NULL,
516                                "name", "Megaphone", 
517                                "version", PACKAGE_VERSION,
518                                "copyright", "Raphaël Slinckx 2007\nCollabora Ltd 2007",
519                                "comments", _("Talk!"),
520                                "authors", authors,
521                                "logo-icon-name", "stock_people",
522                                NULL);
523 }
524
525 static const BonoboUIVerb megaphone_applet_menu_verbs [] = {
526         BONOBO_UI_UNSAFE_VERB ("information", megaphone_applet_information_cb),
527         BONOBO_UI_UNSAFE_VERB ("preferences", megaphone_applet_preferences_cb),
528         BONOBO_UI_UNSAFE_VERB ("about",       megaphone_applet_about_cb),
529         BONOBO_UI_VERB_END
530 };
531
532 static gboolean
533 megaphone_applet_factory (PanelApplet *applet, 
534                           const gchar *iid, 
535                           gpointer     data)
536 {
537         MegaphoneAppletPriv *priv = GET_PRIV (applet);
538         gchar               *pref_dir;
539         gchar               *contact_id;
540
541         /* Ensure it's us! */
542         if (strcmp (iid, "OAFIID:GNOME_Megaphone_Applet") != 0) {
543                 return FALSE;
544         }
545         
546         DEBUG ("Starting up new instance!");
547
548         /* Set up the right-click menu */
549         panel_applet_setup_menu_from_file (applet,
550                                            PKGDATADIR,
551                                            "GNOME_Megaphone_Applet.xml",
552                                            NULL,
553                                            megaphone_applet_menu_verbs,
554                                            applet);
555
556         /* Define the schema to be used for each applet instance's preferences */
557         panel_applet_add_preferences (applet,
558                                       "/schemas/apps/megaphone-applet/prefs",
559                                       NULL);
560         
561         /* We watch the preferences directory */
562         pref_dir = panel_applet_gconf_get_full_key (applet, "");
563         pref_dir[strlen (pref_dir)-1] = '\0';
564         gconf_client_add_dir (priv->gconf, pref_dir,
565                               GCONF_CLIENT_PRELOAD_ONELEVEL,
566                               NULL);
567         gconf_client_notify_add (priv->gconf, pref_dir,
568                                  (GConfClientNotifyFunc) megaphone_applet_gconf_notify_cb,
569                                  applet,
570                                  NULL, NULL);
571         g_free (pref_dir);
572
573         /* Initial setup with the pre-existing gconf key, or contact_id=NULL if no previous pref */
574         contact_id = panel_applet_gconf_get_string (PANEL_APPLET (applet), "contact_id", NULL);
575         megaphone_applet_set_contact (MEGAPHONE_APPLET (applet), contact_id);
576         g_free (contact_id);
577
578         /* Let's go! */
579         gtk_widget_show (GTK_WIDGET (applet));
580
581         return TRUE;
582 }
583
584 PANEL_APPLET_BONOBO_FACTORY ("OAFIID:GNOME_Megaphone_Applet_Factory",
585                              MEGAPHONE_TYPE_APPLET,
586                              "Megaphone", PACKAGE_VERSION,
587                              megaphone_applet_factory,
588                              NULL);
589