Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/pixbuf
diff options
context:
space:
mode:
authorNickolay V. Shmyrev <nshmyrev@src.gnome.org>2005-10-17 18:41:22 (GMT)
committer Nickolay V. Shmyrev <nshmyrev@src.gnome.org>2005-10-17 18:41:22 (GMT)
commit0ecfeba326af04a2b9cd27776aa84827f1f638a7 (patch)
tree032f41ba03e670e4686e87f9684d4c2beb8958d5 /pixbuf
parent0c56e0840f68b6594dd54040a99440d94286a5e6 (diff)
Save a copy implemented for various backends.
* configure.ac: * djvu/djvu-document.c: (djvu_document_load), (djvu_document_save), (djvu_document_finalize): * dvi/dvi-document.c: (dvi_document_load), (dvi_document_save), (dvi_document_finalize): * pixbuf/pixbuf-document.c: (pixbuf_document_load), (pixbuf_document_save), (pixbuf_document_finalize): * tiff/tiff-document.c: (tiff_document_load), (tiff_document_save), (tiff_document_finalize): Save a copy implemented for various backends.
Diffstat (limited to 'pixbuf')
-rw-r--r--pixbuf/pixbuf-document.c38
1 files changed, 36 insertions, 2 deletions
diff --git a/pixbuf/pixbuf-document.c b/pixbuf/pixbuf-document.c
index e2bfaca..f19d2d5 100644
--- a/pixbuf/pixbuf-document.c
+++ b/pixbuf/pixbuf-document.c
@@ -20,6 +20,11 @@
#include "pixbuf-document.h"
#include "ev-document-thumbnails.h"
+#include <libgnomevfs/gnome-vfs-uri.h>
+#include <libgnomevfs/gnome-vfs-utils.h>
+#include <libgnomevfs/gnome-vfs-ops.h>
+#include <libgnomevfs/gnome-vfs-xfer.h>
+
struct _PixbufDocumentClass
{
GObjectClass parent_class;
@@ -30,6 +35,8 @@ struct _PixbufDocument
GObject parent_instance;
GdkPixbuf *pixbuf;
+
+ gchar *uri;
};
typedef struct _PixbufDocumentClass PixbufDocumentClass;
@@ -65,6 +72,8 @@ pixbuf_document_load (EvDocument *document,
return FALSE;
pixbuf_document->pixbuf = pixbuf;
+ g_free (pixbuf_document->uri);
+ pixbuf_document->uri = g_strdup (uri);
return TRUE;
}
@@ -74,8 +83,32 @@ pixbuf_document_save (EvDocument *document,
const char *uri,
GError **error)
{
- g_warning ("pixbuf_document_save not implemented"); /* FIXME */
- return TRUE;
+ PixbufDocument *pixbuf_document = PIXBUF_DOCUMENT (document);
+ GnomeVFSResult result;
+ GnomeVFSURI *source_uri;
+ GnomeVFSURI *target_uri;
+
+ if (!pixbuf_document->uri)
+ return FALSE;
+
+ source_uri = gnome_vfs_uri_new (pixbuf_document->uri);
+ target_uri = gnome_vfs_uri_new (uri);
+
+ result = gnome_vfs_xfer_uri (source_uri, target_uri,
+ GNOME_VFS_XFER_DEFAULT | GNOME_VFS_XFER_FOLLOW_LINKS,
+ GNOME_VFS_XFER_ERROR_MODE_ABORT,
+ GNOME_VFS_XFER_OVERWRITE_MODE_REPLACE,
+ NULL,
+ NULL);
+ gnome_vfs_uri_unref (target_uri);
+ gnome_vfs_uri_unref (source_uri);
+
+ if (result != GNOME_VFS_OK)
+ g_set_error (error,
+ EV_DOCUMENT_ERROR,
+ 0,
+ gnome_vfs_result_to_string (result));
+ return (result == GNOME_VFS_OK);
}
static int
@@ -120,6 +153,7 @@ pixbuf_document_finalize (GObject *object)
PixbufDocument *pixbuf_document = PIXBUF_DOCUMENT (object);
g_object_unref (pixbuf_document->pixbuf);
+ g_free (pixbuf_document->uri);
G_OBJECT_CLASS (pixbuf_document_parent_class)->finalize (object);
}