summaryrefslogtreecommitdiffstats
path: root/src/object/sp-text.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* fix Glib::Regex::match stack-use-after-scopeThomas Holder2019-11-211-1/+6
| | | | | Fixes cursor jumping mentioned by @nathanal: https://gitlab.com/inkscape/inkscape/issues/521#note_247899536
* refactor: Eliminate SPIString::value_defaultThomas Holder2019-11-031-5/+5
| | | | | | - eliminate value_default - make value private (-> _value) - add value() method
* refactor SPIEnum: more type safetyThomas Holder2019-10-281-1/+1
| | | | | | fixes ungrouping of "font-weight:bolder" fixes "titling-caps" parsing fixes a casting error in CairoRenderContext::renderGlyphtext
* Fix GC warningsMarc Jeanmougin2019-10-101-0/+1
|
* Fix various minor code problemsMarc Jeanmougin2019-10-051-6/+5
|
* Fix some memory leaks found by scan-buildMarc Jeanmougin2019-10-051-4/+4
|
* Active SVG2 Flow Text by defaultJabiertxof2019-09-161-1/+1
|
* Allow paste preserving new lines into a flowtext elementJabiertxof2019-09-161-4/+7
|
* Allow to paste paragraphs in SVG2 Flow then paste overflow the shapeJabiertxof2019-09-131-2/+30
|
* A value of zero for 'inline-size' should act as if 'inline-size' is not set. ↵Tavmjong Bah2019-09-131-4/+5
| | | | Fixes #852.
* Allow transforms in SVG2 flow elementsJabier Arraiza2019-09-071-0/+9
|
* Prepared for beta. Fixed blocking bugJabiertxof2019-09-071-1/+0
|
* Prepare for betaJabiertxof2019-09-071-4/+1
|
* fixx flowbox on SVG2 mode using tspansJabiertxof2019-09-071-2/+10
|
* Write out 'x' and 'y' attribute values to repr when some text property value ↵Tavmjong Bah2019-09-071-0/+1
| | | | | | | changes. Changes to property values may cause text to be relayed out, changing 'x' and 'y' attributes on tspans with sodipodi:role="line". Fix for issue 234.
* Add listeners for when shapes used by text are changed.Tavmjong Bah2019-09-061-27/+21
|
* Refactoring: call setAttribute() directly.Shlomi Fish2019-06-061-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.
* Fix for line positioning in wrapped multi-line text.Tavmjong Bah2019-04-151-0/+5
| | | | | | Bug introduced in 605ef4a43ea0cf89d19d46679e9e0b5bb9e464b2 which applied line correction to all types of text rather than just multi-line text via sodipodi:role = "line".
* Misc. typosluz.paz2019-03-261-3/+3
| | | Found via `codespell`
* Fix text rendering when Inkscape multi-line text has an empty first line.Tavmjong Bah2019-03-231-3/+43
| | | | Possible fix for GitLab issue #45.
* modernize loopsMarc Jeanmougin2019-01-021-21/+19
|
* Round-trip SVG 2 flowed text with SVG 1.1 backup.Tavmjong Bah2018-12-141-49/+284
|
* Clarify licensesMax Gaukler2018-11-081-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
* SPAttributeEnum typed function argumentsThomas Holder2018-10-061-1/+1
|
* Fix rendering when a <tspan> has a CSS 'display' property with value 'none'.Tavmjong Bah2018-08-271-0/+5
|
* Ignore 'x' and 'y' attributes on SVG 2 wrapped text (except first for ↵Tavmjong Bah2018-06-211-179/+222
| | | | | | 'inline-size'). Some additinal refactoring.
* 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-equals-default pass.Emmanuel Gil Peyrot2018-06-181-2/+1
| | | | | This replaces empty constructors and destructors with the default keyword.
* Run clang-tidy’s modernize-use-nullptr pass.Emmanuel Gil Peyrot2018-06-181-19/+19
| | | | | This replaces all NULL or 0 with nullptr when assigned to or returned as a pointer.
* Revert "Fix include order with clang-tidy check llvm-include-order"Marc Jeanmougin2018-05-041-9/+9
| | | | This reverts commit bba4ff6672494fab59286b50f6c645ad62a47e60.
* Fix include order with clang-tidy check llvm-include-orderMarc Jeanmougin2018-04-291-9/+9
|
* Remove some documents updatesJabier Arraiza2018-04-231-2/+0
|
* a bit more of warning cleanupFelipe Corrêa da Silva Sanches2018-03-281-1/+1
|
* a few more fixes to build warnings related to libnrtypeFelipe Corrêa da Silva Sanches2018-03-271-2/+2
|
* Fixed more trivial typosluz.paz2018-03-121-1/+1
| | | Via `codespell` and `grep`
* Move classes derived from SPObject to own directory.Tavmjong Bah2018-01-301-0/+1279
A lot of header clean-up.