Code

allow easy access to templates profile dir from save dialog
[inkscape.git] / src / file.cpp
1 #define __SP_FILE_C__
3 /*
4  * File/Print operations
5  *
6  * Authors:
7  *   Lauris Kaplinski <lauris@kaplinski.com>
8  *   Chema Celorio <chema@celorio.com>
9  *   bulia byak <buliabyak@users.sf.net>
10  *
11  * Copyright (C) 2006 Johan Engelen <johan@shouraizou.nl>
12  * Copyright (C) 1999-2005 Authors
13  * Copyright (C) 2004 David Turner
14  * Copyright (C) 2001-2002 Ximian, Inc.
15  *
16  * Released under GNU GPL, read the file 'COPYING' for more information
17  */
19 /**
20  * Note: This file needs to be cleaned up extensively.
21  * What it probably needs is to have one .h file for
22  * the API, and two or more .cpp files for the implementations.
23  */
25 #ifdef HAVE_CONFIG_H
26 # include "config.h"
27 #endif
29 #include <glib/gmem.h>
30 #include <libnr/nr-pixops.h>
32 #include "document-private.h"
33 #include "selection-chemistry.h"
34 #include "ui/view/view-widget.h"
35 #include "dir-util.h"
36 #include "helper/png-write.h"
37 #include "dialogs/export.h"
38 #include <glibmm/i18n.h>
39 #include "inkscape.h"
40 #include "desktop.h"
41 #include "selection.h"
42 #include "interface.h"
43 #include "style.h"
44 #include "print.h"
45 #include "file.h"
46 #include "message.h"
47 #include "message-stack.h"
48 #include "ui/dialog/filedialog.h"
49 #include "prefs-utils.h"
50 #include "path-prefix.h"
52 #include "sp-namedview.h"
53 #include "desktop-handles.h"
55 #include "extension/db.h"
56 #include "extension/input.h"
57 #include "extension/output.h"
58 /* #include "extension/menu.h"  */
59 #include "extension/system.h"
61 #include "io/sys.h"
62 #include "application/application.h"
63 #include "application/editor.h"
64 #include "inkscape.h"
65 #include "uri.h"
67 #ifdef WITH_INKBOARD
68 #include "jabber_whiteboard/session-manager.h"
69 #endif
72 //#define INK_DUMP_FILENAME_CONV 1
73 #undef INK_DUMP_FILENAME_CONV
75 //#define INK_DUMP_FOPEN 1
76 #undef INK_DUMP_FOPEN
78 void dump_str(gchar const *str, gchar const *prefix);
79 void dump_ustr(Glib::ustring const &ustr);
82 /*######################
83 ## N E W
84 ######################*/
86 /**
87  * Create a blank document and add it to the desktop
88  */
89 SPDesktop*
90 sp_file_new(const Glib::ustring &templ)
91 {
92     char *templName = NULL;
93     if (templ.size()>0)
94         templName = (char *)templ.c_str();
95     SPDocument *doc = sp_document_new(templName, TRUE, true);
96     g_return_val_if_fail(doc != NULL, NULL);
98     SPDesktop *dt;
99     if (Inkscape::NSApplication::Application::getNewGui())
100     {
101         dt = Inkscape::NSApplication::Editor::createDesktop (doc);
102     } else {
103         SPViewWidget *dtw = sp_desktop_widget_new(sp_document_namedview(doc, NULL));
104         g_return_val_if_fail(dtw != NULL, NULL);
105         sp_document_unref(doc);
107         sp_create_window(dtw, TRUE);
108         dt = static_cast<SPDesktop*>(dtw->view);
109         sp_namedview_window_from_document(dt);
110         sp_namedview_update_layers_from_document(dt);
111     }
112     return dt;
115 SPDesktop*
116 sp_file_new_default()
118     std::list<gchar *> sources;
119     sources.push_back( profile_path("templates") ); // first try user's local dir
120     sources.push_back( g_strdup(INKSCAPE_TEMPLATESDIR) ); // then the system templates dir
122     while (!sources.empty()) {
123         gchar *dirname = sources.front();
124         if ( Inkscape::IO::file_test( dirname, (GFileTest)(G_FILE_TEST_EXISTS | G_FILE_TEST_IS_DIR) ) ) {
126             // TRANSLATORS: default.svg is localizable - this is the name of the default document
127             //  template. This way you can localize the default pagesize, translate the name of
128             //  the default layer, etc. If you wish to localize this file, please create a
129             //  localized share/templates/default.xx.svg file, where xx is your language code.
130             char *default_template = g_build_filename(dirname, _("default.svg"), NULL);
131             if (Inkscape::IO::file_test(default_template, G_FILE_TEST_IS_REGULAR)) {
132                 return sp_file_new(default_template);
133             }
134         }
135         g_free(dirname);
136         sources.pop_front();
137     }
139     return sp_file_new("");
143 /*######################
144 ## D E L E T E
145 ######################*/
147 /**
148  *  Perform document closures preceding an exit()
149  */
150 void
151 sp_file_exit()
153     sp_ui_close_all();
154     // no need to call inkscape_exit here; last document being closed will take care of that
158 /*######################
159 ## O P E N
160 ######################*/
162 /**
163  *  Open a file, add the document to the desktop
164  *
165  *  \param replace_empty if true, and the current desktop is empty, this document
166  *  will replace the empty one.
167  */
168 bool
169 sp_file_open(const Glib::ustring &uri,
170              Inkscape::Extension::Extension *key,
171              bool add_to_recent, bool replace_empty)
173     SPDocument *doc = NULL;
174     try {
175         doc = Inkscape::Extension::open(key, uri.c_str());
176     } catch (Inkscape::Extension::Input::no_extension_found &e) {
177         doc = NULL;
178     } catch (Inkscape::Extension::Input::open_failed &e) {
179         doc = NULL;
180     }
182     if (doc) {
183         SPDesktop *desktop = SP_ACTIVE_DESKTOP;
184         SPDocument *existing = desktop ? sp_desktop_document(desktop) : NULL;
186         if (existing && existing->virgin && replace_empty) {
187             // If the current desktop is empty, open the document there
188             sp_document_ensure_up_to_date (doc);
189             desktop->change_document(doc);
190             sp_document_resized_signal_emit (doc, sp_document_width(doc), sp_document_height(doc));
191         } else {
192             if (!Inkscape::NSApplication::Application::getNewGui()) {
193                 // create a whole new desktop and window
194                 SPViewWidget *dtw = sp_desktop_widget_new(sp_document_namedview(doc, NULL));
195                 sp_create_window(dtw, TRUE);
196                 desktop = static_cast<SPDesktop*>(dtw->view);
197             } else {
198                 desktop = Inkscape::NSApplication::Editor::createDesktop (doc);
199             }
200         }
202         doc->virgin = FALSE;
203         // everyone who cares now has a reference, get rid of ours
204         sp_document_unref(doc);
205         // resize the window to match the document properties
206         sp_namedview_window_from_document(desktop);
207         sp_namedview_update_layers_from_document(desktop);
209         if (add_to_recent) {
210             prefs_set_recent_file(SP_DOCUMENT_URI(doc), SP_DOCUMENT_NAME(doc));
211         }
213         return TRUE;
214     } else {
215         gchar *safeUri = Inkscape::IO::sanitizeString(uri.c_str());
216         gchar *text = g_strdup_printf(_("Failed to load the requested file %s"), safeUri);
217         sp_ui_error_dialog(text);
218         g_free(text);
219         g_free(safeUri);
220         return FALSE;
221     }
224 /**
225  *  Handle prompting user for "do you want to revert"?  Revert on "OK"
226  */
227 void
228 sp_file_revert_dialog()
230     SPDesktop  *desktop = SP_ACTIVE_DESKTOP;
231     g_assert(desktop != NULL);
233     SPDocument *doc = sp_desktop_document(desktop);
234     g_assert(doc != NULL);
236     Inkscape::XML::Node     *repr = sp_document_repr_root(doc);
237     g_assert(repr != NULL);
239     gchar const *uri = doc->uri;
240     if (!uri) {
241         desktop->messageStack()->flash(Inkscape::ERROR_MESSAGE, _("Document not saved yet.  Cannot revert."));
242         return;
243     }
245     bool do_revert = true;
246     if (repr->attribute("sodipodi:modified") != NULL) {
247         gchar *text = g_strdup_printf(_("Changes will be lost!  Are you sure you want to reload document %s?"), uri);
249         bool response = desktop->warnDialog (text);
250         g_free(text);
252         if (!response) {
253             do_revert = false;
254         }
255     }
257     bool reverted;
258     if (do_revert) {
259         // Allow overwriting of current document.
260         doc->virgin = TRUE;
261         reverted = sp_file_open(uri,NULL);
262     } else {
263         reverted = false;
264     }
266     if (reverted) {
267         desktop->messageStack()->flash(Inkscape::NORMAL_MESSAGE, _("Document reverted."));
268     } else {
269         desktop->messageStack()->flash(Inkscape::ERROR_MESSAGE, _("Document not reverted."));
270     }
273 void dump_str(gchar const *str, gchar const *prefix)
275     Glib::ustring tmp;
276     tmp = prefix;
277     tmp += " [";
278     size_t const total = strlen(str);
279     for (unsigned i = 0; i < total; i++) {
280         gchar *const tmp2 = g_strdup_printf(" %02x", (0x0ff & str[i]));
281         tmp += tmp2;
282         g_free(tmp2);
283     }
285     tmp += "]";
286     g_message("%s", tmp.c_str());
289 void dump_ustr(Glib::ustring const &ustr)
291     char const *cstr = ustr.c_str();
292     char const *data = ustr.data();
293     Glib::ustring::size_type const byteLen = ustr.bytes();
294     Glib::ustring::size_type const dataLen = ustr.length();
295     Glib::ustring::size_type const cstrLen = strlen(cstr);
297     g_message("   size: %lu\n   length: %lu\n   bytes: %lu\n    clen: %lu",
298               gulong(ustr.size()), gulong(dataLen), gulong(byteLen), gulong(cstrLen) );
299     g_message( "  ASCII? %s", (ustr.is_ascii() ? "yes":"no") );
300     g_message( "  UTF-8? %s", (ustr.validate() ? "yes":"no") );
302     try {
303         Glib::ustring tmp;
304         for (Glib::ustring::size_type i = 0; i < ustr.bytes(); i++) {
305             tmp = "    ";
306             if (i < dataLen) {
307                 Glib::ustring::value_type val = ustr.at(i);
308                 gchar* tmp2 = g_strdup_printf( (((val & 0xff00) == 0) ? "  %02x" : "%04x"), val );
309                 tmp += tmp2;
310                 g_free( tmp2 );
311             } else {
312                 tmp += "    ";
313             }
315             if (i < byteLen) {
316                 int val = (0x0ff & data[i]);
317                 gchar *tmp2 = g_strdup_printf("    %02x", val);
318                 tmp += tmp2;
319                 g_free( tmp2 );
320                 if ( val > 32 && val < 127 ) {
321                     tmp2 = g_strdup_printf( "   '%c'", (gchar)val );
322                     tmp += tmp2;
323                     g_free( tmp2 );
324                 } else {
325                     tmp += "    . ";
326                 }
327             } else {
328                 tmp += "       ";
329             }
331             if ( i < cstrLen ) {
332                 int val = (0x0ff & cstr[i]);
333                 gchar* tmp2 = g_strdup_printf("    %02x", val);
334                 tmp += tmp2;
335                 g_free(tmp2);
336                 if ( val > 32 && val < 127 ) {
337                     tmp2 = g_strdup_printf("   '%c'", (gchar) val);
338                     tmp += tmp2;
339                     g_free( tmp2 );
340                 } else {
341                     tmp += "    . ";
342                 }
343             } else {
344                 tmp += "            ";
345             }
347             g_message( "%s", tmp.c_str() );
348         }
349     } catch (...) {
350         g_message("XXXXXXXXXXXXXXXXXX Exception" );
351     }
352     g_message("---------------");
355 static Inkscape::UI::Dialog::FileOpenDialog *openDialogInstance = NULL;
357 /**
358  *  Display an file Open selector.  Open a document if OK is pressed.
359  *  Can select single or multiple files for opening.
360  */
361 void
362 sp_file_open_dialog(gpointer object, gpointer data)
365     //# Get the current directory for finding files
366     Glib::ustring open_path;
367     char *attr = (char *)prefs_get_string_attribute("dialogs.open", "path");
368     if (attr)
369         open_path = attr;
372     //# Test if the open_path directory exists  
373     if (!Inkscape::IO::file_test(open_path.c_str(),
374               (GFileTest)(G_FILE_TEST_EXISTS | G_FILE_TEST_IS_DIR)))
375         open_path = "";
377     //# If no open path, default to our home directory
378     if (open_path.size() < 1)
379         {
380         open_path = g_get_home_dir();
381         open_path.append(G_DIR_SEPARATOR_S);
382         }
384     //# Create a dialog if we don't already have one
385     if (!openDialogInstance) {
386         openDialogInstance =
387               Inkscape::UI::Dialog::FileOpenDialog::create(
388                  open_path,
389                  Inkscape::UI::Dialog::SVG_TYPES,
390                  (char const *)_("Select file to open"));
391         // allow easy access to our examples folder              
392         dynamic_cast<Gtk::FileChooser *>(openDialogInstance)->add_shortcut_folder(INKSCAPE_EXAMPLESDIR);
393     }
396     //# Show the dialog
397     bool const success = openDialogInstance->show();
398     if (!success)
399         return;
401     //# User selected something.  Get name and type
402     Glib::ustring fileName = openDialogInstance->getFilename();
403     Inkscape::Extension::Extension *selection =
404             openDialogInstance->getSelectionType();
406     //# Code to check & open iff multiple files.
407     std::vector<Glib::ustring> flist=openDialogInstance->getFilenames();
409     //# Iterate through filenames if more than 1
410     if (flist.size() > 1)
411         {
412         for (unsigned int i=1 ; i<flist.size() ; i++)
413             {
414             Glib::ustring fName = flist[i];
416             if (Glib::file_test(fileName, Glib::FILE_TEST_IS_DIR)) {
417             Glib::ustring newFileName = Glib::filename_to_utf8(fName);
418             if ( newFileName.size() > 0 )
419                 fName = newFileName;
420             else
421                 g_warning( "ERROR CONVERTING OPEN FILENAME TO UTF-8" );
423 #ifdef INK_DUMP_FILENAME_CONV
424             g_message("Opening File %s\n",fileName);
425 #endif
426             sp_file_open(fileName, selection);
427             }
428         }
429         return;
430     }
433     if (fileName.size() > 0) {
435         Glib::ustring newFileName = Glib::filename_to_utf8(fileName);
437         if ( newFileName.size() > 0)
438             fileName = newFileName;
439         else
440             g_warning( "ERROR CONVERTING OPEN FILENAME TO UTF-8" );
442         open_path = fileName;
443         open_path.append(G_DIR_SEPARATOR_S);
444         prefs_set_string_attribute("dialogs.open", "path", open_path.c_str());
446         sp_file_open(fileName, selection);
447     }
449     return;
453 /*######################
454 ## V A C U U M
455 ######################*/
457 /**
458  * Remove unreferenced defs from the defs section of the document.
459  */
462 void
463 sp_file_vacuum()
465     SPDocument *doc = SP_ACTIVE_DOCUMENT;
467     unsigned int diff = vacuum_document (doc);
469     sp_document_done(doc, SP_VERB_FILE_VACUUM, 
470                      _("Vacuum &lt;defs&gt;"));
472     SPDesktop *dt = SP_ACTIVE_DESKTOP;
473     if (diff > 0) {
474         dt->messageStack()->flashF(Inkscape::NORMAL_MESSAGE,
475                 ngettext("Removed <b>%i</b> unused definition in &lt;defs&gt;.",
476                          "Removed <b>%i</b> unused definitions in &lt;defs&gt;.",
477                          diff),
478                 diff);
479     } else {
480         dt->messageStack()->flash(Inkscape::NORMAL_MESSAGE,  _("No unused definitions in &lt;defs&gt;."));
481     }
486 /*######################
487 ## S A V E
488 ######################*/
490 /**
491  * This 'save' function called by the others below
492  *
493  * \param    official  whether to set :output_module and :modified in the
494  *                     document; is true for normal save, false for temporary saves
495  */
496 static bool
497 file_save(SPDocument *doc, const Glib::ustring &uri,
498           Inkscape::Extension::Extension *key, bool saveas, bool official)
500     if (!doc || uri.size()<1) //Safety check
501         return false;
503     try {
504         Inkscape::Extension::save(key, doc, uri.c_str(),
505                  false,
506                  saveas, official); 
507     } catch (Inkscape::Extension::Output::no_extension_found &e) {
508         gchar *safeUri = Inkscape::IO::sanitizeString(uri.c_str());
509         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         SP_ACTIVE_DESKTOP->messageStack()->flash(Inkscape::ERROR_MESSAGE, _("Document not saved."));
511         sp_ui_error_dialog(text);
512         g_free(text);
513         g_free(safeUri);
514         return FALSE;
515     } catch (Inkscape::Extension::Output::save_failed &e) {
516         gchar *safeUri = Inkscape::IO::sanitizeString(uri.c_str());
517         gchar *text = g_strdup_printf(_("File %s could not be saved."), safeUri);
518         SP_ACTIVE_DESKTOP->messageStack()->flash(Inkscape::ERROR_MESSAGE, _("Document not saved."));
519         sp_ui_error_dialog(text);
520         g_free(text);
521         g_free(safeUri);
522         return FALSE;
523     } catch (Inkscape::Extension::Output::no_overwrite &e) {
524         return sp_file_save_dialog(doc);
525     }
527     SP_ACTIVE_DESKTOP->messageStack()->flash(Inkscape::NORMAL_MESSAGE, _("Document saved."));
528     return true;
535 /**
536  *  Display a SaveAs dialog.  Save the document if OK pressed.
537  *
538  * \param    ascopy  (optional) wether to set the documents->uri to the new filename or not
539  */
540 bool
541 sp_file_save_dialog(SPDocument *doc, bool is_copy)
544     Inkscape::XML::Node *repr = sp_document_repr_root(doc);
546     Inkscape::Extension::Output *extension = 0;
548     //# Get the default extension name
549     Glib::ustring default_extension;
550     char *attr = (char *)repr->attribute("inkscape:output_extension");
551     if (!attr)
552         attr = (char *)prefs_get_string_attribute("dialogs.save_as", "default");
553     if (attr)
554         default_extension = attr;
555     //g_message("%s: extension name: '%s'", __FUNCTION__, default_extension);
557     Glib::ustring save_path;
558     Glib::ustring save_loc;
560     if (doc->uri == NULL) {
561         char formatBuf[256];
562         int i = 1;
564         Glib::ustring filename_extension = ".svg";
565         extension = dynamic_cast<Inkscape::Extension::Output *>
566               (Inkscape::Extension::db.get(default_extension.c_str()));
567         //g_warning("%s: extension ptr: 0x%x", __FUNCTION__, (unsigned int)extension);
568         if (extension)
569             filename_extension = extension->get_extension();
571         attr = (char *)prefs_get_string_attribute("dialogs.save_as", "path");
572         if (attr)
573             save_path = attr;
575         if (!Inkscape::IO::file_test(save_path.c_str(),
576               (GFileTest)(G_FILE_TEST_EXISTS | G_FILE_TEST_IS_DIR)))
577             save_path = "";
579         if (save_path.size()<1)
580             save_path = g_get_home_dir();
582         save_loc = save_path;
583         save_loc.append(G_DIR_SEPARATOR_S);
584         snprintf(formatBuf, 255, _("drawing%s"), filename_extension.c_str());
585         save_loc.append(formatBuf);
587         while (Inkscape::IO::file_test(save_loc.c_str(), G_FILE_TEST_EXISTS)) {
588             save_loc = save_path;
589             save_loc.append(G_DIR_SEPARATOR_S);
590             snprintf(formatBuf, 255, _("drawing-%d%s"), i++, filename_extension.c_str());
591             save_loc.append(formatBuf);
592         }
593     } else {
594         save_loc = Glib::build_filename(Glib::path_get_dirname(doc->uri),
595                                         Glib::path_get_basename(doc->uri));
596     }
598     // convert save_loc from utf-8 to locale
599     // is this needed any more, now that everything is handled in
600     // Inkscape::IO?
601     Glib::ustring save_loc_local = Glib::filename_from_utf8(save_loc);
603     if ( save_loc_local.size() > 0) 
604         save_loc = save_loc_local;
606     //# Show the SaveAs dialog
607     char const * dialog_title;
608     if (is_copy) {
609         dialog_title = (char const *) _("Select file to save a copy to");
610     } else {
611         dialog_title = (char const *) _("Select file to save to");
612     }
613     Inkscape::UI::Dialog::FileSaveDialog *saveDialog =
614         Inkscape::UI::Dialog::FileSaveDialog::create(
615             save_loc,
616             Inkscape::UI::Dialog::SVG_TYPES,
617             (char const *) _("Select file to save to"),
618             default_extension
619             );
621     saveDialog->change_title(dialog_title);
622     saveDialog->setSelectionType(extension);
624     // allow easy access to the user's own templates folder              
625     gchar *templates = profile_path ("templates");
626     dynamic_cast<Gtk::FileChooser *>(saveDialog)->add_shortcut_folder(templates);
627     g_free (templates);
629     bool success = saveDialog->show();
630     if (!success) {
631         delete saveDialog;
632         return success;
633     }
635     Glib::ustring fileName = saveDialog->getFilename();
636     Inkscape::Extension::Extension *selectionType = saveDialog->getSelectionType();
638     delete saveDialog;
639     saveDialog = 0;
641     if (fileName.size() > 0) {
642         Glib::ustring newFileName = Glib::filename_to_utf8(fileName);
644         if ( newFileName.size()>0 )
645             fileName = newFileName;
646         else
647             g_warning( "Error converting save filename to UTF-8." );
649         success = file_save(doc, fileName, selectionType, TRUE, !is_copy);
651         if (success)
652             prefs_set_recent_file(SP_DOCUMENT_URI(doc), SP_DOCUMENT_NAME(doc));
654         save_path = Glib::path_get_dirname(fileName);
655         prefs_set_string_attribute("dialogs.save_as", "path", save_path.c_str());
657         return success;
658     }
661     return false;
665 /**
666  * Save a document, displaying a SaveAs dialog if necessary.
667  */
668 bool
669 sp_file_save_document(SPDocument *doc)
671     bool success = true;
673     Inkscape::XML::Node *repr = sp_document_repr_root(doc);
675     gchar const *fn = repr->attribute("sodipodi:modified");
676     if (fn != NULL) {
677         if ( doc->uri == NULL
678             || repr->attribute("inkscape:output_extension") == NULL )
679         {
680             return sp_file_save_dialog(doc, FALSE);
681         } else {
682             fn = g_strdup(doc->uri);
683             gchar const *ext = repr->attribute("inkscape:output_extension");
684             success = file_save(doc, fn, Inkscape::Extension::db.get(ext), FALSE, TRUE);
685             g_free((void *) fn);
686         }
687     } else {
688         SP_ACTIVE_DESKTOP->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("No changes need to be saved."));
689         success = TRUE;
690     }
692     return success;
696 /**
697  * Save a document.
698  */
699 bool
700 sp_file_save(gpointer object, gpointer data)
702     if (!SP_ACTIVE_DOCUMENT)
703         return false;
705     SP_ACTIVE_DESKTOP->messageStack()->flash(Inkscape::IMMEDIATE_MESSAGE, _("Saving document..."));
707     sp_namedview_document_from_window(SP_ACTIVE_DESKTOP);
708     return sp_file_save_document(SP_ACTIVE_DOCUMENT);
712 /**
713  *  Save a document, always displaying the SaveAs dialog.
714  */
715 bool
716 sp_file_save_as(gpointer object, gpointer data)
718     if (!SP_ACTIVE_DOCUMENT)
719         return false;
720     sp_namedview_document_from_window(SP_ACTIVE_DESKTOP);
721     return sp_file_save_dialog(SP_ACTIVE_DOCUMENT, FALSE);
726 /**
727  *  Save a copy of a document, always displaying a sort of SaveAs dialog.
728  */
729 bool
730 sp_file_save_a_copy(gpointer object, gpointer data)
732     if (!SP_ACTIVE_DOCUMENT)
733         return false;
734     sp_namedview_document_from_window(SP_ACTIVE_DESKTOP);
735     return sp_file_save_dialog(SP_ACTIVE_DOCUMENT, TRUE);
739 /*######################
740 ## I M P O R T
741 ######################*/
743 /**
744  *  Import a resource.  Called by sp_file_import()
745  */
746 void
747 file_import(SPDocument *in_doc, const Glib::ustring &uri,
748                Inkscape::Extension::Extension *key)
750     SPDesktop *desktop = SP_ACTIVE_DESKTOP;
752     //DEBUG_MESSAGE( fileImport, "file_import( in_doc:%p uri:[%s], key:%p", in_doc, uri, key );
753     SPDocument *doc;
754     try {
755         doc = Inkscape::Extension::open(key, uri.c_str());
756     } catch (Inkscape::Extension::Input::no_extension_found &e) {
757         doc = NULL;
758     } catch (Inkscape::Extension::Input::open_failed &e) {
759         doc = NULL;
760     }
762     if (doc != NULL) {
763         // move imported defs to our document's defs
764         SPObject *in_defs = SP_DOCUMENT_DEFS(in_doc);
765         SPObject *defs = SP_DOCUMENT_DEFS(doc);
767         Inkscape::IO::fixupHrefs(doc, in_doc->base, true);
768         Inkscape::XML::Document *xml_doc = sp_document_repr_doc(doc);
770         Inkscape::XML::Node *last_def = SP_OBJECT_REPR(in_defs)->lastChild();
771         for (SPObject *child = sp_object_first_child(defs);
772              child != NULL; child = SP_OBJECT_NEXT(child))
773         {
774             // FIXME: in case of id conflict, newly added thing will be re-ided and thus likely break a reference to it from imported stuff
775             SP_OBJECT_REPR(in_defs)->addChild(SP_OBJECT_REPR(child)->duplicate(xml_doc), last_def);
776         }
778         guint items_count = 0;
779         for (SPObject *child = sp_object_first_child(SP_DOCUMENT_ROOT(doc));
780              child != NULL; child = SP_OBJECT_NEXT(child)) {
781             if (SP_IS_ITEM(child))
782                 items_count ++;
783         }
784         SPCSSAttr *style = sp_css_attr_from_object (SP_DOCUMENT_ROOT (doc));
786         SPObject *new_obj = NULL;
788         if ((style && style->firstChild()) || items_count > 1) {
789             // create group
790             Inkscape::XML::Document *xml_doc = sp_document_repr_doc(in_doc);
791             Inkscape::XML::Node *newgroup = xml_doc->createElement("svg:g");
792             sp_repr_css_set (newgroup, style, "style");
794             for (SPObject *child = sp_object_first_child(SP_DOCUMENT_ROOT(doc)); child != NULL; child = SP_OBJECT_NEXT(child) ) {
795                 if (SP_IS_ITEM(child)) {
796                     Inkscape::XML::Node *newchild = SP_OBJECT_REPR(child)->duplicate(xml_doc);
798                     // convert layers to groups; FIXME: add "preserve layers" mode where each layer
799                     // from impot is copied to the same-named layer in host
800                     newchild->setAttribute("inkscape:groupmode", NULL);
802                     newgroup->appendChild(newchild);
803                 }
804             }
806             if (desktop) {
807                 // Add it to the current layer
808                 new_obj = desktop->currentLayer()->appendChildRepr(newgroup);
809             } else {
810                 // There's no desktop (command line run?)
811                 // FIXME: For such cases we need a document:: method to return the current layer
812                 new_obj = SP_DOCUMENT_ROOT(in_doc)->appendChildRepr(newgroup);
813             }
815             Inkscape::GC::release(newgroup);
816         } else {
817             // just add one item
818             for (SPObject *child = sp_object_first_child(SP_DOCUMENT_ROOT(doc)); child != NULL; child = SP_OBJECT_NEXT(child) ) {
819                 if (SP_IS_ITEM(child)) {
820                     Inkscape::XML::Node *newitem = SP_OBJECT_REPR(child)->duplicate(xml_doc);
821                     newitem->setAttribute("inkscape:groupmode", NULL);
823                     if (desktop) {
824                         // Add it to the current layer
825                         new_obj = desktop->currentLayer()->appendChildRepr(newitem);
826                     } else {
827                         // There's no desktop (command line run?)
828                         // FIXME: For such cases we need a document:: method to return the current layer
829                         new_obj = SP_DOCUMENT_ROOT(in_doc)->appendChildRepr(newitem);
830                     }
832                 }
833             }
834         }
836         if (style) sp_repr_css_attr_unref (style);
838         // select and move the imported item
839         if (new_obj && SP_IS_ITEM(new_obj)) {
840             Inkscape::Selection *selection = sp_desktop_selection(desktop);
841             selection->set(SP_ITEM(new_obj));
843             // To move the imported object, we must temporarily set the "transform pattern with
844             // object" option.
845             {
846                 int const saved_pref = prefs_get_int_attribute("options.transform", "pattern", 1);
847                 prefs_set_int_attribute("options.transform", "pattern", 1);
848                 sp_document_ensure_up_to_date(sp_desktop_document(desktop));
849                 NR::Maybe<NR::Rect> sel_bbox = selection->bounds();
850                 if (sel_bbox) {
851                     NR::Point m( desktop->point() - sel_bbox->midpoint() );
852                     sp_selection_move_relative(selection, m);
853                 }
854                 prefs_set_int_attribute("options.transform", "pattern", saved_pref);
855             }
856         }
858         sp_document_unref(doc);
859         sp_document_done(in_doc, SP_VERB_FILE_IMPORT,
860                          _("Import"));
862     } else {
863         gchar *text = g_strdup_printf(_("Failed to load the requested file %s"), uri.c_str());
864         sp_ui_error_dialog(text);
865         g_free(text);
866     }
868     return;
872 static Inkscape::UI::Dialog::FileOpenDialog *importDialogInstance = NULL;
874 /**
875  *  Display an Open dialog, import a resource if OK pressed.
876  */
877 void
878 sp_file_import(GtkWidget *widget)
880     static Glib::ustring import_path;
882     SPDocument *doc = SP_ACTIVE_DOCUMENT;
883     if (!doc)
884         return;
886     if (!importDialogInstance) {
887         importDialogInstance =
888              Inkscape::UI::Dialog::FileOpenDialog::create(
889                  import_path,
890                  Inkscape::UI::Dialog::IMPORT_TYPES,
891                  (char const *)_("Select file to import"));
892     }
894     bool success = importDialogInstance->show();
895     if (!success)
896         return;
898     //# Get file name and extension type
899     Glib::ustring fileName = importDialogInstance->getFilename();
900     Inkscape::Extension::Extension *selection =
901         importDialogInstance->getSelectionType();
904     if (fileName.size() > 0) {
905  
906         Glib::ustring newFileName = Glib::filename_to_utf8(fileName);
908         if ( newFileName.size() > 0)
909             fileName = newFileName;
910         else
911             g_warning( "ERROR CONVERTING OPEN FILENAME TO UTF-8" );
913         import_path = fileName;
914         if (import_path.size()>0)
915             import_path.append(G_DIR_SEPARATOR_S);
917         file_import(doc, fileName, selection);
918     }
920     return;
925 /*######################
926 ## E X P O R T
927 ######################*/
929 //#define NEW_EXPORT_DIALOG
933 #ifdef NEW_EXPORT_DIALOG
935 static Inkscape::UI::Dialog::FileExportDialog *exportDialogInstance = NULL;
937 /**
938  *  Display an Export dialog, export as the selected type if OK pressed
939  */
940 bool
941 sp_file_export_dialog(void *widget)
943     //# temp hack for 'doc' until we can switch to this dialog
944     SPDocument *doc = SP_ACTIVE_DOCUMENT;
946     Glib::ustring export_path; 
947     Glib::ustring export_loc; 
949     Inkscape::XML::Node *repr = sp_document_repr_root(doc);
951     Inkscape::Extension::Output *extension;
953     //# Get the default extension name
954     Glib::ustring default_extension;
955     char *attr = (char *)repr->attribute("inkscape:output_extension");
956     if (!attr)
957         attr = (char *)prefs_get_string_attribute("dialogs.save_as", "default");
958     if (attr)
959         default_extension = attr;
960     //g_message("%s: extension name: '%s'", __FUNCTION__, default_extension);
962     if (doc->uri == NULL)
963         {
964         char formatBuf[256];
966         Glib::ustring filename_extension = ".svg";
967         extension = dynamic_cast<Inkscape::Extension::Output *>
968               (Inkscape::Extension::db.get(default_extension.c_str()));
969         //g_warning("%s: extension ptr: 0x%x", __FUNCTION__, (unsigned int)extension);
970         if (extension)
971             filename_extension = extension->get_extension();
973         attr = (char *)prefs_get_string_attribute("dialogs.save_as", "path");
974         if (attr)
975             export_path = attr;
977         if (!Inkscape::IO::file_test(export_path.c_str(),
978               (GFileTest)(G_FILE_TEST_EXISTS | G_FILE_TEST_IS_DIR)))
979             export_path = "";
981         if (export_path.size()<1)
982             export_path = g_get_home_dir();
984         export_loc = export_path;
985         export_loc.append(G_DIR_SEPARATOR_S);
986         snprintf(formatBuf, 255, _("drawing%s"), filename_extension.c_str());
987         export_loc.append(formatBuf);
989         }
990     else
991         {
992         export_path = Glib::path_get_dirname(doc->uri);
993         }
995     // convert save_loc from utf-8 to locale
996     // is this needed any more, now that everything is handled in
997     // Inkscape::IO?
998     Glib::ustring export_path_local = Glib::filename_from_utf8(export_path);
999     if ( export_path_local.size() > 0) 
1000         export_path = export_path_local;
1002     //# Show the SaveAs dialog
1003     if (!exportDialogInstance)
1004         exportDialogInstance =
1005              Inkscape::UI::Dialog::FileExportDialog::create(
1006                  export_path,
1007                  Inkscape::UI::Dialog::EXPORT_TYPES,
1008                  (char const *) _("Select file to export to"),
1009                  default_extension
1010             );
1012     bool success = exportDialogInstance->show();
1013     if (!success)
1014         return success;
1016     Glib::ustring fileName = exportDialogInstance->getFilename();
1018     Inkscape::Extension::Extension *selectionType =
1019         exportDialogInstance->getSelectionType();
1022     if (fileName.size() > 0) {
1023         Glib::ustring newFileName = Glib::filename_to_utf8(fileName);
1025         if ( newFileName.size()>0 )
1026             fileName = newFileName;
1027         else
1028             g_warning( "Error converting save filename to UTF-8." );
1030         success = file_save(doc, fileName, selectionType, TRUE, FALSE);
1032         if (success)
1033             prefs_set_recent_file(SP_DOCUMENT_URI(doc), SP_DOCUMENT_NAME(doc));
1035         export_path = fileName;
1036         prefs_set_string_attribute("dialogs.save_as", "path", export_path.c_str());
1038         return success;
1039     }
1042     return false;
1051 #else
1055 /**
1056  *
1057  */
1058 bool
1059 sp_file_export_dialog(void *widget)
1061     sp_export_dialog();
1062     return true;
1065 #endif
1067 /*######################
1068 ## P R I N T
1069 ######################*/
1072 /**
1073  *  Print the current document, if any.
1074  */
1075 void
1076 sp_file_print()
1078     SPDocument *doc = SP_ACTIVE_DOCUMENT;
1079     if (doc)
1080         sp_print_document(doc, FALSE);
1084 /**
1085  *  Print the current document, if any.  Do not use
1086  *  the machine's print drivers.
1087  */
1088 void
1089 sp_file_print_direct()
1091     SPDocument *doc = SP_ACTIVE_DOCUMENT;
1092     if (doc)
1093         sp_print_document(doc, TRUE);
1097 /**
1098  * Display what the drawing would look like, if
1099  * printed.
1100  */
1101 void
1102 sp_file_print_preview(gpointer object, gpointer data)
1105     SPDocument *doc = SP_ACTIVE_DOCUMENT;
1106     if (doc)
1107         sp_print_preview_document(doc);
1111 void Inkscape::IO::fixupHrefs( SPDocument *doc, const gchar *base, gboolean spns )
1113     //g_message("Inkscape::IO::fixupHrefs( , [%s], )", base );
1115     if ( 0 ) {
1116         gchar const* things[] = {
1117             "data:foo,bar",
1118             "http://www.google.com/image.png",
1119             "ftp://ssd.com/doo",
1120             "/foo/dee/bar.svg",
1121             "foo.svg",
1122             "file:/foo/dee/bar.svg",
1123             "file:///foo/dee/bar.svg",
1124             "file:foo.svg",
1125             "/foo/bar\xe1\x84\x92.svg",
1126             "file:///foo/bar\xe1\x84\x92.svg",
1127             "file:///foo/bar%e1%84%92.svg",
1128             "/foo/bar%e1%84%92.svg",
1129             "bar\xe1\x84\x92.svg",
1130             "bar%e1%84%92.svg",
1131             NULL
1132         };
1133         g_message("+------");
1134         for ( int i = 0; things[i]; i++ )
1135         {
1136             try
1137             {
1138                 URI uri(things[i]);
1139                 gboolean isAbs = g_path_is_absolute( things[i] );
1140                 gchar *str = uri.toString();
1141                 g_message( "abs:%d  isRel:%d  scheme:[%s]  path:[%s][%s]   uri[%s] / [%s]", (int)isAbs,
1142                            (int)uri.isRelative(),
1143                            uri.getScheme(),
1144                            uri.getPath(),
1145                            uri.getOpaque(),
1146                            things[i],
1147                            str );
1148                 g_free(str);
1149             }
1150             catch ( MalformedURIException err )
1151             {
1152                 dump_str( things[i], "MalformedURIException" );
1153                 xmlChar *redo = xmlURIEscape((xmlChar const *)things[i]);
1154                 g_message("    gone from [%s] to [%s]", things[i], redo );
1155                 if ( redo == NULL )
1156                 {
1157                     URI again = URI::fromUtf8( things[i] );
1158                     gboolean isAbs = g_path_is_absolute( things[i] );
1159                     gchar *str = again.toString();
1160                     g_message( "abs:%d  isRel:%d  scheme:[%s]  path:[%s][%s]   uri[%s] / [%s]", (int)isAbs,
1161                                (int)again.isRelative(),
1162                                again.getScheme(),
1163                                again.getPath(),
1164                                again.getOpaque(),
1165                                things[i],
1166                                str );
1167                     g_free(str);
1168                     g_message("    ----");
1169                 }
1170             }
1171         }
1172         g_message("+------");
1173     }
1175     GSList const *images = sp_document_get_resource_list(doc, "image");
1176     for (GSList const *l = images; l != NULL; l = l->next) {
1177         Inkscape::XML::Node *ir = SP_OBJECT_REPR(l->data);
1179         const gchar *href = ir->attribute("xlink:href");
1181         // First try to figure out an absolute path to the asset
1182         //g_message("image href [%s]", href );
1183         if (spns && !g_path_is_absolute(href)) {
1184             const gchar *absref = ir->attribute("sodipodi:absref");
1185             const gchar *base_href = g_build_filename(base, href, NULL);
1186             //g_message("      absr [%s]", absref );
1188             if ( absref && Inkscape::IO::file_test(absref, G_FILE_TEST_EXISTS) && !Inkscape::IO::file_test(base_href, G_FILE_TEST_EXISTS))
1189             {
1190                 // only switch over if the absref is valid while href is not
1191                 href = absref;
1192                 //g_message("     copied absref to href");
1193             }
1194         }
1196         // Once we have an absolute path, convert it relative to the new location
1197         if (href && g_path_is_absolute(href)) {
1198             const gchar *relname = sp_relative_path_from_path(href, base);
1199             //g_message("     setting to [%s]", relname );
1200             ir->setAttribute("xlink:href", relname);
1201         }
1202 // TODO next refinement is to make the first choice keeping the relative path as-is if
1203 //      based on the new location it gives us a valid file.
1204     }
1208 /*
1209   Local Variables:
1210   mode:c++
1211   c-file-style:"stroustrup"
1212   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
1213   indent-tabs-mode:nil
1214   fill-column:99
1215   End:
1216 */
1217 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :