]> git.0d.be Git - empathy.git/blobdiff - libempathy-gtk/empathy-ui-utils.c
Add a empathy_sound_play_full function
[empathy.git] / libempathy-gtk / empathy-ui-utils.c
index 1331f3fb9171c458b160ab4010d2ea4c311eb6cb..692b6ff7d82f6d44764a3152d79d32c3b07c2024 100644 (file)
@@ -1,7 +1,7 @@
 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
 /*
  * Copyright (C) 2002-2007 Imendio AB
- * Copyright (C) 2007 Collabora Ltd.
+ * Copyright (C) 2007-2008 Collabora Ltd.
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License as
  *          Richard Hult <richard@imendio.com>
  *          Martyn Russell <martyn@imendio.com>
  *          Xavier Claessens <xclaesse@gmail.com>
+ *          Jonny Lamb <jonny.lamb@collabora.co.uk>
  * 
  *          Part of this file is copied from GtkSourceView (gtksourceiter.c):
  *          Paolo Maggi
  *          Jeroen Zwartepoorte
  */
 
-#include <string.h>
+#include <config.h>
 
-#include <glib/gi18n.h>
+#include <string.h>
+#include <X11/Xatom.h>
+#include <gdk/gdkx.h>
+#include <glib/gi18n-lib.h>
 #include <gtk/gtk.h>
+#include <gio/gio.h>
 #include <glade/glade.h>
-#include <libgnomevfs/gnome-vfs-utils.h>
+#include <canberra-gtk.h>
 
 #include <libmissioncontrol/mc-profile.h>
 
-#include <libempathy/empathy-debug.h>
-
 #include "empathy-ui-utils.h"
 #include "empathy-images.h"
+#include "empathy-conf.h"
 
-#define DEBUG_DOMAIN "UiUtils"
+#define DEBUG_FLAG EMPATHY_DEBUG_OTHER
+#include <libempathy/empathy-debug.h>
+#include <libempathy/empathy-utils.h>
+#include <libempathy/empathy-dispatcher.h>
+#include <libempathy/empathy-idle.h>
+#include <libempathy/empathy-tp-file.h>
+
+void
+empathy_gtk_init (void)
+{
+       static gboolean initialized = FALSE;
+
+       if (initialized)
+               return;
+
+       empathy_init ();
+       gtk_icon_theme_append_search_path (gtk_icon_theme_get_default (),
+                                          PKGDATADIR G_DIR_SEPARATOR_S "icons");
+
+       initialized = TRUE;
+}
 
 struct SizeData {
        gint     width;
@@ -57,18 +81,16 @@ get_glade_file (const gchar *filename,
                const gchar *first_required_widget,
                va_list      args)
 {
-       gchar      *path;
        GladeXML   *gui;
        const char *name;
        GtkWidget **widget_ptr;
 
-       path = g_build_filename (DATADIR, "empathy", filename, NULL);
-       gui = glade_xml_new (path, root, domain);
-       g_free (path);
+       DEBUG ("Loading glade file %s", filename);
+
+       gui = glade_xml_new (filename, root, domain);
 
        if (!gui) {
                g_warning ("Couldn't find necessary glade file '%s'", filename);
-               return NULL;
        }
 
        for (name = first_required_widget; name; name = va_arg (args, char *)) {
@@ -105,11 +127,9 @@ empathy_glade_get_file_simple (const gchar *filename,
 
        va_end (args);
 
-       if (!gui) {
-               return;
+       if (gui) {
+               g_object_unref (gui);
        }
-
-       g_object_unref (gui);
 }
 
 GladeXML *
@@ -200,133 +220,6 @@ empathy_glade_setup_size_group (GladeXML         *gui,
        va_end (args);
 }
 
-GdkPixbuf *
-empathy_pixbuf_from_icon_name (const gchar *icon_name,
-                             GtkIconSize  icon_size)
-{
-       GtkIconTheme  *theme;
-       GdkPixbuf     *pixbuf = NULL;
-       GError        *error = NULL;
-       gint           w, h;
-       gint           size = 48;
-
-       theme = gtk_icon_theme_get_default ();
-
-       if (gtk_icon_size_lookup (icon_size, &w, &h)) {
-               size = (w + h) / 2;
-       }
-
-       pixbuf = gtk_icon_theme_load_icon (theme,
-                                          icon_name,
-                                          size,
-                                          0,
-                                          &error);
-       if (error) {
-               empathy_debug (DEBUG_DOMAIN, "Error loading icon: %s", error->message);
-               g_clear_error (&error);
-       }
-
-       return pixbuf;
-}
-
-GdkPixbuf *
-empathy_pixbuf_from_smiley (EmpathySmiley type,
-                          GtkIconSize  icon_size)
-{
-       const gchar *icon_id;
-
-       switch (type) {
-       case EMPATHY_SMILEY_NORMAL:       /*  :)   */
-               icon_id = "stock_smiley-1";
-               break;
-       case EMPATHY_SMILEY_WINK:         /*  ;)   */
-               icon_id = "stock_smiley-3";
-               break;
-       case EMPATHY_SMILEY_BIGEYE:       /*  =)   */
-               icon_id = "stock_smiley-2";
-               break;
-       case EMPATHY_SMILEY_NOSE:         /*  :-)  */
-               icon_id = "stock_smiley-7";
-               break;
-       case EMPATHY_SMILEY_CRY:          /*  :'(  */
-               icon_id = "stock_smiley-11";
-               break;
-       case EMPATHY_SMILEY_SAD:          /*  :(   */
-               icon_id = "stock_smiley-4";
-               break;
-       case EMPATHY_SMILEY_SCEPTICAL:    /*  :/   */
-               icon_id = "stock_smiley-9";
-               break;
-       case EMPATHY_SMILEY_BIGSMILE:     /*  :D   */
-               icon_id = "stock_smiley-6";
-               break;
-       case EMPATHY_SMILEY_INDIFFERENT:  /*  :|   */
-               icon_id = "stock_smiley-8";
-               break;
-       case EMPATHY_SMILEY_TOUNGE:       /*  :p   */
-               icon_id = "stock_smiley-10";
-               break;
-       case EMPATHY_SMILEY_SHOCKED:      /*  :o   */
-               icon_id = "stock_smiley-5";
-               break;
-       case EMPATHY_SMILEY_COOL:         /*  8)   */
-               icon_id = "stock_smiley-15";
-               break;
-       case EMPATHY_SMILEY_SORRY:        /*  *|   */
-               icon_id = "stock_smiley-12";
-               break;
-       case EMPATHY_SMILEY_KISS:         /*  :*   */
-               icon_id = "stock_smiley-13";
-               break;
-       case EMPATHY_SMILEY_SHUTUP:       /*  :#   */
-               icon_id = "stock_smiley-14";
-               break;
-       case EMPATHY_SMILEY_YAWN:         /*  |O   */
-               icon_id = "";
-               break;
-       case EMPATHY_SMILEY_CONFUSED:     /*  :$   */
-               icon_id = "stock_smiley-17";
-               break;
-       case EMPATHY_SMILEY_ANGEL:        /*  O)   */
-               icon_id = "stock_smiley-18";
-               break;
-       case EMPATHY_SMILEY_OOOH:         /*  :x   */
-               icon_id = "stock_smiley-19";
-               break;
-       case EMPATHY_SMILEY_LOOKAWAY:     /*  *)   */
-               icon_id = "stock_smiley-20";
-               break;
-       case EMPATHY_SMILEY_BLUSH:        /*  *S   */
-               icon_id = "stock_smiley-23";
-               break;
-       case EMPATHY_SMILEY_COOLBIGSMILE: /*  8D   */
-               icon_id = "stock_smiley-25";
-               break;
-       case EMPATHY_SMILEY_ANGRY:        /*  :@   */
-               icon_id = "stock_smiley-16";
-               break;
-       case EMPATHY_SMILEY_BOSS:         /*  @)   */
-               icon_id = "stock_smiley-21";
-               break;
-       case EMPATHY_SMILEY_MONKEY:       /*  #)   */
-               icon_id = "stock_smiley-22";
-               break;
-       case EMPATHY_SMILEY_SILLY:        /*  O)   */
-               icon_id = "stock_smiley-24";
-               break;
-       case EMPATHY_SMILEY_SICK:         /*  +o(  */
-               icon_id = "stock_smiley-26";
-               break;
-
-       default:
-               g_assert_not_reached ();
-               icon_id = NULL;
-       }
-
-
-       return empathy_pixbuf_from_icon_name (icon_id, icon_size);
-}
-
 const gchar *
 empathy_icon_name_from_account (McAccount *account)
 {
@@ -338,9 +231,9 @@ empathy_icon_name_from_account (McAccount *account)
 }
 
 const gchar *
-empathy_icon_name_for_presence_state (McPresence state)
+empathy_icon_name_for_presence (McPresence presence)
 {
-       switch (state) {
+       switch (presence) {
        case MC_PRESENCE_AVAILABLE:
                return EMPATHY_IMAGE_AVAILABLE;
        case MC_PRESENCE_DO_NOT_DISTURB:
@@ -350,6 +243,7 @@ empathy_icon_name_for_presence_state (McPresence state)
        case MC_PRESENCE_EXTENDED_AWAY:
                return EMPATHY_IMAGE_EXT_AWAY;
        case MC_PRESENCE_HIDDEN:
+               return EMPATHY_IMAGE_HIDDEN;
        case MC_PRESENCE_OFFLINE:
        case MC_PRESENCE_UNSET:
                return EMPATHY_IMAGE_OFFLINE;
@@ -360,71 +254,72 @@ empathy_icon_name_for_presence_state (McPresence state)
        return NULL;
 }
 
-const gchar *
-empathy_icon_name_for_presence (EmpathyPresence *presence)
-{
-       McPresence state;
-
-       g_return_val_if_fail (EMPATHY_IS_PRESENCE (presence),
-                             EMPATHY_IMAGE_OFFLINE);
-
-       state = empathy_presence_get_state (presence);
-
-       return empathy_icon_name_for_presence_state (state);
-}
-
 const gchar *
 empathy_icon_name_for_contact (EmpathyContact *contact)
 {
-       EmpathyPresence     *presence;
-       EmpathySubscription  subscription;
+       McPresence presence;
 
        g_return_val_if_fail (EMPATHY_IS_CONTACT (contact),
                              EMPATHY_IMAGE_OFFLINE);
 
        presence = empathy_contact_get_presence (contact);
-       if (presence) {
-               return empathy_icon_name_for_presence (presence);
-       }
-
-       subscription = empathy_contact_get_subscription (contact);
-       if (!(subscription & EMPATHY_SUBSCRIPTION_FROM)) {
-               return EMPATHY_IMAGE_PENDING;
-       }
+       return empathy_icon_name_for_presence (presence);
+}
 
-       return EMPATHY_IMAGE_OFFLINE;
+GdkPixbuf *
+empathy_pixbuf_from_data (gchar *data,
+                         gsize  data_size)
+{
+       return empathy_pixbuf_from_data_and_mime (data, data_size, NULL);
 }
 
 GdkPixbuf *
-empathy_pixbuf_avatar_from_contact (EmpathyContact *contact)
+empathy_pixbuf_from_data_and_mime (gchar  *data,
+                                  gsize   data_size,
+                                  gchar **mime_type)
 {
-       GdkPixbuf       *pixbuf;
-       GdkPixbufLoader *loader;
-       EmpathyAvatar    *avatar;
+       GdkPixbufLoader *loader;
+       GdkPixbufFormat *format;
+       GdkPixbuf       *pixbuf = NULL;
+       gchar          **mime_types;
        GError          *error = NULL;
 
-       g_return_val_if_fail (EMPATHY_IS_CONTACT (contact), NULL);
-
-       avatar = empathy_contact_get_avatar (contact);
-       if (!avatar) {
+       if (!data) {
                return NULL;
        }
 
        loader = gdk_pixbuf_loader_new ();
-
-       if (!gdk_pixbuf_loader_write (loader, avatar->data, avatar->len, &error)) {
-               g_warning ("Couldn't write avatar image:%p with "
-                          "length:%" G_GSIZE_FORMAT " to pixbuf loader: %s",
-                          avatar->data, avatar->len, error->message);
-               g_error_free (error);
-               return NULL;
+       if (!gdk_pixbuf_loader_write (loader, data, data_size, &error)) {
+               DEBUG ("Failed to write to pixbuf loader: %s",
+                       error ? error->message : "No error given");
+               goto out;
+       }
+       if (!gdk_pixbuf_loader_close (loader, &error)) {
+               DEBUG ("Failed to close pixbuf loader: %s",
+                       error ? error->message : "No error given");
+               goto out;
        }
-
-       gdk_pixbuf_loader_close (loader, NULL);
 
        pixbuf = gdk_pixbuf_loader_get_pixbuf (loader);
+       if (pixbuf) {
+               g_object_ref (pixbuf);
+
+               if (mime_type != NULL) {
+                       format = gdk_pixbuf_loader_get_format (loader);
+                       mime_types = gdk_pixbuf_format_get_mime_types (format);
+
+                       *mime_type = g_strdup (*mime_types);
+                       if (mime_types[1] != NULL) {
+                               DEBUG ("Loader supports more than one mime "
+                                       "type! Picking the first one, %s",
+                                       *mime_type);
+                       }
+                       g_strfreev (mime_types);
+               }
+       }
 
-       g_object_ref (pixbuf);
+out:
+       g_clear_error (&error);
        g_object_unref (loader);
 
        return pixbuf;
@@ -471,6 +366,86 @@ pixbuf_from_avatar_size_prepared_cb (GdkPixbufLoader *loader,
        gdk_pixbuf_loader_set_size (loader, width, height);
 }
 
+static void
+empathy_avatar_pixbuf_roundify (GdkPixbuf *pixbuf)
+{
+       gint width, height, rowstride;
+       guchar *pixels;
+
+       width = gdk_pixbuf_get_width (pixbuf);
+       height = gdk_pixbuf_get_height (pixbuf);
+       rowstride = gdk_pixbuf_get_rowstride (pixbuf);
+       pixels = gdk_pixbuf_get_pixels (pixbuf);
+
+       if (width < 6 || height < 6) {
+               return;
+       }
+
+       /* Top left */
+       pixels[3] = 0;
+       pixels[7] = 0x80;
+       pixels[11] = 0xC0;
+       pixels[rowstride + 3] = 0x80;
+       pixels[rowstride * 2 + 3] = 0xC0;
+
+       /* Top right */
+       pixels[width * 4 - 1] = 0;
+       pixels[width * 4 - 5] = 0x80;
+       pixels[width * 4 - 9] = 0xC0;
+       pixels[rowstride + (width * 4) - 1] = 0x80;
+       pixels[(2 * rowstride) + (width * 4) - 1] = 0xC0;
+
+       /* Bottom left */
+       pixels[(height - 1) * rowstride + 3] = 0;
+       pixels[(height - 1) * rowstride + 7] = 0x80;
+       pixels[(height - 1) * rowstride + 11] = 0xC0;
+       pixels[(height - 2) * rowstride + 3] = 0x80;
+       pixels[(height - 3) * rowstride + 3] = 0xC0;
+
+       /* Bottom right */
+       pixels[height * rowstride - 1] = 0;
+       pixels[(height - 1) * rowstride - 1] = 0x80;
+       pixels[(height - 2) * rowstride - 1] = 0xC0;
+       pixels[height * rowstride - 5] = 0x80;
+       pixels[height * rowstride - 9] = 0xC0;
+}
+
+static gboolean
+empathy_gdk_pixbuf_is_opaque (GdkPixbuf *pixbuf)
+{
+       gint width, height, rowstride, i;
+       guchar *pixels;
+       guchar *row;
+
+       width = gdk_pixbuf_get_width (pixbuf);
+       height = gdk_pixbuf_get_height (pixbuf);
+       rowstride = gdk_pixbuf_get_rowstride (pixbuf);
+       pixels = gdk_pixbuf_get_pixels (pixbuf);
+
+       row = pixels;
+       for (i = 3; i < rowstride; i+=4) {
+               if (row[i] < 0xfe) {
+                       return FALSE;
+               }
+       }
+
+       for (i = 1; i < height - 1; i++) {
+               row = pixels + (i*rowstride);
+               if (row[3] < 0xfe || row[rowstride-1] < 0xfe) {
+                       return FALSE;
+               }
+       }
+
+       row = pixels + ((height-1) * rowstride);
+       for (i = 3; i < rowstride; i+=4) {
+               if (row[i] < 0xfe) {
+                       return FALSE;
+               }
+       }
+
+       return TRUE;
+}
+
 GdkPixbuf *
 empathy_pixbuf_from_avatar_scaled (EmpathyAvatar *avatar,
                                  gint          width,
@@ -506,8 +481,26 @@ empathy_pixbuf_from_avatar_scaled (EmpathyAvatar *avatar,
        gdk_pixbuf_loader_close (loader, NULL);
 
        pixbuf = gdk_pixbuf_loader_get_pixbuf (loader);
+       if (!gdk_pixbuf_get_has_alpha (pixbuf)) {
+               GdkPixbuf *rounded_pixbuf;
+
+               rounded_pixbuf = gdk_pixbuf_new (GDK_COLORSPACE_RGB, TRUE, 8,
+                                                gdk_pixbuf_get_width (pixbuf),
+                                                gdk_pixbuf_get_height (pixbuf));
+               gdk_pixbuf_copy_area (pixbuf, 0, 0,
+                                     gdk_pixbuf_get_width (pixbuf),
+                                     gdk_pixbuf_get_height (pixbuf),
+                                     rounded_pixbuf,
+                                     0, 0);
+               pixbuf = rounded_pixbuf;
+       } else {
+               g_object_ref (pixbuf);
+       }
+
+       if (empathy_gdk_pixbuf_is_opaque (pixbuf)) {
+               empathy_avatar_pixbuf_roundify (pixbuf);
+       }
 
-       g_object_ref (pixbuf);
        g_object_unref (loader);
 
        return pixbuf;
@@ -526,6 +519,75 @@ empathy_pixbuf_avatar_from_contact_scaled (EmpathyContact *contact,
 
        return empathy_pixbuf_from_avatar_scaled (avatar, width, height);
 }
+
+GdkPixbuf *
+empathy_pixbuf_scale_down_if_necessary (GdkPixbuf *pixbuf, gint max_size)
+{
+       gint      width, height;
+       gdouble   factor;
+
+       width = gdk_pixbuf_get_width (pixbuf);
+       height = gdk_pixbuf_get_height (pixbuf);
+
+       if (width > 0 && (width > max_size || height > max_size)) {
+               factor = (gdouble) max_size / MAX (width, height);
+
+               width = width * factor;
+               height = height * factor;
+
+               return gdk_pixbuf_scale_simple (pixbuf,
+                                               width, height,
+                                               GDK_INTERP_HYPER);
+       }
+
+       return g_object_ref (pixbuf);
+}
+
+GdkPixbuf *
+empathy_pixbuf_from_icon_name_sized (const gchar *icon_name,
+                                    gint size)
+{
+       GtkIconTheme *theme;
+       GdkPixbuf *pixbuf;
+       GError *error = NULL;
+
+       if (!icon_name) {
+               return NULL;
+       }
+
+       theme = gtk_icon_theme_get_default ();
+
+       pixbuf = gtk_icon_theme_load_icon (theme,
+                                          icon_name,
+                                          size,
+                                          0,
+                                          &error);
+       if (error) {
+               DEBUG ("Error loading icon: %s", error->message);
+               g_clear_error (&error);
+       }
+
+       return pixbuf;
+}
+
+GdkPixbuf *
+empathy_pixbuf_from_icon_name (const gchar *icon_name,
+                              GtkIconSize  icon_size)
+{
+       gint  w, h;
+       gint  size = 48;
+
+       if (!icon_name) {
+               return NULL;
+       }
+
+       if (gtk_icon_size_lookup (icon_size, &w, &h)) {
+               size = (w + h) / 2;
+       }
+
+       return empathy_pixbuf_from_icon_name_sized (icon_name, size);
+}
+
 /* Stolen from GtkSourceView, hence the weird intendation. Please keep it like
  * that to make it easier to apply changes from the original code.
  */
@@ -1188,67 +1250,79 @@ empathy_text_iter_backward_search (const GtkTextIter   *iter,
        return retval;
 }
 
-static gboolean
-window_get_is_on_current_workspace (GtkWindow *window)
+gboolean
+empathy_window_get_is_visible (GtkWindow *window)
 {
-       GdkWindow *gdk_window;
+       GdkWindowState  state;
+       GdkWindow      *gdk_window;
+
+       g_return_val_if_fail (GTK_IS_WINDOW (window), FALSE);
 
        gdk_window = GTK_WIDGET (window)->window;
-       if (gdk_window) {
-               return !(gdk_window_get_state (gdk_window) &
-                        GDK_WINDOW_STATE_ICONIFIED);
-       } else {
+       if (!gdk_window) {
                return FALSE;
        }
-}
 
-/* Checks if the window is visible as in visible on the current workspace. */
-gboolean
-empathy_window_get_is_visible (GtkWindow *window)
-{
-       gboolean visible;
+       state = gdk_window_get_state (gdk_window);
+       if (state & (GDK_WINDOW_STATE_WITHDRAWN | GDK_WINDOW_STATE_ICONIFIED)) {
+               return FALSE;
+       }
 
-       g_return_val_if_fail (window != NULL, FALSE);
+       return TRUE;
+}
 
-       g_object_get (window,
-                     "visible", &visible,
-                     NULL);
+void 
+empathy_window_iconify (GtkWindow *window, GtkStatusIcon *status_icon)
+{
+       GdkRectangle  icon_location;
+       gulong        data[4];
+       Display      *dpy;
+       GdkWindow    *gdk_window;
 
-       return visible && window_get_is_on_current_workspace (window);
+       gtk_status_icon_get_geometry (status_icon, NULL, &icon_location, NULL);
+       gdk_window = GTK_WIDGET (window)->window;
+       dpy = gdk_x11_drawable_get_xdisplay (gdk_window);
+
+       data[0] = icon_location.x;
+       data[1] = icon_location.y;
+       data[2] = icon_location.width;
+       data[3] = icon_location.height;
+
+       XChangeProperty (dpy,
+                        GDK_WINDOW_XID (gdk_window),
+                        gdk_x11_get_xatom_by_name_for_display (gdk_drawable_get_display (gdk_window),
+                        "_NET_WM_ICON_GEOMETRY"),
+                        XA_CARDINAL, 32, PropModeReplace,
+                        (guchar *)&data, 4);
+
+       gtk_window_set_skip_taskbar_hint (window, TRUE);
+       gtk_window_iconify (window);
 }
 
 /* Takes care of moving the window to the current workspace. */
 void
 empathy_window_present (GtkWindow *window,
-                      gboolean   steal_focus)
+                       gboolean   steal_focus)
 {
-       gboolean visible;
-       gboolean on_current;
-       guint32  timestamp;
+       guint32 timestamp;
 
-       g_return_if_fail (window != NULL);
+       g_return_if_fail (GTK_IS_WINDOW (window));
 
        /* There are three cases: hidden, visible, visible on another
         * workspace.
         */
 
-       g_object_get (window,
-                     "visible", &visible,
-                     NULL);
-
-       on_current = window_get_is_on_current_workspace (window);
-
-       if (visible && !on_current) {
+       if (!empathy_window_get_is_visible (window)) {
                /* Hide it so present brings it to the current workspace. */
                gtk_widget_hide (GTK_WIDGET (window));
        }
 
        timestamp = gtk_get_current_event_time ();
-       if (steal_focus && timestamp != GDK_CURRENT_TIME) {
-               gtk_window_present_with_time (window, timestamp);
-       } else {
-               gtk_window_present (window);
-       }
+       gtk_window_set_skip_taskbar_hint (window, FALSE);
+       gtk_window_present_with_time (window, timestamp);
+       /* FIXME: This shouldn't be required as gtk_window_present's doc says
+        *        it deiconify automatically. */
+       gtk_window_deiconify (window);
 }
 
 GtkWindow *
@@ -1259,7 +1333,8 @@ empathy_get_toplevel_window (GtkWidget *widget)
        g_return_val_if_fail (GTK_IS_WIDGET (widget), NULL);
 
        toplevel = gtk_widget_get_toplevel (widget);
-       if (GTK_IS_WINDOW (toplevel)) {
+       if (GTK_IS_WINDOW (toplevel) &&
+           GTK_WIDGET_TOPLEVEL (toplevel)) {
                return GTK_WINDOW (toplevel);
        }
 
@@ -1274,31 +1349,49 @@ empathy_get_toplevel_window (GtkWidget *widget)
 static gchar *
 fixup_url (const gchar *url)
 {
-       gchar *real_url;
+       if (g_str_has_prefix (url, "ghelp:") ||
+           g_str_has_prefix (url, "mailto:") ||
+           strstr (url, ":/")) {
+               return NULL;
+       }
 
-       if (!g_str_has_prefix (url, "http://") &&
-           !strstr (url, ":/") &&
-           !strstr (url, "@")) {
-               real_url = g_strdup_printf ("http://%s", url);
-       } else {
-               real_url = g_strdup (url);
+       if (strstr (url, "@")) {
+               return g_strdup_printf ("mailto:%s", url);
        }
 
-       return real_url;
+       return g_strdup_printf ("http://%s", url);
 }
 
 void
-empathy_url_show (const char *url)
+empathy_url_show (GtkWidget *parent,
+                 const char *url)
 {
-       gchar          *real_url;
-       GnomeVFSResult  res;
+       gchar  *real_url;
+       GError *error = NULL;
 
        real_url = fixup_url (url);
-       res = gnome_vfs_url_show (real_url);
-       if (res != GNOME_VFS_OK) {
-               empathy_debug (DEBUG_DOMAIN, "Couldn't show URL %s: %s",
-                             real_url,
-                             gnome_vfs_result_to_string (res));
+       if (real_url) {
+               url = real_url;
+       }
+
+       gtk_show_uri (gtk_widget_get_screen (parent), url,
+                     gtk_get_current_event_time (), &error);
+
+       if (error) {
+               GtkWidget *dialog;
+
+               dialog = gtk_message_dialog_new (NULL, 0,
+                                                GTK_MESSAGE_ERROR, GTK_BUTTONS_CLOSE, 
+                                                _("Unable to open URI"));
+               gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog),
+                                                         "%s", error->message);
+
+               g_signal_connect (dialog, "response",
+                                 G_CALLBACK (gtk_widget_destroy),
+                                 NULL);
+               gtk_window_present (GTK_WINDOW (dialog));
+
+               g_clear_error (&error);
        }
 
        g_free (real_url);
@@ -1309,7 +1402,7 @@ link_button_hook (GtkLinkButton *button,
                  const gchar *link,
                  gpointer user_data)
 {
-       empathy_url_show (link);
+       empathy_url_show (GTK_WIDGET (button), link);
 }
 
 GtkWidget *
@@ -1339,3 +1432,259 @@ empathy_toggle_button_set_state_quietly (GtkWidget *widget,
        g_signal_handlers_unblock_by_func (widget, callback, user_data);
 }
 
+/* Sending files with the file chooser */
+
+static void
+file_manager_send_file_request_cb (EmpathyDispatchOperation *operation,
+                                  const GError *error, gpointer user_data)
+{
+       GFile *file = (GFile *)user_data;
+       EmpathyTpFile *tp_file;
+
+       if (error != NULL) {
+               DEBUG ("Couldn't request channel: %s", error->message);
+               g_object_unref (file);
+               return;
+       }
+
+       DEBUG ("Starting to send file");
+
+       tp_file = EMPATHY_TP_FILE (
+               empathy_dispatch_operation_get_channel_wrapper (operation));
+
+       empathy_tp_file_offer (tp_file, file, NULL);
+
+       g_object_unref (file);
+}
+
+static void
+file_manager_send_file_response_cb (GtkDialog      *widget,
+                                   gint            response_id,
+                                   EmpathyContact *contact)
+{
+       if (response_id == GTK_RESPONSE_OK) {
+               GSList *list;
+               GSList *l;
+
+               list = gtk_file_chooser_get_uris (GTK_FILE_CHOOSER (widget));
+
+               DEBUG ("File chooser selected files:");
+
+               for (l = list; l; l = l->next) {
+                       gchar            *uri;
+                       GFile            *gfile;
+                       GFileInfo        *info;
+                       GtkRecentManager *manager;
+                       gchar *filename;
+                       GTimeVal mtime;
+                       GError *error = NULL;
+
+                       uri = l->data;
+                       gfile = g_file_new_for_uri (uri);
+                       info = g_file_query_info (gfile,
+                               G_FILE_ATTRIBUTE_STANDARD_SIZE ","
+                               G_FILE_ATTRIBUTE_STANDARD_CONTENT_TYPE ","
+                               G_FILE_ATTRIBUTE_TIME_MODIFIED,
+                               0, NULL, &error);
+
+                       if (error) {
+                               DEBUG ("Can't get info about the file: %s", error->message);
+                               g_clear_error (&error);
+                               g_object_unref (gfile);
+                               continue;
+                       }
+
+                       DEBUG ("\t%s", uri);
+                       filename = g_file_get_basename (gfile);
+                       g_file_info_get_modification_time (info, &mtime);
+
+                       empathy_dispatcher_send_file_to_contact (contact,
+                               filename, g_file_info_get_size (info), mtime.tv_sec,
+                               g_file_info_get_content_type (info),
+                               file_manager_send_file_request_cb, gfile);
+
+                       g_free (filename);
+                       g_object_unref (info);
+
+                       manager = gtk_recent_manager_get_default ();
+                       gtk_recent_manager_add_item (manager, uri);
+
+                       g_free (uri);
+               }
+               g_slist_free (list);
+       }
+
+       gtk_widget_destroy (GTK_WIDGET (widget));
+}
+
+void
+empathy_send_file_with_file_chooser (EmpathyContact *contact)
+{
+       GtkWidget               *widget;
+       GtkWidget               *button;
+
+       g_return_if_fail (EMPATHY_IS_CONTACT (contact));
+
+       DEBUG ("Creating selection file chooser");
+
+       widget = gtk_file_chooser_dialog_new (_("Select a file"),
+                                             NULL,
+                                             GTK_FILE_CHOOSER_ACTION_OPEN,
+                                             GTK_STOCK_CANCEL,
+                                             GTK_RESPONSE_CANCEL,
+                                             NULL);
+
+       /* send button */
+       button = gtk_button_new_with_mnemonic (_("_Send"));
+       gtk_button_set_image (GTK_BUTTON (button),
+               gtk_image_new_from_icon_name (EMPATHY_IMAGE_DOCUMENT_SEND,
+                                             GTK_ICON_SIZE_BUTTON));
+       gtk_widget_show (button);
+       gtk_dialog_add_action_widget (GTK_DIALOG (widget), button,
+                                     GTK_RESPONSE_OK);
+       GTK_WIDGET_SET_FLAGS (button, GTK_CAN_DEFAULT);
+       gtk_dialog_set_default_response (GTK_DIALOG (widget),
+                                        GTK_RESPONSE_OK);
+
+       g_signal_connect (widget, "response",
+                         G_CALLBACK (file_manager_send_file_response_cb),
+                         contact);
+
+       gtk_widget_show (widget);
+}
+
+typedef struct {
+       EmpathySound sound_id;
+       const char * event_ca_id;
+       const char * event_ca_description;
+       const char * gconf_key;
+} EmpathySoundEntry;
+
+/* NOTE: these entries MUST be in the same order than EmpathySound enum */
+static EmpathySoundEntry sound_entries[LAST_EMPATHY_SOUND] = {
+       { EMPATHY_SOUND_MESSAGE_INCOMING, "message-new-instant",
+         N_("Received an instant message"), EMPATHY_PREFS_SOUNDS_INCOMING_MESSAGE } ,
+       { EMPATHY_SOUND_MESSAGE_OUTGOING, "message-sent-instant",
+         N_("Sent an instant message"), EMPATHY_PREFS_SOUNDS_OUTGOING_MESSAGE } ,
+       { EMPATHY_SOUND_CONVERSATION_NEW, "message-new-instant",
+         N_("Incoming chat request"), EMPATHY_PREFS_SOUNDS_NEW_CONVERSATION },
+       { EMPATHY_SOUND_CONTACT_CONNECTED, "service-login",
+         N_("Contact connected"), EMPATHY_PREFS_SOUNDS_CONTACT_LOGIN },
+       { EMPATHY_SOUND_CONTACT_DISCONNECTED, "service-logout",
+         N_("Contact disconnected"), EMPATHY_PREFS_SOUNDS_CONTACT_LOGOUT },
+       { EMPATHY_SOUND_ACCOUNT_CONNECTED, "service-login",
+         N_("Connected to server"), EMPATHY_PREFS_SOUNDS_SERVICE_LOGIN },
+       { EMPATHY_SOUND_ACCOUNT_DISCONNECTED, "service-logout",
+         N_("Disconnected from server"), EMPATHY_PREFS_SOUNDS_SERVICE_LOGOUT },
+       { EMPATHY_SOUND_PHONE_INCOMING, "phone-incoming-call",
+         N_("Incoming voice call"), NULL },
+       { EMPATHY_SOUND_PHONE_OUTGOING, "phone-outgoing-calling",
+         N_("Outgoing voice call"), NULL },
+       { EMPATHY_SOUND_PHONE_HANGUP, "phone-hangup",
+         N_("Voice call ended"), NULL },
+};
+
+
+static gboolean
+empathy_sound_pref_is_enabled (const char *key)
+{
+       EmpathyConf *conf;
+       gboolean res;
+
+       conf = empathy_conf_get ();
+       res = FALSE;
+
+       empathy_conf_get_bool (conf, EMPATHY_PREFS_SOUNDS_ENABLED, &res);
+
+       if (!res) {
+               return FALSE;
+       }
+
+       if (!empathy_check_available_state ()) {
+               empathy_conf_get_bool (conf, EMPATHY_PREFS_SOUNDS_DISABLED_AWAY,
+                                      &res);
+               if (res) {
+                       return FALSE;
+               }
+       }
+
+       empathy_conf_get_bool (conf, key, &res);
+
+       return res;
+}
+
+void
+empathy_sound_stop (EmpathySound sound_id)
+{
+       EmpathySoundEntry *entry;
+
+       g_return_if_fail (sound_id < LAST_EMPATHY_SOUND);
+
+       entry = &(sound_entries[sound_id]);
+       g_return_if_fail (entry->sound_id == sound_id);
+
+       ca_context_cancel (ca_gtk_context_get (), entry->sound_id);
+}
+
+
+gboolean
+empathy_sound_play_full (GtkWidget *widget, EmpathySound sound_id,
+       ca_finish_callback_t callback, gpointer user_data)
+{
+       EmpathySoundEntry *entry;
+       gboolean should_play = TRUE;
+       ca_proplist *p = NULL;
+       ca_context *c;
+
+       g_return_val_if_fail (sound_id < LAST_EMPATHY_SOUND, FALSE);
+
+       entry = &(sound_entries[sound_id]);
+       g_return_val_if_fail (entry->sound_id == sound_id, FALSE);
+
+       if (entry->gconf_key != NULL) {
+               should_play = empathy_sound_pref_is_enabled (entry->gconf_key);
+       }
+
+       if (!should_play)
+               return FALSE;
+
+       c = ca_gtk_context_get ();
+       ca_context_cancel (c, entry->sound_id);
+
+       DEBUG ("Play sound \"%s\" (%s)",
+              entry->event_ca_id,
+              entry->event_ca_description);
+
+       if (ca_proplist_create(&p) < 0)
+               goto failed;
+
+       if (ca_proplist_sets (p, CA_PROP_EVENT_ID, entry->event_ca_id) < 0)
+               goto failed;
+
+       if (ca_proplist_sets (p, CA_PROP_EVENT_DESCRIPTION,
+                       gettext (entry->event_ca_id)) < 0)
+               goto failed;
+
+       if (ca_gtk_proplist_set_for_widget (p, widget) < 0)
+               goto failed;
+
+       ca_context_play_full (ca_gtk_context_get (), entry->sound_id,
+               p, callback, user_data);
+
+       ca_proplist_destroy (p);
+
+       return TRUE;
+
+failed:
+       if (p != NULL)
+               ca_proplist_destroy (p);
+
+       return FALSE;
+}
+
+void
+empathy_sound_play (GtkWidget *widget, EmpathySound sound_id)
+{
+       empathy_sound_play_full (widget, sound_id, NULL, NULL);
+}
+