summaryrefslogtreecommitdiffstats
path: root/src/io/file-export-cmd.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-08-31Refactor a lot of the parameter handling codePatrick Storz1-8/+7
Many fixes, improvements and simplifications to existing code. Implements the first part of the changes discussed in https://gitlab.com/inkscape/inkscape/issues/333
2019-08-18reduce usage of desktop coordinates (#341)Thomas Holder1-1/+1
- avoid unnecessary internal usage of desktop coordinates, e.g. in SpellCheck::compareTextBboxes - document whether a function argument is in document or desktop coordinates, e.g. for SPDocument::getItemsInBox
2019-07-10Enhancements for --export-type command line optionPatrick Storz1-67/+68
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)
2019-07-10Correct a typoMehran-Baghi1-1/+1
2019-06-19Simplify piping through Inkscape. Reduce code duplication.Tavmjong Bah1-0/+5
2019-04-06More document.h cleanup.Tavmjong Bah1-1/+1
2019-02-20Give more descriptive names to document file related variables and functions.Tavmjong Bah1-2/+2
Makes searching through code for them easier.
2019-01-02run clang tidy modernize passMarc Jeanmougin1-3/+3
2018-12-13Misc. source comment typo fixesluz.paz1-3/+3
Found via `codespell`
2018-12-03Fix rendering tests (Launchpad bug 1805804).Tavmjong Bah1-1/+1
2018-11-25Remove unused variable.Tavmjong Bah1-2/+1
2018-11-22Untangle do_export_png().Tavmjong Bah1-113/+118
2018-11-22Rearrange some code, don't quit if one object doesn't export.Tavmjong Bah1-34/+34
2018-11-22Fix command-line export logic.Tavmjong Bah1-69/+69
2018-11-19Possible fix to build breakage on Macs.Tavmjong Bah1-1/+1
2018-11-19Send background color/dpi info to std::cerr to allow piping PNG export to file.Tavmjong Bah1-3/+3
2018-11-19Possible fix to MAC build failure.Tavmjong Bah1-1/+1
2018-11-19Allow multiple semi-colon separated entries in --export-id; each entry will ↵Tavmjong Bah1-278/+342
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.
2018-11-18Rewrite of main.cpp using InkscapeApplication (Gtk::Application)Tavmjong Bah1-0/+678
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.
2018-11-12Rewrite of main.cpp using InkscapeApplication (Gtk::Application)Tavmjong Bah1-0/+678
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.