summaryrefslogtreecommitdiffstats
path: root/src/object/sp-path.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-11-03refactor: Eliminate SPIString::value_defaultThomas Holder1-2/+2
- eliminate value_default - make value private (-> _value) - add value() method
2019-06-06Refactoring: call setAttribute() directly.Shlomi Fish1-1/+1
Call this->setAttribute(...) directly instead of this->getRepr()->setAttribute(...). This avoids clutter and mental indirection. See http://wiki.inkscape.org/wiki/index.php?title=Refactoring_projects&oldid=112116 and https://en.wikipedia.org/wiki/Law_of_Demeter . --- I hereby disclaim any implicit or explicit ownership of my changes in this changeset, and put them under a multiple licence consisting of your choice of one of more of: - The CC0 / Public Domain - https://creativecommons.org/choose/zero/ . - The MIT / Expat license - https://en.wikipedia.org/wiki/MIT_License - The default licence of your project - The https://en.wikipedia.org/wiki/GNU_Lesser_General_Public_License - version 2.1 or higher - The https://en.wikipedia.org/wiki/GNU_General_Public_License - version 2 or higher - Any licence in the 2018-Aug-27 popular licenses list of https://opensource.org/licenses - The https://en.wikipedia.org/wiki/Apache_License version 2.0 or later - The https://en.wikipedia.org/wiki/Artistic_License version 2.0 or later - The https://en.wikipedia.org/wiki/ISC_license - The https://opensource.org/licenses/BSD-2-Clause Crediting me will be nice, but not mandatory, and you can change the licence of the project without needing my permission.
2019-01-02modernize loopsMarc Jeanmougin1-4/+4
2018-12-21Allow edit LPE on nestad groupsJabiertxof1-1/+1
2018-12-15Remove unused transform functions related to LPE and improvements to ↵Jabier Arraiza1-14/+1
fill-betreen-* LPEs
2018-11-08Clarify licensesMax Gaukler1-1/+2
- 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-06Update to latest syntax for 'd' as property.Tavmjong Bah1-15/+35
2018-10-06SPAttributeEnum typed function argumentsThomas Holder1-1/+1
2018-10-02Fixes for LPE transforms and a bug when closing inkscape, related to ↵Jabiertxof1-4/+1
lpeobject-reference
2018-10-01Remove #include "config.h" wherever possibleEduard Braun1-4/+0
2018-10-01Fix for bug #263620 comment 5,Jabier Arraiza1-10/+6
Duplicating LPE path more like clone
2018-10-01Improvements to transforms in LPEJabier Arraiza1-6/+10
2018-09-29Fix for bug: #1791784 LPE path effect undo does not workJabier Arraiza1-2/+7
2018-09-13fixes and improvementes to power clip and powermaskJabiertxof1-0/+1
2018-06-18Run clang-tidy’s modernize-use-emplace pass.Emmanuel Gil Peyrot1-1/+1
This reduces the boilerplate required to add a new element to a container.
2018-06-18Run clang-tidy’s modernize-use-equals-default pass.Emmanuel Gil Peyrot1-2/+1
This replaces empty constructors and destructors with the default keyword.
2018-06-18Run clang-tidy’s modernize-use-nullptr pass.Emmanuel Gil Peyrot1-9/+9
This replaces all NULL or 0 with nullptr when assigned to or returned as a pointer.
2018-05-04Revert "Fix include order with clang-tidy check llvm-include-order"Marc Jeanmougin1-6/+6
This reverts commit bba4ff6672494fab59286b50f6c645ad62a47e60.
2018-04-29Fix include order with clang-tidy check llvm-include-orderMarc Jeanmougin1-6/+6
2018-04-23Fixing LPE recalculations warnings on updateJabier Arraiza1-1/+1
2018-04-23Fix warings on updatesJabier Arraiza1-2/+4
2018-04-23Remove some documents updatesJabier Arraiza1-3/+0
2018-04-21Fixes for d promote to propertyJabier Arraiza1-37/+33
2018-03-28Fix bug: 1758477Jabier Arraiza1-1/+0
Rotate Duplicate/ Mirror Symmetry added functionality feature request https://bugs.launchpad.net/inkscape/+bug/1758477
2018-03-26Base LPE refactorJabier Arraiza1-129/+6
2018-03-07Promote the path 'd' attribute to a property per SVG 2. Try 2.Tavmjong Bah1-0/+36
See e88644b0 for first attempt and for comments.
2018-02-18Revert "Promote the path 'd' attribute to a property per SVG 2."Tavmjong Bah1-62/+17
Needs further testing. This reverts commit e88644b0f3481c78a9563dbf9ee6b76ab6674583.
2018-02-13Promote the path 'd' attribute to a property per SVG 2.Tavmjong Bah1-17/+62
This allows 'd' to be animated via CSS animations. Due to the interactions of 'd' with LPE's, 'd' as a property is converted to 'd' as an attribute in SPPath::update. This changes the XML which causes update() to be called again (and triggers a warning). Fixing this is left to a future patch as is converting the 'd' back to a property on output.
2018-02-06Remove unused include.Tavmjong Bah1-1/+0
2018-01-30Move classes derived from SPObject to own directory.Tavmjong Bah1-0/+0
A lot of header clean-up.
2018-01-08Misc. typosluz.paz1-1/+1
Found via `codespell`
2017-09-13Fixes for clone original LPEJabiertxo Arraiza Cenoz1-0/+1
2017-06-24Working with powerclip and powermaskJabier Arraiza1-2/+1
2017-02-21Improvements to fill between strokes and fill between many LPE'sJabier Arraiza Cenoz1-1/+6
(bzr r15537)
2017-01-24update to trunkJabier Arraiza Cenoz1-16/+15
(bzr r15356.1.18)
2017-01-02Remove clone original codeJabiertxof1-16/+15
(bzr r15295.1.47)
2017-01-01Fixing transforms,clips...Jabiertxof1-13/+14
(bzr r15356.1.8)
2016-12-28First attemp workingJabiertxof1-2/+2
(bzr r15356.1.1)
2016-12-06Fixes for measure LPE and speed path based LPE operationsJabiertxof1-31/+31
(bzr r15302)
2016-08-03Removed unused includes, decreased compilation time. Once againAdrian Boguszewski1-3/+1
(bzr r15034)
2016-07-28Reverted changes to r15024 after many building problemsAdrian Boguszewski1-1/+3
(bzr r15027)
2016-07-28Removed unused includes, decrease compilation timeAdrian Boguszewski1-3/+1
(bzr r15025)
2015-09-08Fix for bug 179842Jabier Arraiza Cenoz1-1/+2
Fixed bugs: - https://launchpad.net/bugs/179842 (bzr r14352)
2015-04-272Geom sync - initial commitKrzysztof Kosi??ski1-2/+1
(bzr r14059.2.1)
2015-02-28Workaround for bug #1426090 (more LPE nastiness)Liam P. White1-4/+30
Fixed bugs: - https://launchpad.net/bugs/1426090 (bzr r13954)
2015-02-25create SPObject factoryLiam P. White1-10/+0
(bzr r13939.1.1)
2014-12-21Remove sp_desktop_document and finish cleanup of desktop-handles.hLiam P. White1-1/+1
(bzr r13820)
2014-07-28fix build. gcc 4.6.1 does not like double parens here :/Johan B. C. Engelen1-1/+1
(bzr r13480)
2014-07-28Don't update path effects on document load (#1299948)Liam P. White1-2/+15
Fixed bugs: - https://launchpad.net/bugs/1299948 (bzr r13479)
2014-06-27Remove the incorrect fix for the bug 1241902Jabier Arraiza Cenoz1-2/+0
(bzr r13441)