summaryrefslogtreecommitdiffstats
path: root/src/display (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fix for W3C test suite coords-units-01-b.svg. Fixes pattern positioning.Tavmjong Bah2014-03-041-1/+1
| | | (bzr r13111)
* Fix for W3C test suite filters-displace-01-f.svg. Don't set default ↵Tavmjong Bah2014-03-031-2/+3
| | | | | | | colorspace of external image. Also removed a problematic translation in rendering an internal image. (bzr r13100)
* Hack for when blur or offset are expressed in terms of object bounding box.Tavmjong Bah2014-03-012-7/+30
| | | | | A correct fix requires restructuring the way filter primitives are handled. (bzr r13086)
* Use viewport when calculating filter primitive region when 'primitiveUnits' ↵Tavmjong Bah2014-03-011-34/+19
| | | | | set to "userSpaceOnUse". (bzr r13083)
* Use viewport when calculating filter region when filterUnits set to ↵Tavmjong Bah2014-02-281-8/+15
| | | | | "userSpaceOnUse", fixes #229246. (bzr r13073)
* Copy event with gdk_event_copy instead of assigning to structure by value.Krzysztof Kosi??ski2014-02-281-8/+9
| | | | | | | | | Fixes problems on GTK+/Quartz 2.24.19. For more information, see LP #1198597 and https://bugzilla.gnome.org/show_bug.cgi?id=694273#c33 Fixed bugs: - https://launchpad.net/bugs/1198597 (bzr r13072)
* remove superfluous line of code (vector has just been constructed, so is empty)Johan B. C. Engelen2014-02-271-1/+0
| | | (bzr r13067)
* Move extended input events stuff from desktop-widget.cpp to sp-canvas.cpp,Krzysztof Kosi??ski2014-02-271-1/+6
| | | | | where it belongs (bzr r13062)
* Implement 'paint-order' for shapes (and paths).Tavmjong Bah2014-02-182-29/+110
| | | (bzr r13040)
* Implement 'paint-order' for text.Tavmjong Bah2014-02-181-0/+19
| | | (bzr r13039)
* Copy 'paint-order' property data for Cairo rendering.Tavmjong Bah2014-02-182-1/+37
| | | (bzr r13038)
* DrawingContext: change variable names ct to dc (bug #1272073)David Mathog2014-02-0824-255/+255
| | | | | | Fixed bugs: - https://launchpad.net/bugs/1272073 (bzr r13009)
* Make sure we're not interfering with right or middle click with undo ↵Martin Owens2014-01-231-1/+1
| | | | | prevention bug #168695 (bzr r12974)
* Move dragging undo block from tools-base to canvas. Regarding bug #168695Martin Owens2014-01-212-0/+6
| | | (bzr r12967)
* for rubberband outline, add shading instead of XOR (Bug 1266308)Alvin Penner2014-01-151-1/+12
| | | | | | Fixed bugs: - https://launchpad.net/bugs/1266308 (bzr r12936)
* Prevent segfault if 'tableValues' is empty.Tavmjong Bah2014-01-131-8/+17
| | | (bzr r12922)
* update 2geom's copy to r2142Johan B. C. Engelen2014-01-121-1/+1
| | | (bzr r12921)
* pass class variables by reference for performanceKris De Gussem2014-01-124-12/+12
| | | (bzr r12917)
* glyph drawing: improve codeJohan B. C. Engelen2014-01-081-18/+16
| | | (bzr r12889)
* fix bug (and add parens so we don't rely on operator precedence)Johan B. C. Engelen2014-01-081-1/+1
| | | (bzr r12888)
* Only display snapping tooltip if source / target are defined (LP #1255764)Bryce Harrington2014-01-061-23/+25
| | | (bzr r12883)
* New CSS blending modes (outside of filters).Tavmjong Bah2013-12-102-0/+93
| | | | | | | Define WITH_CSSBLEND to try out. Note: The modes are defined in CSS Compositing and Blending Level 1. To do: GUI. Isolate SVG drawing from Inkscape background (i.e. page border). (bzr r12845)
* New CSS blending and compositing modes.Tavmjong Bah2013-12-053-11/+92
| | | | | | | | Define WITH_CSSBLEND and/or WITH_CSSCOMPOSITE to try out. Note: these new modes are not yet defined to apply to SVG filters in the CSS Compositing and Blending Level 1 or in CSS Filters Level 1 specifications. They are expected to be included in Level 2. (bzr r12837)
* fix C++11 build on Windows, now build finishes without errors with TDM-GCC 4.6.1Johan B. C. Engelen2013-11-131-1/+5
| | | (bzr r12806)
* Partial fix for blocker bug 1163449: "Imported bitmap appear blurry when ↵Tavmjong Bah2013-11-122-7/+22
| | | | | | | | zoomed in" Setting style to include "image-rendering:optimizeSpeed" will cause nearest neighbor filter to be used in downscaling. (bzr r12796)
* Fix for Bug #1249390 (filter with feImage with empty href crashes inkscape).Nicolas Dufour2013-11-111-0/+4
| | | | | | Fixed bugs: - https://launchpad.net/bugs/1249390 (bzr r12790)
* Fix blurry pattern fills on text objects (blocker bug #1005892).Krzysztof Kosi??ski2013-11-012-31/+43
| | | | | | Fixed bugs: - https://launchpad.net/bugs/1005892 (bzr r12760)
* suppress uninitialized variables (x and y) warning, don't ask why... g++'s ↵Johan B. C. Engelen2013-10-291-2/+5
| | | | | warningsystem gives false-positive for many permutations of the code in this function (bzr r12751)
* fix code: prevent cornercase from crashingJohan B. C. Engelen2013-10-291-33/+31
| | | (bzr r12745)
* suppress warningJohan B. C. Engelen2013-10-291-0/+1
| | | (bzr r12744)
* supress some compiler warningsJohan B. C. Engelen2013-10-291-4/+2
| | | (bzr r12743)
* Replace deprecated thread protection macrosAlex Valavanis2013-10-151-5/+1
| | | (bzr r12690)
* cppcheckKris De Gussem2013-10-131-2/+1
| | | (bzr r12680)
* Units: stop newing Unit objects. pass around pointers to "undeletable" Unit ↵Johan B. C. Engelen2013-10-123-24/+25
| | | | | objects in the UnitTable. I think we should move to using indexed units, and pass around the index of the unit in the unittable, or smth like that... ? (bzr r12679)
* Documentation/Translation. Fix for Bug #1236382 (Typos in comments and ↵Nicolas Dufour2013-10-091-1/+1
| | | | | | | | message, localization context needed) by Yuri Chornoivan. Fixed bugs: - https://launchpad.net/bugs/1236382 (bzr r12673)
* Rewrite the internals of the unit code for somewhat better performanceKrzysztof Kosi??ski2013-10-052-11/+11
| | | (bzr r12661)
* Remove unnecessary warningKrzysztof Kosi??ski2013-10-041-1/+0
| | | (bzr r12654)
* Comprehensive fix for the issues with disappearing filtered objects.Krzysztof Kosi??ski2013-10-015-25/+22
| | | | | | | | | Fixes #304407 and possibly a few other bugs. Revert incorrect _item_bbox changes from r12528. Fixed bugs: - https://launchpad.net/bugs/304407 (bzr r12648)
* Fix possible bug in DrawingItem codeKrzysztof Kosi??ski2013-10-011-0/+4
| | | (bzr r12647)
* Revert render svg:patern segment for fill and strokeMartin Owens2013-10-012-3/+3
| | | (bzr r12646)
* Minor improvements to DrawingItem code and documentationKrzysztof Kosi??ski2013-10-011-8/+37
| | | (bzr r12645)
* fix memleakJohan B. C. Engelen2013-09-301-3/+9
| | | (bzr r12633)
* fix leaking of transformsbuliabyak2013-09-281-0/+1
| | | (bzr r12624)
* clear paints on delete to release reffed paintservers, fixes leaking of ↵buliabyak2013-09-281-0/+2
| | | | | gradients (bzr r12623)
* Allow pixmaps to specify their width and height to control/knots. Allows ↵Martin Owens2013-09-282-117/+78
| | | | | non-square nodes. (bzr r12605)
* Use Cairo 1.10 blend operators to render feBlendKrzysztof Kosi??ski2013-09-261-134/+30
| | | (bzr r12600)
* The downscaling fix is already in Cairo trunk.Krzysztof Kosi??ski2013-09-262-120/+4
| | | | | Therefore, remove the image scaling hack from drawing-image.cpp. (bzr r12599)
* Proper fix for bug 1127103 (Filter changes color when object flipped.)Tavmjong Bah2013-09-251-10/+8
| | | (bzr r12590)
* Fix the text filter issue and revert many changes.Martin Owens2013-09-203-9/+15
| | | (bzr r12556)
* Fix type mismatch for platforms where gsize is not unsigned longKrzysztof Kosi??ski2013-09-191-2/+2
| | | (bzr r12537)