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/verbs.cpp | |
| 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/verbs.cpp')
| -rw-r--r-- | src/verbs.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/verbs.cpp b/src/verbs.cpp index 41d6fcdcc..38ce87e59 100644 --- a/src/verbs.cpp +++ b/src/verbs.cpp @@ -833,6 +833,9 @@ FileVerb::perform(SPAction *action, void *data, void *pdata) case SP_VERB_FILE_EXPORT: sp_file_export_dialog(NULL); break; + case SP_VERB_FILE_EXPORT_TO_OCAL: + sp_file_export_to_ocal(*parent); + break; case SP_VERB_FILE_NEXT_DESKTOP: inkscape_switch_desktops_next(); break; @@ -2144,6 +2147,7 @@ Verb *Verb::_base_verbs[] = { N_("Import a bitmap or SVG image into this document"), "file_import"), new FileVerb(SP_VERB_FILE_EXPORT, "FileExport", N_("_Export Bitmap..."), N_("Export this document or a selection as a bitmap image"), "file_export"), + new FileVerb(SP_VERB_FILE_EXPORT_TO_OCAL, "FileExportToOCAL", N_("_Export To OCAL"), N_("_Export this document to Open Clip Art Library"), "file_export_to_ocal"), new FileVerb(SP_VERB_FILE_NEXT_DESKTOP, "NextWindow", N_("N_ext Window"), N_("Switch to the next document window"), "window_next"), new FileVerb(SP_VERB_FILE_PREV_DESKTOP, "PrevWindow", N_("P_revious Window"), |
