summaryrefslogtreecommitdiffstats
path: root/src/extension/internal (follow)
Commit message (Collapse)AuthorAgeFilesLines
* fix poppler 0.71.0 build.Bartłomiej Szczepaniak2018-11-061-0/+6
|
* remove Inkscape::URI::toStringThomas Holder2018-11-051-3/+1
|
* cleanup: remove Base64OutputStreamThomas Holder2018-10-291-20/+8
| | | | | It was only used in one place. Use "g_base64_encode" instead, like the rest of the codebase.
* Move contents of document-private.h to document.h.Tavmjong Bah2018-10-291-2/+1
|
* Remove 'document-private.h' where not needed plus some other header cleanup.Tavmjong Bah2018-10-225-13/+16
|
* Code cleanup and adding comments.Tavmjong Bah2018-10-172-64/+93
|
* Move some files to 'io' directory.Tavmjong Bah2018-10-131-1/+1
|
* Misc. typosluz.paz2018-10-065-6/+6
| | | Found via `codespell`
* CMake: Allow to build with GraphicsMagick instead of ImageMagickEduard Braun2018-10-021-3/+3
| | | | | | | | | For now we still default to ImageMagick, but we can fall-back to GraphicsMagick (e.g. if only ImageMagick 7 is available; add a check for this). To prefer GraphicsMagick despite a compatible version of ImageMagick use -DWITH_IMAGE_MAGICK=OFF when running CMake
* Move macros.h and remove unneeded macrosEduard Braun2018-10-011-4/+0
|
* Remove #include "config.h" wherever possibleEduard Braun2018-10-0138-90/+45
|
* Use _WIN32 instead of WIN32Eduard Braun2018-10-015-9/+9
| | | | | | | | The former is guaranteed to be set for any compiler targeting win32, the latter is implementation dependent (but works for gcc) See also http://nadeausoftware.com/articles/2012/01/c_c_tip_how_use_compiler_predefined_macros_detect_operating_system
* Improve calls to document_unitsJabier Arraiza2018-09-301-6/+1
|
* use poppler-transition-api instead of ifdefsThomas Holder2018-09-302-702/+208
|
* Purge gunichar from InkscapestreamEduard Braun2018-09-291-2/+2
| | | | | | | | | | None of these functions seems to expect an actual gunichar (which is a 32-bit type and can hold any UTF-32 or UCS-4 character code, also known as a Unicode code point). Instead we want UTF-8 encoded character data (i.e. gchar, which is equivalent to char) that can be output byte-wise to form a valid UTF-8 encoded string.
* fix 1789208 poppler 0.69Thomas Holder2018-09-287-45/+80
|
* Fix PDF bitmap export (inverted y-axis)Thomas Holder2018-09-261-6/+5
| | | | https://bugs.launchpad.net/inkscape/+bug/1794298
* Remove #include "config.h" from header files where possibleEduard Braun2018-09-249-35/+1
|
* fix .odg and .fx export with inverted y-axisThomas Holder2018-09-232-19/+11
|
* Allow ask for SVG dragged import method. Also split ask question from one to ↵Jabier Arraiza2018-09-221-5/+5
| | | | 2 (Bitmap and SVG)
* Fix problems on dialogs with extensions. TODO: Add dialog on drag&drop a SVGJabier Arraiza2018-09-221-15/+9
|
* Fix a bug opening SVG from comand lines related to the DPI changes done. ↵Jabiertxof2018-09-141-2/+2
| | | | Thanks Mark for testing!
* Fix DPI wrong code pointed by McJabiertxof2018-09-131-3/+3
|
* Add per embed/linked SVG a DPI valueJabiertxof2018-09-131-3/+8
|
* fixes and improvementes to power clip and powermaskJabiertxof2018-09-131-15/+0
|
* New option to invert y-axisThomas Holder2018-09-123-14/+11
| | | | | | | | | Replaces all hard coded or implicit desktop coordinate usage with doc2dt multiplication. New global preference: Interface > Origin at upper left https://bugs.launchpad.net/inkscape/+bug/170049
* Modified fix for compatibility with poppler 0.64Eduard Braun2018-09-044-8/+27
| | | | | | | This is slightly uglier than a600c6438fef2f4c06f9a4a7d933d99fb054a973 but avoids duplicating strings (which is unnecessary and leaked memory). It's also closer to what upstream intended with the changes in 0.64.
* Fix opacity of bitmap images in PDF exportEduard Braun2018-08-282-4/+2
| | | | | | | | | | | | This is a follow-up to 1e31c41a0ef4b0f383d4f9d2941f643ae67ca646. As it turns out the same issue also applied to bitmap images embedded in the SVG. Replacing 'cairo_paint_with_alpha()' -> 'cairo_paint()' prevents reducing opacity when rendering the bitmap onto a cairo surface. Opacity should already be properly handled in CairoRenderContext::popLayer()
* Fix opacity of rasterized filters in PDF exportEduard Braun2018-08-281-0/+2
| | | | | | | | | | | | | Opacity was applied thrice: 1. when rendering the filter to a pixbuf (i.e. transparency was baked into the bitmap) 2. when rendering this pixbuf onto a cairo surface 3. when actually rendering the (now doubly opaque) item Avoid 1. and 2. and only apply opacity once. Fixed bug: - https://bugs.launchpad.net/inkscape/+bug/381677
* Fixing coding styleJabier Arraiza2018-08-052-12/+12
|
* Fixes pointed by TavJabier Arraiza2018-08-053-22/+19
|
* Update to trunk and styling fixesJabier Arraiza2018-08-051-10/+10
|
* coding style fixesJabier Arraiza2018-08-054-39/+52
|
* Fixes compiling bugsJabier Arraiza2018-08-052-6/+6
|
* Refactor with Tav helpJabier Arraiza2018-08-057-32/+52
|
* Revert changesJabier Arraiza2018-08-057-222/+40
|
* Allow inkscape handle units and percent in dasharray and dashoffset. Add ↵Jabier Arraiza2018-08-057-40/+222
| | | | pref optional to scale dashes on stroke scale
* Merge branch 'select-page' of gitlab.com:bobqwatson/inkscapeMarc Jeanmougin2018-06-201-0/+2
|\
| * Add command-line option to select PDF pageJoe Rabinoff2018-06-191-0/+2
| | | | | | | | | | | | The optional argument "--pdf-page N" causes Inkscape to import page number N from the pdf document specified on the command line. This functionality is already available when importing via the GUI, but not when batch processing.
* | Replace typedef struct with struct in POD type declarations.Emmanuel Gil Peyrot2018-06-203-60/+49
| |
* | Replace functions with methods in SPColor.Emmanuel Gil Peyrot2018-06-198-32/+32
| |
* | Run clang-tidy’s modernize-redundant-void-arg pass.Emmanuel Gil Peyrot2018-06-1961-160/+160
| |
* | Run clang-tidy’s modernize-use-emplace pass.Emmanuel Gil Peyrot2018-06-181-1/+1
| | | | | | | | | | This reduces the boilerplate required to add a new element to a container.
* | Run clang-tidy’s modernize-use-bool-literals pass.Emmanuel Gil Peyrot2018-06-188-16/+16
|/ | | | | This makes it clearer whether an integer or a boolean has to be passed in this specific call.
* Update pdf-parser.cppMarc Jeanmougin2018-06-181-4/+0
|
* Run clang-tidy’s modernize-deprecated-headers pass.Emmanuel Gil Peyrot2018-06-1817-39/+39
| | | | This renames most C <*.h> includes into C++ <c*> includes.
* Run clang-tidy’s modernize-use-equals-default pass.Emmanuel Gil Peyrot2018-06-1812-16/+15
| | | | | This replaces empty constructors and destructors with the default keyword.
* Run clang-tidy’s modernize-use-nullptr pass.Emmanuel Gil Peyrot2018-06-1850-573/+573
| | | | | This replaces all NULL or 0 with nullptr when assigned to or returned as a pointer.
* Run clang-tidy’s modernize-use-override pass.Emmanuel Gil Peyrot2018-06-1840-210/+210
| | | | | This adds the override specifier on all methods which override a virtual method, whether they were already virtual or missing this specifier.
* Fix compilation with poppler 0.65.0Jan Palus2018-05-251-2/+1
| | | | | | replace unused includes with one that is actually used Signed-off-by: Jan Palus <atler@pld-linux.org>