aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk
diff options
context:
space:
mode:
authorXavier Claessens <xclaesse@src.gnome.org>2008-03-11 17:27:31 +0800
committerXavier Claessens <xclaesse@src.gnome.org>2008-03-11 17:27:31 +0800
commitd4b6c6c92bc1e1dcee12ef9a763e5d54f146b70f (patch)
tree23dbb7e56be25cbd18c4dee765f3e02efe9330d4 /libempathy-gtk
parenta72813f2339f5f3dc54ca50d88e9ff3d09a99d8d (diff)
downloadgsoc2013-empathy-d4b6c6c92bc1e1dcee12ef9a763e5d54f146b70f.tar
gsoc2013-empathy-d4b6c6c92bc1e1dcee12ef9a763e5d54f146b70f.tar.gz
gsoc2013-empathy-d4b6c6c92bc1e1dcee12ef9a763e5d54f146b70f.tar.bz2
gsoc2013-empathy-d4b6c6c92bc1e1dcee12ef9a763e5d54f146b70f.tar.lz
gsoc2013-empathy-d4b6c6c92bc1e1dcee12ef9a763e5d54f146b70f.tar.xz
gsoc2013-empathy-d4b6c6c92bc1e1dcee12ef9a763e5d54f146b70f.tar.zst
gsoc2013-empathy-d4b6c6c92bc1e1dcee12ef9a763e5d54f146b70f.zip
Drop gnome-vfs dependency and use gio instead. Fixes bug #514380 (Cosimo Cecchi).
svn path=/trunk/; revision=737
Diffstat (limited to 'libempathy-gtk')
-rw-r--r--libempathy-gtk/empathy-avatar-chooser.c49
-rw-r--r--libempathy-gtk/empathy-ui-utils.c17
2 files changed, 41 insertions, 25 deletions
diff --git a/libempathy-gtk/empathy-avatar-chooser.c b/libempathy-gtk/empathy-avatar-chooser.c
index 78bb32938..aeaba5c94 100644
--- a/libempathy-gtk/empathy-avatar-chooser.c
+++ b/libempathy-gtk/empathy-avatar-chooser.c
@@ -27,7 +27,7 @@
#include <glib/gi18n.h>
#include <gtk/gtk.h>
-#include <libgnomevfs/gnome-vfs-ops.h>
+#include <gio/gio.h>
#include <libempathy/empathy-debug.h>
@@ -329,9 +329,8 @@ avatar_chooser_drag_data_received_cb (GtkWidget *widget,
target_type = gdk_atom_name (selection_data->target);
if (!strcmp (target_type, URI_LIST_TYPE)) {
- GnomeVFSHandle *handle = NULL;
- GnomeVFSResult result;
- GnomeVFSFileInfo info;
+ GFile *file;
+ GFileInputStream *input_stream;
gchar *uri;
gchar *nl;
gchar *data = NULL;
@@ -343,31 +342,41 @@ avatar_chooser_drag_data_received_cb (GtkWidget *widget,
} else {
uri = g_strdup (selection_data->data);
}
-
- result = gnome_vfs_open (&handle, uri, GNOME_VFS_OPEN_READ);
- if (result == GNOME_VFS_OK) {
- result = gnome_vfs_get_file_info_from_handle (handle,
- &info,
- GNOME_VFS_FILE_INFO_DEFAULT);
- if (result == GNOME_VFS_OK) {
- GnomeVFSFileSize data_size;
-
- data = g_malloc (info.size);
-
- result = gnome_vfs_read (handle, data, info.size, &data_size);
- if (result == GNOME_VFS_OK) {
+
+ file = g_file_new_for_uri (uri);
+ input_stream = g_file_read (file, NULL, NULL);
+
+ if (input_stream != NULL) {
+ GFileInfo *info;
+
+ info = g_file_query_info (file,
+ G_FILE_ATTRIBUTE_STANDARD_SIZE,
+ 0, NULL, NULL);
+ if (info != NULL) {
+ goffset size;
+ gssize bytes_read;
+
+ size = g_file_info_get_size (info);
+ data = g_malloc (size);
+
+ bytes_read = g_input_stream_read (G_INPUT_STREAM (input_stream),
+ data, size,
+ NULL, NULL);
+ g_object_unref (info);
+ if (bytes_read != -1) {
avatar_chooser_set_image_from_data (chooser,
data,
- data_size);
+ (gsize) bytes_read);
handled = TRUE;
} else {
g_free (data);
}
}
- gnome_vfs_close (handle);
+ g_input_stream_close (G_INPUT_STREAM (input_stream), NULL, NULL);
}
-
+
+ g_object_unref (file);
g_free (uri);
}
diff --git a/libempathy-gtk/empathy-ui-utils.c b/libempathy-gtk/empathy-ui-utils.c
index 80dcd4227..f5c8d3589 100644
--- a/libempathy-gtk/empathy-ui-utils.c
+++ b/libempathy-gtk/empathy-ui-utils.c
@@ -35,8 +35,8 @@
#include <gdk/gdkx.h>
#include <glib/gi18n.h>
#include <gtk/gtk.h>
+#include <gio/gio.h>
#include <glade/glade.h>
-#include <libgnomevfs/gnome-vfs-utils.h>
#include <libmissioncontrol/mc-profile.h>
@@ -1320,14 +1320,21 @@ void
empathy_url_show (const char *url)
{
gchar *real_url;
- GnomeVFSResult res;
+ gboolean res;
+ GError *err;
real_url = fixup_url (url);
- res = gnome_vfs_url_show (real_url);
- if (res != GNOME_VFS_OK) {
+ /* FIXME: this does not work for multihead, we should use
+ * GdkAppLaunchContext for that, when we can depend on GTK+ trunk
+ */
+ res = g_app_info_launch_default_for_uri (real_url,
+ NULL,
+ &err);
+ if (!res) {
empathy_debug (DEBUG_DOMAIN, "Couldn't show URL %s: %s",
real_url,
- gnome_vfs_result_to_string (res));
+ err->message);
+ g_error_free (err);
}
g_free (real_url);