diff options
| author | Bruno Dilly <bruno.dilly@gmail.com> | 2007-08-06 18:32:13 +0000 |
|---|---|---|
| committer | bdilly <bdilly@users.sourceforge.net> | 2007-08-06 18:32:13 +0000 |
| commit | f006ebdee5b2f29127a152978ac72e41f61ced33 (patch) | |
| tree | d35a9cc73d84182ad90838bcd77cda2e3574679d /src/file.h | |
| parent | Add Gail and Diederik; correct Danilo's name. (diff) | |
| download | inkscape-f006ebdee5b2f29127a152978ac72e41f61ced33.tar.gz inkscape-f006ebdee5b2f29127a152978ac72e41f61ced33.zip | |
adds export to ocal feature without dialog window
(bzr r3398)
Diffstat (limited to 'src/file.h')
| -rw-r--r-- | src/file.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/src/file.h b/src/file.h index 9bff1ca12..33210fabd 100644 --- a/src/file.h +++ b/src/file.h @@ -79,6 +79,23 @@ void sp_file_revert_dialog (); ## S A V E ######################*/ +/* + * Added to make only the local savings. + */ + +bool file_save_local(Gtk::Window &parentWindow, SPDocument *doc, const Glib::ustring &uri, + Inkscape::Extension::Extension *key, bool saveas, bool official); + + +/* + * Added to make only the remote savings. + */ + +bool file_save_remote(SPDocument *doc, const Glib::ustring &uri, + Inkscape::Extension::Extension *key, bool saveas, bool official); + + + /** * */ @@ -135,6 +152,22 @@ void file_import(SPDocument *in_doc, const Glib::ustring &uri, bool sp_file_export_dialog (void *widget); +/*###################### +## E X P O R T T O O C A L +######################*/ + +/** + * Export the current document to OCAL + */ +void sp_file_export_to_ocal (Gtk::Window &parentWindow ); + + +/** + * Export the current document to OCAL + */ +bool sp_file_export_to_ocal_dialog (void *widget); + + /*###################### ## P R I N T |
