summaryrefslogtreecommitdiffstats
path: root/src/io/file-export-cmd.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Enhancements for --export-type command line optionPatrick Storz2019-07-101-1/+1
| | | | | | | | | | | Now allows to - export multiple types at once, e.g. using `--export-type=pdf,png` - export to different file name(s) when using `--export-type` by using --export-file option (extension is stripped/added as needed) Also be more lenient with user-specified file extensions in general: Warn the user, however do not abort export but continue with what we would have expected (and the user likely meant to do)
* Remove unused variable.Tavmjong Bah2018-11-251-2/+0
|
* Fix command-line export logic.Tavmjong Bah2018-11-221-0/+2
|
* Allow multiple semi-colon separated entries in --export-id; each entry will ↵Tavmjong Bah2018-11-191-5/+5
| | | | | | | be exported to its own file. Using a semi-colon allows the future possibility of allowing the user to use a comma separated entry to select more than one object to export at the same time.
* Rewrite of main.cpp using InkscapeApplication (Gtk::Application)Tavmjong Bah2018-11-181-0/+79
Use Gio::File for accessing files. Use Gio options to handle command line arguments. Use Gio::Actions for some command line arguments. Move file export code to src/io/file-export-cmd.h/.cpp. Make into class.