Code

add import from ocal feature
[inkscape.git] / src / file.cpp
index 3c8adf87be749048fb48dfb84d22c0c39b81b5e8..95dc9d07f746ded7a3364ac6a4b5a970af7211b1 100644 (file)
@@ -7,10 +7,12 @@
  *   Lauris Kaplinski <lauris@kaplinski.com>
  *   Chema Celorio <chema@celorio.com>
  *   bulia byak <buliabyak@users.sf.net>
+ *   Bruno Dilly <bruno.dilly@gmail.com>
  *
+ * Copyright (C) 2006 Johan Engelen <johan@shouraizou.nl>
  * Copyright (C) 1999-2005 Authors
- * Copyright (C) 2001-2002 Ximian, Inc.
  * Copyright (C) 2004 David Turner
+ * Copyright (C) 2001-2002 Ximian, Inc.
  *
  * Released under GNU GPL, read the file 'COPYING' for more information
  */
@@ -42,6 +44,7 @@
 #include "style.h"
 #include "print.h"
 #include "file.h"
+#include "message.h"
 #include "message-stack.h"
 #include "ui/dialog/filedialog.h"
 #include "prefs-utils.h"
 #include "inkscape.h"
 #include "uri.h"
 
+#ifdef WITH_GNOME_VFS
+# include <libgnomevfs/gnome-vfs.h>
+#endif
+
 #ifdef WITH_INKBOARD
 #include "jabber_whiteboard/session-manager.h"
 #endif
@@ -87,7 +94,10 @@ void dump_ustr(Glib::ustring const &ustr);
 SPDesktop*
 sp_file_new(const Glib::ustring &templ)
 {
-    SPDocument *doc = sp_document_new(templ.c_str(), TRUE, true);
+    char *templName = NULL;
+    if (templ.size()>0)
+        templName = (char *)templ.c_str();
+    SPDocument *doc = sp_document_new(templName, TRUE, true);
     g_return_val_if_fail(doc != NULL, NULL);
 
     SPDesktop *dt;
@@ -102,6 +112,7 @@ sp_file_new(const Glib::ustring &templ)
         sp_create_window(dtw, TRUE);
         dt = static_cast<SPDesktop*>(dtw->view);
         sp_namedview_window_from_document(dt);
+        sp_namedview_update_layers_from_document(dt);
     }
     return dt;
 }
@@ -130,7 +141,7 @@ sp_file_new_default()
         sources.pop_front();
     }
 
-    return sp_file_new(NULL);
+    return sp_file_new("");
 }
 
 
@@ -197,9 +208,8 @@ sp_file_open(const Glib::ustring &uri,
         // everyone who cares now has a reference, get rid of ours
         sp_document_unref(doc);
         // resize the window to match the document properties
-        // (this may be redundant for new windows... if so, move to the "virgin"
-        //  section above)
         sp_namedview_window_from_document(desktop);
+        sp_namedview_update_layers_from_document(desktop);
 
         if (add_to_recent) {
             prefs_set_recent_file(SP_DOCUMENT_URI(doc), SP_DOCUMENT_NAME(doc));
@@ -278,7 +288,7 @@ void dump_str(gchar const *str, gchar const *prefix)
     }
 
     tmp += "]";
-    g_message(tmp.c_str());
+    g_message("%s", tmp.c_str());
 }
 
 void dump_ustr(Glib::ustring const &ustr)
@@ -339,7 +349,7 @@ void dump_ustr(Glib::ustring const &ustr)
                 tmp += "            ";
             }
 
-            g_message( tmp.c_str() );
+            g_message( "%s", tmp.c_str() );
         }
     } catch (...) {
         g_message("XXXXXXXXXXXXXXXXXX Exception" );
@@ -354,7 +364,7 @@ static Inkscape::UI::Dialog::FileOpenDialog *openDialogInstance = NULL;
  *  Can select single or multiple files for opening.
  */
 void
-sp_file_open_dialog(gpointer object, gpointer data)
+sp_file_open_dialog(Gtk::Window &parentWindow, gpointer object, gpointer data)
 {
 
     //# Get the current directory for finding files
@@ -380,11 +390,17 @@ sp_file_open_dialog(gpointer object, gpointer data)
     if (!openDialogInstance) {
         openDialogInstance =
               Inkscape::UI::Dialog::FileOpenDialog::create(
+                 parentWindow,
                  open_path,
                  Inkscape::UI::Dialog::SVG_TYPES,
                  (char const *)_("Select file to open"));
+        // allow easy access to our examples folder             
+        if (Inkscape::IO::file_test(INKSCAPE_EXAMPLESDIR, (GFileTest)(G_FILE_TEST_EXISTS | G_FILE_TEST_IS_DIR))) {
+            dynamic_cast<Gtk::FileChooser *>(openDialogInstance)->add_shortcut_folder(INKSCAPE_EXAMPLESDIR);
+        }
     }
 
+
     //# Show the dialog
     bool const success = openDialogInstance->show();
     if (!success)
@@ -459,7 +475,7 @@ sp_file_vacuum()
     unsigned int diff = vacuum_document (doc);
 
     sp_document_done(doc, SP_VERB_FILE_VACUUM, 
-                     /* TODO: annotate */ "file.cpp:515");
+                     _("Vacuum &lt;defs&gt;"));
 
     SPDesktop *dt = SP_ACTIVE_DESKTOP;
     if (diff > 0) {
@@ -481,18 +497,21 @@ sp_file_vacuum()
 
 /**
  * This 'save' function called by the others below
+ *
+ * \param    official  whether to set :output_module and :modified in the
+ *                     document; is true for normal save, false for temporary saves
  */
 static bool
-file_save(SPDocument *doc, const Glib::ustring &uri,
-          Inkscape::Extension::Extension *key, bool saveas)
+file_save(Gtk::Window &parentWindow, SPDocument *doc, const Glib::ustring &uri,
+          Inkscape::Extension::Extension *key, bool saveas, bool official)
 {
     if (!doc || uri.size()<1) //Safety check
         return false;
 
     try {
         Inkscape::Extension::save(key, doc, uri.c_str(),
-                 saveas && prefs_get_int_attribute("dialogs.save_as", "append_extension", 1),
-                 saveas, TRUE); // save officially, with inkscape: attributes set
+                 false,
+                 saveas, official); 
     } catch (Inkscape::Extension::Output::no_extension_found &e) {
         gchar *safeUri = Inkscape::IO::sanitizeString(uri.c_str());
         gchar *text = g_strdup_printf(_("No Inkscape extension found to save document (%s).  This may have been caused by an unknown filename extension."), safeUri);
@@ -510,29 +529,111 @@ file_save(SPDocument *doc, const Glib::ustring &uri,
         g_free(safeUri);
         return FALSE;
     } catch (Inkscape::Extension::Output::no_overwrite &e) {
-        return sp_file_save_dialog(doc);
+        return sp_file_save_dialog(parentWindow, doc);
     }
 
     SP_ACTIVE_DESKTOP->messageStack()->flash(Inkscape::NORMAL_MESSAGE, _("Document saved."));
     return true;
 }
 
+/*
+ * Used only for remote saving using VFS and a specific uri. Gets the file at the /tmp.
+ */
+bool
+file_save_remote(SPDocument *doc, const Glib::ustring &uri,
+                 Inkscape::Extension::Extension *key, bool saveas, bool official)
+{
+#ifdef WITH_GNOME_VFS
+
+#define BUF_SIZE 8192
+    gnome_vfs_init();
+
+    GnomeVFSHandle    *from_handle = NULL;
+    GnomeVFSHandle    *to_handle = NULL;
+    GnomeVFSFileSize  bytes_read;
+    GnomeVFSFileSize  bytes_written;
+    GnomeVFSResult    result;
+    guint8 buffer[8192];
+
+    gchar* uri_local = g_filename_from_utf8( uri.c_str(), -1, NULL, NULL, NULL);
+    
+    if ( uri_local == NULL ) {
+        g_warning( "Error converting filename to locale encoding.");
+    }
+
+    // Gets the temp file name.
+    Glib::ustring fileName = Glib::get_tmp_dir ();
+    fileName.append(G_DIR_SEPARATOR_S);
+    fileName.append((gnome_vfs_uri_extract_short_name(gnome_vfs_uri_new(uri_local))));
+
+    // Open the temp file to send.
+    result = gnome_vfs_open (&from_handle, fileName.c_str(), GNOME_VFS_OPEN_READ);
+    
+    if (result != GNOME_VFS_OK) {
+        g_warning("Could not find the temp saving.");
+        return false;
+    }
+
+    
+    result = gnome_vfs_open (&to_handle, uri_local, GNOME_VFS_OPEN_WRITE);
+    
+        
+    if (result == GNOME_VFS_ERROR_NOT_FOUND){
+        result = gnome_vfs_create (&to_handle, uri_local, GNOME_VFS_OPEN_WRITE, FALSE, GNOME_VFS_PERM_USER_ALL);
+    }
+    
+    if (result != GNOME_VFS_OK) {
+        g_warning("file creating: %s", gnome_vfs_result_to_string(result));
+        return false;
+    }
 
+    while (1) {
+        
+        result = gnome_vfs_read (from_handle, buffer, 8192, &bytes_read);
 
+        if ((result == GNOME_VFS_ERROR_EOF) &&(!bytes_read)){
+            result = gnome_vfs_close (from_handle);
+            result = gnome_vfs_close (to_handle);
+            return true;
+        }
+        
+        if (result != GNOME_VFS_OK) {
+            g_warning("%s", gnome_vfs_result_to_string(result));
+            return false;
+        }
+        result = gnome_vfs_write (to_handle, buffer, bytes_read, &bytes_written);
+        if (result != GNOME_VFS_OK) {
+            g_warning("%s", gnome_vfs_result_to_string(result));
+            return false;
+        }
+        
+        
+        if (bytes_read != bytes_written){
+            return false;
+        }
+        
+    }
+    return true;
+#else
+       // in case we do not have GNOME_VFS
+       return false;
+#endif
 
+}
 
-static Inkscape::UI::Dialog::FileSaveDialog *saveDialogInstance = NULL;
 
 /**
  *  Display a SaveAs dialog.  Save the document if OK pressed.
+ *
+ * \param    ascopy  (optional) wether to set the documents->uri to the new filename or not
  */
 bool
-sp_file_save_dialog(SPDocument *doc)
+sp_file_save_dialog(Gtk::Window &parentWindow, SPDocument *doc, bool is_copy)
 {
 
     Inkscape::XML::Node *repr = sp_document_repr_root(doc);
 
-    Inkscape::Extension::Output *extension;
+    Inkscape::Extension::Output *extension = 0;
 
     //# Get the default extension name
     Glib::ustring default_extension;
@@ -580,7 +681,8 @@ sp_file_save_dialog(SPDocument *doc)
             save_loc.append(formatBuf);
         }
     } else {
-        save_loc = Glib::path_get_dirname(doc->uri);
+        save_loc = Glib::build_filename(Glib::path_get_dirname(doc->uri),
+                                        Glib::path_get_basename(doc->uri));
     }
 
     // convert save_loc from utf-8 to locale
@@ -592,24 +694,43 @@ sp_file_save_dialog(SPDocument *doc)
         save_loc = save_loc_local;
 
     //# Show the SaveAs dialog
-    if (!saveDialogInstance)
-        saveDialogInstance =
-             Inkscape::UI::Dialog::FileSaveDialog::create(
-                 save_loc,
-                 Inkscape::UI::Dialog::SVG_TYPES,
-                 (char const *) _("Select file to save to"),
-                 default_extension
+    char const * dialog_title;
+    if (is_copy) {
+        dialog_title = (char const *) _("Select file to save a copy to");
+    } else {
+        dialog_title = (char const *) _("Select file to save to");
+    }
+    Inkscape::UI::Dialog::FileSaveDialog *saveDialog =
+        Inkscape::UI::Dialog::FileSaveDialog::create(
+               parentWindow, 
+            save_loc,
+            Inkscape::UI::Dialog::SVG_TYPES,
+            (char const *) _("Select file to save to"),
+            default_extension
             );
 
-    bool success = saveDialogInstance->show();
-    if (!success)
-        return success;
+    saveDialog->change_title(dialog_title);
+    saveDialog->setSelectionType(extension);
 
-    Glib::ustring fileName = saveDialogInstance->getFilename();
+    // allow easy access to the user's own templates folder             
+    gchar *templates = profile_path ("templates");
+    if (Inkscape::IO::file_test(templates, (GFileTest)(G_FILE_TEST_EXISTS | G_FILE_TEST_IS_DIR))) {
+        dynamic_cast<Gtk::FileChooser *>(saveDialog)->add_shortcut_folder(templates);
+    }
+    g_free (templates);
 
-    Inkscape::Extension::Extension *selectionType =
-        saveDialogInstance->getSelectionType();
+    bool success = saveDialog->show();
+    if (!success) {
+        delete saveDialog;
+        return success;
+    }
 
+    Glib::ustring fileName = saveDialog->getFilename();
+    Inkscape::Extension::Extension *selectionType = saveDialog->getSelectionType();
+
+    delete saveDialog;
+       
+    saveDialog = 0;
 
     if (fileName.size() > 0) {
         Glib::ustring newFileName = Glib::filename_to_utf8(fileName);
@@ -619,12 +740,12 @@ sp_file_save_dialog(SPDocument *doc)
         else
             g_warning( "Error converting save filename to UTF-8." );
 
-        success = file_save(doc, fileName, selectionType, TRUE);
+        success = file_save(parentWindow, doc, fileName, selectionType, TRUE, !is_copy);
 
         if (success)
             prefs_set_recent_file(SP_DOCUMENT_URI(doc), SP_DOCUMENT_NAME(doc));
 
-        save_path = fileName;
+        save_path = Glib::path_get_dirname(fileName);
         prefs_set_string_attribute("dialogs.save_as", "path", save_path.c_str());
 
         return success;
@@ -639,7 +760,7 @@ sp_file_save_dialog(SPDocument *doc)
  * Save a document, displaying a SaveAs dialog if necessary.
  */
 bool
-sp_file_save_document(SPDocument *doc)
+sp_file_save_document(Gtk::Window &parentWindow, SPDocument *doc)
 {
     bool success = true;
 
@@ -647,14 +768,14 @@ sp_file_save_document(SPDocument *doc)
 
     gchar const *fn = repr->attribute("sodipodi:modified");
     if (fn != NULL) {
-        if (doc->uri == NULL
-            || repr->attribute("inkscape:output_extension") == NULL)
+        if ( doc->uri == NULL
+            || repr->attribute("inkscape:output_extension") == NULL )
         {
-            return sp_file_save_dialog(doc);
+            return sp_file_save_dialog(parentWindow, doc, FALSE);
         } else {
             fn = g_strdup(doc->uri);
             gchar const *ext = repr->attribute("inkscape:output_extension");
-            success = file_save(doc, fn, Inkscape::Extension::db.get(ext), FALSE);
+            success = file_save(parentWindow, doc, fn, Inkscape::Extension::db.get(ext), FALSE, TRUE);
             g_free((void *) fn);
         }
     } else {
@@ -670,12 +791,15 @@ sp_file_save_document(SPDocument *doc)
  * Save a document.
  */
 bool
-sp_file_save(gpointer object, gpointer data)
+sp_file_save(Gtk::Window &parentWindow, gpointer object, gpointer data)
 {
     if (!SP_ACTIVE_DOCUMENT)
         return false;
+
+    SP_ACTIVE_DESKTOP->messageStack()->flash(Inkscape::IMMEDIATE_MESSAGE, _("Saving document..."));
+
     sp_namedview_document_from_window(SP_ACTIVE_DESKTOP);
-    return sp_file_save_document(SP_ACTIVE_DOCUMENT);
+    return sp_file_save_document(parentWindow, SP_ACTIVE_DOCUMENT);
 }
 
 
@@ -683,16 +807,28 @@ sp_file_save(gpointer object, gpointer data)
  *  Save a document, always displaying the SaveAs dialog.
  */
 bool
-sp_file_save_as(gpointer object, gpointer data)
+sp_file_save_as(Gtk::Window &parentWindow, gpointer object, gpointer data)
 {
     if (!SP_ACTIVE_DOCUMENT)
         return false;
     sp_namedview_document_from_window(SP_ACTIVE_DESKTOP);
-    return sp_file_save_dialog(SP_ACTIVE_DOCUMENT);
+    return sp_file_save_dialog(parentWindow, SP_ACTIVE_DOCUMENT, FALSE);
 }
 
 
 
+/**
+ *  Save a copy of a document, always displaying a sort of SaveAs dialog.
+ */
+bool
+sp_file_save_a_copy(Gtk::Window &parentWindow, gpointer object, gpointer data)
+{
+    if (!SP_ACTIVE_DOCUMENT)
+        return false;
+    sp_namedview_document_from_window(SP_ACTIVE_DESKTOP);
+    return sp_file_save_dialog(parentWindow, SP_ACTIVE_DOCUMENT, TRUE);
+}
+
 
 /*######################
 ## I M P O R T
@@ -718,26 +854,19 @@ file_import(SPDocument *in_doc, const Glib::ustring &uri,
     }
 
     if (doc != NULL) {
-        // the import extension has passed us a document, now we need to embed it into our document
-        if ( 0 ) {
-//            const gchar *docbase = (sp_repr_document_root( sp_repr_document( repr ))->attribute("sodipodi:docbase" );
-            g_message(" settings  uri  [%s]", doc->uri );
-            g_message("           base [%s]", doc->base );
-            g_message("           name [%s]", doc->name );
-            Inkscape::IO::fixupHrefs( doc, doc->base, TRUE );
-            g_message("        mid-fixup");
-            Inkscape::IO::fixupHrefs( doc, in_doc->base, TRUE );
-        }
-
         // move imported defs to our document's defs
         SPObject *in_defs = SP_DOCUMENT_DEFS(in_doc);
         SPObject *defs = SP_DOCUMENT_DEFS(doc);
+
+        Inkscape::IO::fixupHrefs(doc, in_doc->base, true);
+        Inkscape::XML::Document *xml_doc = sp_document_repr_doc(doc);
+
         Inkscape::XML::Node *last_def = SP_OBJECT_REPR(in_defs)->lastChild();
         for (SPObject *child = sp_object_first_child(defs);
              child != NULL; child = SP_OBJECT_NEXT(child))
         {
             // FIXME: in case of id conflict, newly added thing will be re-ided and thus likely break a reference to it from imported stuff
-            SP_OBJECT_REPR(in_defs)->addChild(SP_OBJECT_REPR(child)->duplicate(), last_def);
+            SP_OBJECT_REPR(in_defs)->addChild(SP_OBJECT_REPR(child)->duplicate(xml_doc), last_def);
         }
 
         guint items_count = 0;
@@ -752,12 +881,13 @@ file_import(SPDocument *in_doc, const Glib::ustring &uri,
 
         if ((style && style->firstChild()) || items_count > 1) {
             // create group
-            Inkscape::XML::Node *newgroup = sp_repr_new("svg:g");
+            Inkscape::XML::Document *xml_doc = sp_document_repr_doc(in_doc);
+            Inkscape::XML::Node *newgroup = xml_doc->createElement("svg:g");
             sp_repr_css_set (newgroup, style, "style");
 
             for (SPObject *child = sp_object_first_child(SP_DOCUMENT_ROOT(doc)); child != NULL; child = SP_OBJECT_NEXT(child) ) {
                 if (SP_IS_ITEM(child)) {
-                    Inkscape::XML::Node *newchild = SP_OBJECT_REPR(child)->duplicate();
+                    Inkscape::XML::Node *newchild = SP_OBJECT_REPR(child)->duplicate(xml_doc);
 
                     // convert layers to groups; FIXME: add "preserve layers" mode where each layer
                     // from impot is copied to the same-named layer in host
@@ -781,7 +911,7 @@ file_import(SPDocument *in_doc, const Glib::ustring &uri,
             // just add one item
             for (SPObject *child = sp_object_first_child(SP_DOCUMENT_ROOT(doc)); child != NULL; child = SP_OBJECT_NEXT(child) ) {
                 if (SP_IS_ITEM(child)) {
-                    Inkscape::XML::Node *newitem = SP_OBJECT_REPR(child)->duplicate();
+                    Inkscape::XML::Node *newitem = SP_OBJECT_REPR(child)->duplicate(xml_doc);
                     newitem->setAttribute("inkscape:groupmode", NULL);
 
                     if (desktop) {
@@ -810,15 +940,18 @@ file_import(SPDocument *in_doc, const Glib::ustring &uri,
                 int const saved_pref = prefs_get_int_attribute("options.transform", "pattern", 1);
                 prefs_set_int_attribute("options.transform", "pattern", 1);
                 sp_document_ensure_up_to_date(sp_desktop_document(desktop));
-                NR::Point m( desktop->point() - selection->bounds().midpoint() );
-                sp_selection_move_relative(selection, m);
+                NR::Maybe<NR::Rect> sel_bbox = selection->bounds();
+                if (sel_bbox) {
+                    NR::Point m( desktop->point() - sel_bbox->midpoint() );
+                    sp_selection_move_relative(selection, m);
+                }
                 prefs_set_int_attribute("options.transform", "pattern", saved_pref);
             }
         }
 
         sp_document_unref(doc);
         sp_document_done(in_doc, SP_VERB_FILE_IMPORT,
-                         /* TODO: annotate */ "file.cpp:900");
+                         _("Import"));
 
     } else {
         gchar *text = g_strdup_printf(_("Failed to load the requested file %s"), uri.c_str());
@@ -836,7 +969,7 @@ static Inkscape::UI::Dialog::FileOpenDialog *importDialogInstance = NULL;
  *  Display an Open dialog, import a resource if OK pressed.
  */
 void
-sp_file_import(GtkWidget *widget)
+sp_file_import(Gtk::Window &parentWindow)
 {
     static Glib::ustring import_path;
 
@@ -847,7 +980,8 @@ sp_file_import(GtkWidget *widget)
     if (!importDialogInstance) {
         importDialogInstance =
              Inkscape::UI::Dialog::FileOpenDialog::create(
-                 import_path,
+                 parentWindow,
+                import_path,
                  Inkscape::UI::Dialog::IMPORT_TYPES,
                  (char const *)_("Select file to import"));
     }
@@ -871,6 +1005,7 @@ sp_file_import(GtkWidget *widget)
         else
             g_warning( "ERROR CONVERTING OPEN FILENAME TO UTF-8" );
 
+
         import_path = fileName;
         if (import_path.size()>0)
             import_path.append(G_DIR_SEPARATOR_S);
@@ -887,209 +1022,332 @@ sp_file_import(GtkWidget *widget)
 ## E X P O R T
 ######################*/
 
+//#define NEW_EXPORT_DIALOG
+
+
+
+#ifdef NEW_EXPORT_DIALOG
+
+static Inkscape::UI::Dialog::FileExportDialog *exportDialogInstance = NULL;
+
+/**
+ *  Display an Export dialog, export as the selected type if OK pressed
+ */
+bool
+sp_file_export_dialog(void *widget)
+{
+    //# temp hack for 'doc' until we can switch to this dialog
+    SPDocument *doc = SP_ACTIVE_DOCUMENT;
+
+    Glib::ustring export_path; 
+    Glib::ustring export_loc; 
+
+    Inkscape::XML::Node *repr = sp_document_repr_root(doc);
+
+    Inkscape::Extension::Output *extension;
+
+    //# Get the default extension name
+    Glib::ustring default_extension;
+    char *attr = (char *)repr->attribute("inkscape:output_extension");
+    if (!attr)
+        attr = (char *)prefs_get_string_attribute("dialogs.save_as", "default");
+    if (attr)
+        default_extension = attr;
+    //g_message("%s: extension name: '%s'", __FUNCTION__, default_extension);
+
+    if (doc->uri == NULL)
+        {
+        char formatBuf[256];
+
+        Glib::ustring filename_extension = ".svg";
+        extension = dynamic_cast<Inkscape::Extension::Output *>
+              (Inkscape::Extension::db.get(default_extension.c_str()));
+        //g_warning("%s: extension ptr: 0x%x", __FUNCTION__, (unsigned int)extension);
+        if (extension)
+            filename_extension = extension->get_extension();
+
+        attr = (char *)prefs_get_string_attribute("dialogs.save_as", "path");
+        if (attr)
+            export_path = attr;
+
+        if (!Inkscape::IO::file_test(export_path.c_str(),
+              (GFileTest)(G_FILE_TEST_EXISTS | G_FILE_TEST_IS_DIR)))
+            export_path = "";
+
+        if (export_path.size()<1)
+            export_path = g_get_home_dir();
+
+        export_loc = export_path;
+        export_loc.append(G_DIR_SEPARATOR_S);
+        snprintf(formatBuf, 255, _("drawing%s"), filename_extension.c_str());
+        export_loc.append(formatBuf);
+
+        }
+    else
+        {
+        export_path = Glib::path_get_dirname(doc->uri);
+        }
+
+    // convert save_loc from utf-8 to locale
+    // is this needed any more, now that everything is handled in
+    // Inkscape::IO?
+    Glib::ustring export_path_local = Glib::filename_from_utf8(export_path);
+    if ( export_path_local.size() > 0) 
+        export_path = export_path_local;
+
+    //# Show the SaveAs dialog
+    if (!exportDialogInstance)
+        exportDialogInstance =
+             Inkscape::UI::Dialog::FileExportDialog::create(
+                 export_path,
+                 Inkscape::UI::Dialog::EXPORT_TYPES,
+                 (char const *) _("Select file to export to"),
+                 default_extension
+            );
+
+    bool success = exportDialogInstance->show();
+    if (!success)
+        return success;
+
+    Glib::ustring fileName = exportDialogInstance->getFilename();
+
+    Inkscape::Extension::Extension *selectionType =
+        exportDialogInstance->getSelectionType();
+
+
+    if (fileName.size() > 0) {
+        Glib::ustring newFileName = Glib::filename_to_utf8(fileName);
+
+        if ( newFileName.size()>0 )
+            fileName = newFileName;
+        else
+            g_warning( "Error converting save filename to UTF-8." );
+
+        success = file_save(doc, fileName, selectionType, TRUE, FALSE);
+
+        if (success)
+            prefs_set_recent_file(SP_DOCUMENT_URI(doc), SP_DOCUMENT_NAME(doc));
+
+        export_path = fileName;
+        prefs_set_string_attribute("dialogs.save_as", "path", export_path.c_str());
+
+        return success;
+    }
+
+
+    return false;
+}
+
+#else
+
 /**
  *
  */
-void
+bool
 sp_file_export_dialog(void *widget)
 {
     sp_export_dialog();
+    return true;
 }
 
-#include <display/nr-arena-item.h>
-#include <display/nr-arena.h>
-
-struct SPEBP {
-    int width, height, sheight;
-    guchar r, g, b, a;
-    NRArenaItem *root; // the root arena item to show; it is assumed that all unneeded items are hidden
-    guchar *px;
-    unsigned (*status)(float, void *);
-    void *data;
-};
+#endif
 
+/*######################
+## E X P O R T  T O  O C A L
+######################*/
 
 /**
- *
+ *  Display an Export dialog, export as the selected type if OK pressed
  */
-static int
-sp_export_get_rows(guchar const **rows, int row, int num_rows, void *data)
+bool
+sp_file_export_to_ocal_dialog(Gtk::Window &parentWindow)
 {
-    struct SPEBP *ebp = (struct SPEBP *) data;
+    
+    if (!SP_ACTIVE_DOCUMENT)
+        return false;
 
-    if (ebp->status) {
-        if (!ebp->status((float) row / ebp->height, ebp->data)) return 0;
-    }
+    SPDocument *doc = SP_ACTIVE_DOCUMENT;
 
-    num_rows = MIN(num_rows, ebp->sheight);
-    num_rows = MIN(num_rows, ebp->height - row);
-
-    /* Set area of interest */
-    NRRectL bbox;
-    bbox.x0 = 0;
-    bbox.y0 = row;
-    bbox.x1 = ebp->width;
-    bbox.y1 = row + num_rows;
-    /* Update to renderable state */
-    NRGC gc(NULL);
-    nr_matrix_set_identity(&gc.transform);
-
-    nr_arena_item_invoke_update(ebp->root, &bbox, &gc, NR_ARENA_ITEM_STATE_ALL, NR_ARENA_ITEM_STATE_NONE);
-
-    NRPixBlock pb;
-    nr_pixblock_setup_extern(&pb, NR_PIXBLOCK_MODE_R8G8B8A8N,
-                             bbox.x0, bbox.y0, bbox.x1, bbox.y1,
-                             ebp->px, 4 * ebp->width, FALSE, FALSE);
-
-    for (int r = 0; r < num_rows; r++) {
-        guchar *p = NR_PIXBLOCK_PX(&pb) + r * pb.rs;
-        for (int c = 0; c < ebp->width; c++) {
-            *p++ = ebp->r;
-            *p++ = ebp->g;
-            *p++ = ebp->b;
-            *p++ = ebp->a;
-        }
-    }
+    Glib::ustring export_path; 
+    Glib::ustring export_loc; 
+    Glib::ustring fileName;
+    Inkscape::Extension::Extension *selectionType;
 
-    /* Render */
-    nr_arena_item_invoke_render(ebp->root, &bbox, &pb, 0);
+    bool success = false;
+    
+    static Inkscape::UI::Dialog::FileExportToOCALDialog *exportDialogInstance = NULL;
+    
+    Inkscape::XML::Node *repr = sp_document_repr_root(doc);
+    // Verify whether the document is saved, so save this as temporary
 
-    for (int r = 0; r < num_rows; r++) {
-        rows[r] = NR_PIXBLOCK_PX(&pb) + r * pb.rs;
-    }
+    char *str = (char *) repr->attribute("sodipodi:modified");
+    if ((!doc->uri) && (!str))
+        return false;
 
-    nr_pixblock_release(&pb);
 
-    return num_rows;
+    Inkscape::Extension::Output *extension;
+        
+    // Get the default extension name
+    Glib::ustring default_extension;
+    char *attr = (char *)repr->attribute("inkscape:output_extension");
+    if (!attr)
+        attr = (char *)prefs_get_string_attribute("dialogs.save_as", "default");
+    if (attr)
+        default_extension = attr;
+    
+    char formatBuf[256];
+    
+    Glib::ustring filename_extension = ".svg";
+    extension = dynamic_cast<Inkscape::Extension::Output *>
+        (Inkscape::Extension::db.get(default_extension.c_str()));
+    if (extension)
+        filename_extension = extension->get_extension();
+        
+    export_path = Glib::get_tmp_dir ();
+        
+    export_loc = export_path;
+    export_loc.append(G_DIR_SEPARATOR_S);
+    snprintf(formatBuf, 255, _("drawing%s"), filename_extension.c_str());
+    export_loc.append(formatBuf);
+    
+    // convert save_loc from utf-8 to locale
+    // is this needed any more, now that everything is handled in
+    // Inkscape::IO?
+    Glib::ustring export_path_local = Glib::filename_from_utf8(export_path);
+    if ( export_path_local.size() > 0) 
+        export_path = export_path_local;
+        
+    // Show the Export To OCAL dialog
+    if (!exportDialogInstance)
+        exportDialogInstance = Inkscape::UI::Dialog::FileExportToOCALDialog::create(
+                parentWindow,
+                Inkscape::UI::Dialog::EXPORT_TYPES,
+                (char const *) _("Select file to export to"),
+                default_extension
+                );
+        
+    success = exportDialogInstance->show();
+    if (!success)
+        return success;
+    
+    fileName = exportDialogInstance->getFilename();
+    
+    selectionType = exportDialogInstance->getSelectionType();
+        
+    if (fileName.size() > 0) {
+        Glib::ustring newFileName = Glib::filename_to_utf8(fileName);
+            
+        if ( newFileName.size()>0 )
+            fileName = newFileName;
+        else
+            g_warning( "Error converting save filename to UTF-8." );
+    }
+    Glib::ustring filePath = export_path;
+    filePath.append(G_DIR_SEPARATOR_S);
+    filePath.append(Glib::path_get_basename(fileName));
+    
+    fileName = filePath;    
+    
+    success = file_save(parentWindow, doc, filePath, selectionType, FALSE, FALSE);
+
+    if (!success){
+        g_warning( "Error saving a temporary copy." );
+        return success;
+    }
+    
+    // Start now the submition
+    
+    // Create the uri
+    Glib::ustring uri = "dav://";
+    char *username = (char *)prefs_get_string_attribute("options.ocalusername", "str");
+    char *password = (char *)prefs_get_string_attribute("options.ocalpassword", "str"); 
+    if ((username != NULL) && (password != NULL)){
+        uri.append(username);
+        uri.append(":");
+        uri.append(password);
+        uri.append("@");
+    } 
+    uri.append(prefs_get_string_attribute("options.ocalurl", "str"));
+    uri.append(Glib::path_get_basename(fileName));
+    // Save as a remote file using the dav protocol.
+    success = file_save_remote(doc, uri, selectionType, FALSE, FALSE);
+    remove(fileName.c_str());
+    if (!success)
+        g_warning( "Error exporting the document." );
+
+    return success;
 }
 
 /**
-Hide all items which are not listed in list, recursively, skipping groups and defs
-*/
+ * Export the current document to OCAL
+ */
 void
-hide_other_items_recursively(SPObject *o, GSList *list, unsigned dkey)
+sp_file_export_to_ocal(Gtk::Window &parentWindow)
 {
-    if (SP_IS_ITEM(o)
-        && !SP_IS_DEFS(o)
-        && !SP_IS_ROOT(o)
-        && !SP_IS_GROUP(o)
-        && !g_slist_find(list, o))
-    {
-        sp_item_invoke_hide(SP_ITEM(o), dkey);
-    }
-
-     // recurse
-    if (!g_slist_find(list, o)) {
-        for (SPObject *child = sp_object_first_child(o) ; child != NULL; child = SP_OBJECT_NEXT(child) ) {
-            hide_other_items_recursively(child, list, dkey);
-        }
-    }
+    
+    // Try to execute the new code and return;
+    if (!SP_ACTIVE_DOCUMENT)
+        return;
+    bool success = sp_file_export_to_ocal_dialog(parentWindow);
+    if (success)  
+        SP_ACTIVE_DESKTOP->messageStack()->flash(Inkscape::IMMEDIATE_MESSAGE, _("Document exported..."));
 }
 
 
+/*######################
+## I M P O R T  F R O M  O C A L
+######################*/
+
 /**
- *  Render the SVG drawing onto a PNG raster image, then save to
- *  a file.  Returns TRUE if succeeded in writing the file,
- *  FALSE otherwise.
+ * Display an ImportToOcal Dialog, and the selected document from OCAL
  */
-int
-sp_export_png_file(SPDocument *doc, gchar const *filename,
-                   double x0, double y0, double x1, double y1,
-                   unsigned width, unsigned height, double xdpi, double ydpi,
-                   unsigned long bgcolor,
-                   unsigned (*status)(float, void *),
-                   void *data, bool force_overwrite,
-                   GSList *items_only)
+void
+sp_file_import_from_ocal(Gtk::Window &parentWindow)
 {
-    int write_status = TRUE;
-    g_return_val_if_fail(doc != NULL, FALSE);
-    g_return_val_if_fail(filename != NULL, FALSE);
-    g_return_val_if_fail(width >= 1, FALSE);
-    g_return_val_if_fail(height >= 1, FALSE);
+    static Glib::ustring import_path;
 
-    if (!force_overwrite && !sp_ui_overwrite_file(filename)) {
-        return FALSE;
-    }
+    SPDocument *doc = SP_ACTIVE_DOCUMENT;
+    if (!doc)
+        return;
+
+    static Inkscape::UI::Dialog::FileImportFromOCALDialog *importDialogInstance = NULL;
 
-    sp_document_ensure_up_to_date(doc);
-
-    /* Go to document coordinates */
-    gdouble t = y0;
-    y0 = sp_document_height(doc) - y1;
-    y1 = sp_document_height(doc) - t;
-
-    /*
-     * 1) a[0] * x0 + a[2] * y1 + a[4] = 0.0
-     * 2) a[1] * x0 + a[3] * y1 + a[5] = 0.0
-     * 3) a[0] * x1 + a[2] * y1 + a[4] = width
-     * 4) a[1] * x0 + a[3] * y0 + a[5] = height
-     * 5) a[1] = 0.0;
-     * 6) a[2] = 0.0;
-     *
-     * (1,3) a[0] * x1 - a[0] * x0 = width
-     * a[0] = width / (x1 - x0)
-     * (2,4) a[3] * y0 - a[3] * y1 = height
-     * a[3] = height / (y0 - y1)
-     * (1) a[4] = -a[0] * x0
-     * (2) a[5] = -a[3] * y1
-     */
-
-    NRMatrix affine;
-    affine.c[0] = width / (x1 - x0);
-    affine.c[1] = 0.0;
-    affine.c[2] = 0.0;
-    affine.c[3] = height / (y1 - y0);
-    affine.c[4] = -affine.c[0] * x0;
-    affine.c[5] = -affine.c[3] * y0;
-
-    //SP_PRINT_MATRIX("SVG2PNG", &affine);
-
-    struct SPEBP ebp;
-    ebp.width  = width;
-    ebp.height = height;
-    ebp.r      = NR_RGBA32_R(bgcolor);
-    ebp.g      = NR_RGBA32_G(bgcolor);
-    ebp.b      = NR_RGBA32_B(bgcolor);
-    ebp.a      = NR_RGBA32_A(bgcolor);
-
-    /* Create new arena */
-    NRArena *arena = NRArena::create();
-    unsigned dkey = sp_item_display_key_new(1);
-
-    /* Create ArenaItems and set transform */
-    ebp.root = sp_item_invoke_show(SP_ITEM(sp_document_root(doc)), arena, dkey, SP_ITEM_SHOW_DISPLAY);
-    nr_arena_item_set_transform(NR_ARENA_ITEM(ebp.root), NR::Matrix(&affine));
-
-    // We show all and then hide all items we don't want, instead of showing only requested items,
-    // because that would not work if the shown item references something in defs
-    if (items_only) {
-        hide_other_items_recursively(sp_document_root(doc), items_only, dkey);
+    if (!importDialogInstance) {
+        importDialogInstance =
+             Inkscape::UI::Dialog::FileImportFromOCALDialog::create(
+                 parentWindow,
+                 import_path,
+                 Inkscape::UI::Dialog::IMPORT_TYPES,
+                 (char const *)_("Import From OCAL"));
     }
 
-    ebp.status = status;
-    ebp.data   = data;
+    bool success = importDialogInstance->show();
+    if (!success)
+        return;
 
-    if ((width < 256) || ((width * height) < 32768)) {
-        ebp.px = nr_pixelstore_64K_new(FALSE, 0);
-        ebp.sheight = 65536 / (4 * width);
-        write_status = sp_png_write_rgba_striped(filename, width, height, xdpi, ydpi, sp_export_get_rows, &ebp);
-        nr_pixelstore_64K_free(ebp.px);
-    } else {
-        ebp.px = g_new(guchar, 4 * 64 * width);
-        ebp.sheight = 64;
-        write_status = sp_png_write_rgba_striped(filename, width, height, xdpi, ydpi, sp_export_get_rows, &ebp);
-        g_free(ebp.px);
-    }
+    // Get file name and extension type
+    Glib::ustring fileName = importDialogInstance->getFilename();
+    Inkscape::Extension::Extension *selection =
+        importDialogInstance->getSelectionType();
 
-    // Hide items
-    sp_item_invoke_hide(SP_ITEM(sp_document_root(doc)), dkey);
+    if (fileName.size() > 0) {
 
-    /* Free Arena and ArenaItem */
-    nr_arena_item_unref(ebp.root);
-    nr_object_unref((NRObject *) arena);
-    return write_status;
-}
+        Glib::ustring newFileName = Glib::filename_to_utf8(fileName);
 
+        if ( newFileName.size() > 0)
+            fileName = newFileName;
+        else
+            g_warning( "ERROR CONVERTING OPEN FILENAME TO UTF-8" );
+
+        import_path = fileName;
+        if (import_path.size()>0)
+            import_path.append(G_DIR_SEPARATOR_S);
+
+        file_import(doc, fileName, selection);
+    }
+
+    return;
+}
 
 /*######################
 ## P R I N T