summaryrefslogtreecommitdiffstats
path: root/src/sp-mask.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Refactor SPItem bounding box methods: remove NRRect usage and make codeKrzysztof Kosi??ski2011-08-271-20/+12
| | | | | using them more obvious. Fix filter region computation. (bzr r10582.1.1)
* Rewrite NRArena -> Inkscape::Drawing. Call render and updateKrzysztof Kosi??ski2011-08-071-6/+4
| | | | | methods on the Drawing rather than on the root DrawingItem. (bzr r10347.1.25)
* Rewrite NRArenaItem hierarchy into C++Krzysztof Kosi??ski2011-08-061-16/+16
| | | (bzr r10347.1.21)
* Remove more of libnrKrzysztof Kosi??ski2011-06-231-1/+2
| | | (bzr r10347.1.2)
* Merge from trunkKrzysztof Kosi??ski2011-06-191-1/+1
|\ | | | | (bzr r9508.1.89)
| * Removed outdated/unsafe SP_DOCUMENT_DEFS macro and reduced usage of ↵Jon A. Cruz2011-06-041-1/+1
| | | | | | | | | | SP_ROOT() gtk type function/macro. (bzr r10254)
* | Merge from trunkKrzysztof Kosi??ski2011-04-071-21/+20
|\| | | | | (bzr r9508.1.73)
| * Finished cleanup of outated SP_OBJECT_DOCUMENT C macro.Jon A. Cruz2011-02-211-17/+16
| | | | | | (bzr r10060)
| * update to latest 2geom !Johan B. C. Engelen2011-02-021-4/+4
| | | | | | (bzr r10025)
* | Merge from trunk (again)Krzysztof Kosi??ski2010-12-151-70/+65
|\| | | | | (bzr r9508.1.72)
| * Merge and cleanup of GSoC C++-ification project.Jon A. Cruz2010-12-121-70/+65
| |\ | | | | | | (bzr r9945.1.1)
| | * SPObject c++ification finalized along with the beginning of XML ↵Abhishek Sharma Public2010-07-121-2/+2
| | | | | | | | | | | | | | | Privatisation tweaks (bzr r9546.1.6)
| | * another c++ification for sp-object.h/cpp and still in progress...Abhishek Sharma Public2010-07-031-4/+4
| | | | | | | | | (bzr r9546.1.4)
| | * C++fied SPDocument addedAbhishek Sharma Public2010-07-011-2/+2
| | | | | | | | | (bzr r9546.1.2)
| | * This is the first c++ification commit from me. It handles sp-line, ↵Abhishek Sharma Public2010-06-291-5/+4
| | | | | | | | | | | | | | | sp-polyline, sp-item and marks the onset of document c++ification as well. Users can check performace increase with [/usr/bin/time -v inkscape_binary_with_commandline_options]. (bzr r9546.1.1)
* | | Merge from trunkKrzysztof Kosi??ski2010-11-251-1/+1
|\| | | | | | | | (bzr r9508.1.70)
| * | Super duper mega (fun!) commit: replaced encoding=utf-8 with ↵Chris Morgan2010-11-171-1/+1
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | fileencoding=utf-8 in all 1074 Vim modelines. The reason for this is that (a) setting the encoding isn't nice, and (b) Vim 7.3 (with modeline enabled) disallows it and pops up an error whenever you open any file with it ("invalid modeline"). Also corrected five deviant modestrings: * src/ui/widget/dock.cpp and src/ui/widget/dock.h: missing colon at the end * src/ui/dialog/tile.cpp: removed gratuitous second colon at the end * src/helper/units-test.h: removed gratuitous space before a colon * share/extensions/export_gimp_palette.py: missing textwidth=99 That's my geekiest commit yet. (bzr r9900)
* | Wholesale cruft removal part 3Krzysztof Kosi??ski2010-08-041-4/+4
| | | | | | (bzr r9508.1.47)
* | Wholesale cruft removal part 2Krzysztof Kosi??ski2010-08-041-1/+0
|/ | | (bzr r9508.1.45)
* Revert recent refactoring changes by johnce because they break the build, ↵Maximilian Albert2009-08-061-3/+3
| | | | | which cannot be fixed easily. (bzr r8422)
* SPDocument->Documentjohnce2009-08-051-3/+3
| | | (bzr r8404)
* NR -> 2Geom, more h and cpp filesJoshua L. Blocher2008-12-051-2/+2
| | | (bzr r6952)
* Merging from trunkTed Gould2008-10-111-2/+2
| | | (bzr r6884)
* remove extra unref; now ref/unref is done by show/hide; this used to stop ↵bulia byak2008-09-161-2/+0
| | | | | this arenaitem from leaking, but this is now fixed properly in SPItem (bzr r6819)
* plumb XML::Documents in everywhereMenTaLguY2008-06-111-4/+3
| | | (bzr r5884)
* No more NRMatrix or NRPoint.Jasper van de Gronde2008-03-211-8/+7
| | | (bzr r5149)
* Applying fixes for gcc 4.3 build issues (closes LP: #169115)Bryce Harrington2008-01-311-0/+2
| | | (bzr r4629)
* fix warning when creating a mask which is the first item in defsbulia byak2007-03-031-1/+2
| | | (bzr r2516)
* start switching sp_repr_new* over to XML::Document::create*, and rename ↵MenTaLguY2007-01-211-2/+4
| | | | | create methods to match DOM (bzr r2253)
* workaround for 1466515: transforming items in the mask causes their ↵bulia byak2006-05-301-0/+2
| | | | | gradients to fork, and the forked ones are added to defs after the mask, which makes them fail on reload due to bug 989084. Now mask is shifted to the end of defs after the transforms, making sure all its gradients are behind it. (bzr r1091)
* Mask/Clippath transformations on masking/unmaskingAndrius Ramanauskas2006-03-221-2/+8
| | | (bzr r269)
* patch by Andrius R. for (un)clip and (un)mask commandsbulia byak2006-03-191-0/+23
| | | (bzr r263)
* fix property name in init; do the same fix as in SPClipPath to silence ↵bulia byak2006-03-161-4/+13
| | | | | 'update during update' warnings (bzr r253)
* moving trunk for module inkscapeMenTaLguY2006-01-161-0/+375
(bzr r1)