Lines Matching refs:parentWindow
494 sp_file_open_dialog(Gtk::Window &parentWindow, gpointer /*object*/, gpointer /*data*/)
551 parentWindow, open_path,
665 file_save(Gtk::Window &parentWindow, SPDocument *doc, const Glib::ustring &uri,
705 return sp_file_save_dialog(parentWindow, doc, save_method);
836 sp_file_save_dialog(Gtk::Window &parentWindow, SPDocument *doc, Inkscape::Extension::FileSaveMethod save_method)
899 parentWindow,
944 success = file_save(parentWindow, doc, fileName, selectionType, TRUE, !is_copy, save_method);
965 sp_file_save_document(Gtk::Window &parentWindow, SPDocument *doc)
975 return sp_file_save_dialog(parentWindow, doc, Inkscape::Extension::FILE_SAVE_METHOD_INKSCAPE_SVG);
989 success = file_save(parentWindow, doc, fn, Inkscape::Extension::db.get(ext.c_str()), FALSE, TRUE, Inkscape::Extension::FILE_SAVE_METHOD_SAVE_AS);
992 return sp_file_save_dialog(parentWindow, doc, Inkscape::Extension::FILE_SAVE_METHOD_INKSCAPE_SVG);
1015 sp_file_save(Gtk::Window &parentWindow, gpointer /*object*/, gpointer /*data*/)
1023 return sp_file_save_document(parentWindow, SP_ACTIVE_DOCUMENT);
1031 sp_file_save_as(Gtk::Window &parentWindow, gpointer /*object*/, gpointer /*data*/)
1036 return sp_file_save_dialog(parentWindow, SP_ACTIVE_DOCUMENT, Inkscape::Extension::FILE_SAVE_METHOD_SAVE_AS);
1045 sp_file_save_a_copy(Gtk::Window &parentWindow, gpointer /*object*/, gpointer /*data*/)
1050 return sp_file_save_dialog(parentWindow, SP_ACTIVE_DOCUMENT, Inkscape::Extension::FILE_SAVE_METHOD_SAVE_COPY);
1291 sp_file_import(Gtk::Window &parentWindow)
1319 // Create new dialog (don't use an old one, because parentWindow has probably changed)
1322 parentWindow,
1398 sp_file_export_dialog(Gtk::Window &parentWindow)
1455 parentWindow,
1484 success = file_save(parentWindow, doc, fileName, selectionType, TRUE, FALSE, Inkscape::Extension::FILE_SAVE_METHOD_EXPORT);
1508 sp_file_export_dialog(Gtk::Window &parentWindow)
1525 sp_file_export_to_ocal_dialog(Gtk::Window &parentWindow)
1572 parentWindow,
1603 success = file_save(parentWindow, doc, filePath, selectionType, FALSE, FALSE, Inkscape::Extension::FILE_SAVE_METHOD_EXPORT);
1625 parentWindow,
1666 sp_file_export_to_ocal(Gtk::Window &parentWindow)
1672 bool success = sp_file_export_to_ocal_dialog(parentWindow);
1729 sp_file_print(Gtk::Window& parentWindow)
1733 sp_print_document(parentWindow, doc);