summaryrefslogtreecommitdiffstats
path: root/src/file.cpp
diff options
context:
space:
mode:
authorMarc Jeanmougin <marc@jeanmougin.fr>2018-10-18 15:44:16 +0000
committerMarc Jeanmougin <marc@jeanmougin.fr>2018-10-18 15:44:16 +0000
commit4deaa8e168d13b07fd56f5ff1de8a8c64df5719a (patch)
tree89b37f02a3e123bcdade0e75321dc001482e2668 /src/file.cpp
parentMerge branch 'master' of gitlab.com:xhorak/inkscape (diff)
parentFix bug 1789838 - Ask for confirmation before overwriting template (diff)
downloadinkscape-4deaa8e168d13b07fd56f5ff1de8a8c64df5719a.tar.gz
inkscape-4deaa8e168d13b07fd56f5ff1de8a8c64df5719a.zip
Merge branch 'bugfix-1789838-confirmation-needed-before-overwriting-template' of gitlab.com:ccrb/inkscape
Diffstat (limited to 'src/file.cpp')
-rw-r--r--src/file.cpp37
1 files changed, 23 insertions, 14 deletions
diff --git a/src/file.cpp b/src/file.cpp
index 5e93fb9ce..e67c79f7b 100644
--- a/src/file.cpp
+++ b/src/file.cpp
@@ -959,13 +959,13 @@ sp_file_save_a_copy(Gtk::Window &parentWindow, gpointer /*object*/, gpointer /*d
/**
* Save a copy of a document as template.
*/
-void
+bool
sp_file_save_template(Gtk::Window &parentWindow, Glib::ustring name,
Glib::ustring author, Glib::ustring description, Glib::ustring keywords,
bool isDefault)
{
if (!SP_ACTIVE_DOCUMENT || name.length() == 0)
- return;
+ return true;
auto document = SP_ACTIVE_DOCUMENT;
@@ -1021,23 +1021,30 @@ sp_file_save_template(Gtk::Window &parentWindow, Glib::ustring name,
root->appendChild(templateinfo_node);
- if (isDefault) {
-
- auto filename = Inkscape::IO::Resource::get_path_ustring(USER,
- TEMPLATES, "default.svg");
- file_save(parentWindow, document, filename,
- Inkscape::Extension::db.get(".svg"), false, false,
- Inkscape::Extension::FILE_SAVE_METHOD_INKSCAPE_SVG);
- }
-
auto encodedName = Glib::uri_escape_string(name);
encodedName.append(".svg");
auto filename = Inkscape::IO::Resource::get_path_ustring(USER, TEMPLATES,
encodedName.c_str());
- file_save(parentWindow, document, filename,
- Inkscape::Extension::db.get(".svg"), false, false,
- Inkscape::Extension::FILE_SAVE_METHOD_INKSCAPE_SVG);
+
+ auto operation_confirmed = sp_ui_overwrite_file(filename.c_str());
+
+ if (operation_confirmed) {
+
+ file_save(parentWindow, document, filename,
+ Inkscape::Extension::db.get(".svg"), false, false,
+ Inkscape::Extension::FILE_SAVE_METHOD_INKSCAPE_SVG);
+
+ if (isDefault) {
+
+ filename = Inkscape::IO::Resource::get_path_ustring(USER,
+ TEMPLATES, "default.svg");
+
+ file_save(parentWindow, document, filename,
+ Inkscape::Extension::db.get(".svg"), false, false,
+ Inkscape::Extension::FILE_SAVE_METHOD_INKSCAPE_SVG);
+ }
+ }
auto nodeToRemove = sp_repr_lookup_name(root, "inkscape:_templateinfo");
@@ -1048,6 +1055,8 @@ sp_file_save_template(Gtk::Window &parentWindow, Glib::ustring name,
}
DocumentUndo::setUndoSensitive(document, true);
+
+ return operation_confirmed;
}