summaryrefslogtreecommitdiffstats
path: root/src/extension/internal/pdfinput/svg-builder.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Removed outdated/unsafe SP_DOCUMENT_DEFS macro and reduced usage of ↵Jon A. Cruz2011-06-041-5/+5
| | | | | SP_ROOT() gtk type function/macro. (bzr r10254)
* Finished cleanup of outdated SP_OBJECT_REPR C macro.Jon A. Cruz2011-02-221-5/+5
| | | (bzr r10067)
* update to latest 2geom !Johan B. C. Engelen2011-02-021-8/+8
| | | (bzr r10025)
* Merge and cleanup of GSoC C++-ification project.Jon A. Cruz2010-12-121-2/+4
|\ | | | | (bzr r9945.1.1)
* | Applied patch and updated to address non-BMP Unicode charcters. Fixes bug ↵Jon A. Cruz2010-10-031-16/+19
|/ | | | | | | | #369861. Fixed bugs: - https://launchpad.net/bugs/369861 (bzr r9812)
* Patches 3-11 from 488862 for a number of memleaks and ↵Josh Andler2009-12-161-2/+2
| | | | | allocation/deallocation issues. (bzr r8891)
* Revert recent refactoring changes by johnce because they break the build, ↵Maximilian Albert2009-08-061-1/+1
| | | | | which cannot be fixed easily. (bzr r8422)
* SPDocument->Documentjohnce2009-08-051-1/+1
| | | (bzr r8408)
* patch 179589 with UI added: optionally, try to replace a font name specified ↵bulia byak2009-04-151-7/+87
| | | | | in PDF with the closest-named local installed font (since we do not extract any fonts, nor can we embed them into svg) (bzr r7718)
* patch by KoRi for 324938bulia byak2009-02-111-1/+2
| | | (bzr r7272)
* Move filters into their own namespace Inkscape::Filters (from NR::)Johan B. C. Engelen2009-01-021-3/+4
| | | (bzr r7058)
* get rid of a lot of no longer needed "libnr/nr-..." includes.Johan B. C. Engelen2008-12-301-1/+0
| | | (bzr r7045)
* From trunkTed Gould2008-10-271-1/+3
| | | (bzr r6885)
* NR:: to Geom:: for most of src/extension/Johan B. C. Engelen2008-08-121-15/+15
| | | (bzr r6612)
* warning cleanupFelipe Corr??a da Silva Sanches2008-07-121-30/+30
| | | (bzr r6282)
* Applying Gail's patch for font-specificationBryce Harrington2008-01-051-1/+8
| | | | | | | | | | | | | | | | | | | (Closes LP: #169973) - New attribute in an object's style string called -inkscape-font-specification stores full font name - This will be useful when we can support fonts that don't fit into the confines of CSS (if either pango enhances their PangoFontDescription structure, or we can get around its limitations) - Framework in place to separate font families from their "styles" (faces) in the text and font dialog - need only the code that does the actual separation - Text and Styles dialog shows only fonts it can handle (bzr r4392)
* noop: (SvgBuilder::setTransform): Mark argument as not being written through.Peter Moulder2007-09-161-1/+1
| | | (bzr r3763)
* Avoid transforming a group with an already set clip-pathmiklosh2007-08-231-0/+4
| | | (bzr r3570)
* Fixed some compiler warningsmiklosh2007-08-191-13/+7
| | | (bzr r3537)
* Remove the clipping path emitted before the 'sh' operator since that same ↵miklosh2007-08-191-0/+21
| | | | | path is filled later (bzr r3535)
* Corrected image mask generationmiklosh2007-08-191-28/+14
| | | (bzr r3529)
* Added a PDF import settings dialogmiklosh2007-08-191-2/+9
| | | (bzr r3523)
* Moved the code for updating the text matrix to where it belongsmiklosh2007-08-171-26/+26
| | | (bzr r3493)
* Optimized text output by not repeating glyph coordinates when they are identicalmiklosh2007-08-171-2/+20
| | | (bzr r3492)
* Added initial transparency group and softmask supportmiklosh2007-08-171-7/+116
| | | (bzr r3491)
* Added a clip path stack for PdfParser and a node stack for SvgBuilder needed ↵miklosh2007-08-131-15/+37
| | | | | for mask support later (bzr r3458)
* Reworked gradient handling to support all shading color spacesmiklosh2007-08-091-109/+77
| | | (bzr r3442)
* Added support for the shading operatormiklosh2007-08-091-10/+49
| | | (bzr r3439)
* Added support for exponential functions in gradientsmiklosh2007-08-091-20/+54
| | | (bzr r3437)
* Set the even-odd clipping rule if requestedmiklosh2007-08-091-3/+3
| | | (bzr r3436)
* Forgot to advance text position when skipping the first spacemiklosh2007-07-301-0/+2
| | | (bzr r3351)
* Type3 fonts do not have a name set so default to 'Arial'miklosh2007-07-301-1/+3
| | | (bzr r3350)
* Added image mask supportmiklosh2007-07-301-5/+158
| | | (bzr r3349)
* Do not flip non-top-level imagesmiklosh2007-07-301-4/+6
| | | (bzr r3348)
* Do not set inkscape:groupmode for sub-page objects (eg. patterns)miklosh2007-07-301-1/+3
| | | (bzr r3347)
* Use the font matrix for Type3 fonts onlymiklosh2007-07-301-4/+7
| | | (bzr r3346)
* Set top-level groups as layers with the name of the PDF documentmiklosh2007-07-281-1/+24
| | | (bzr r3330)
* Reworked text state handling so that now SvgBuilder keeps track of the ↵miklosh2007-07-281-15/+55
| | | | | current text position (bzr r3329)
* Reworked text output to create <text> nodes on text matrix changes rather ↵miklosh2007-07-251-27/+46
| | | | | than on every font update (bzr r3299)
* Modified CSS font style and text matrix setting to work with TrueType fontsmiklosh2007-07-241-8/+12
| | | (bzr r3291)
* Set the xml:space attribute on <svg> once rather than on every <text>miklosh2007-07-241-1/+1
| | | (bzr r3290)
* Added tiling pattern supportmiklosh2007-07-231-7/+68
| | | (bzr r3283)
* Added some heuristics to set CSS font-style and font-weight from PDF font ↵miklosh2007-07-221-1/+44
| | | | | names when these properties are not available from poppler (bzr r3278)
* Added xml:space=preserve attribute on <text> nodes and sodipodi:role=line ↵miklosh2007-07-221-0/+2
| | | | | attribute on <tspan> nodes to ease text editing (bzr r3274)
* Use the #RRGGBB color format instead of rgb() since most extensions don't ↵miklosh2007-07-221-4/+5
| | | | | support the latter (bzr r3273)
* Further development of the PDF import module: continued pruning of ↵miklosh2007-07-211-130/+720
| | | | | | | PdfParser.cpp, added basic text and image support and did some coding style adjustments. (bzr r3272)
* Initial commit of native poppler-based PDF import.miklosh2007-07-121-0/+608
(bzr r3230)