summaryrefslogtreecommitdiffstats
path: root/src/inkview-application.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-09-19Inkview: Add summary and parameter string to help outputPatrick Storz1-1/+6
2019-09-08Inkview: show error message if there are no valid files and exitPatrick Storz1-7/+13
2019-09-08Inkview: show file chooser dialog if called without argumentsPatrick Storz1-2/+23
2019-06-07Remove _argv0 from Inkscape::ApplicationPatrick Storz1-1/+1
Currently it was only used as the least preferred (and therefore effectively unused) location where to store the crash backup. However it wasn't set properly since 408cb49b5559a81ea803df64bf58457a5dd4bf16 causing assertion errors while crashing. On top of that argv0 is not a reliable way to determine the path to the currently running executable anyway. Fixes https://gitlab.com/inkscape/inkscape/issues/176
2019-03-28ditoPatrick Storz1-0/+4
2018-11-21Add --version option to Inkview.Tavmjong Bah1-0/+7
2018-11-08Clarify licensesMax Gaukler1-2/+9
- add license headers to everything - convert a few files from public domain or LGPL2.1+ to GPL2+ - some archaeology to clarify which files are from which library
2018-11-04Add --preload option.Tavmjong Bah1-1/+7
2018-11-04Rewrite of inkview using InkApplication (Gtk::Application).Tavmjong Bah1-0/+139
Use Gio::File for accessing files. Use Gio options to handle command line arguments. Use Gio::Action's. Use Gtk::Builder for control window. Only create SPDocument when requested for display and then cache it (should speed up start-up).