summaryrefslogtreecommitdiffstats
path: root/src/style.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Black list some properties that shouldn't appear in default styles.Tavmjong Bah2014-11-081-0/+1
| | | (bzr r13679)
* Update to trunk r13621Liam P. White2014-10-171-0/+16
|\ | | | | (bzr r13341.1.278)
| * Merge hatch rendering code from Tomasz Boczkowski.Tavmjong Bah2014-10-141-0/+16
| |\ | | | | | | (bzr r13614)
| | * Merged src/style.h from svg-paints-support branchTomasz Boczkowski2014-10-141-0/+11
| | | | | | | | | (bzr r13611.1.3)
| | * Merged src/style.h from svg-paints-support branchTomasz Boczkowski2014-10-141-0/+5
| | | | | | | | | (bzr r13611.1.2)
| * | Add 'white-space' CSS property (replaces deprecated xml:space).Tavmjong Bah2014-10-141-13/+27
| |/ | | | | (bzr r13612)
| * Rename 'blend-mode' property to 'mix-blend-mode' per CSS spec.Tavmjong Bah2014-08-011-2/+1
| | | | | | (bzr r13485)
| * Basic support for <solidColor> element (rendering only as a paint server).Tavmjong Bah2014-07-311-0/+5
| | | | | | (bzr r13484)
| * Proper quoting of CSS 'font-family' fallback lists.Tavmjong Bah2014-06-101-0/+2
| | | | | | (bzr r13415)
| * Unquote names in 'font-family' lists. Partial fix for #1029080Tavmjong Bah2014-05-301-1/+3
| | | | | | (bzr r13402)
* | Header cleanup: stop using Glib types where they aren't truly needed. Eases ↵Liam P. White2014-08-311-20/+15
| | | | | | | | | | GThread deprecation errors. (bzr r13341.1.190)
* | Rename 'blend-mode' property to 'mix-blend-mode' per CSS spec.Tavmjong Bah2014-08-011-2/+1
| | | | | | (bzr r13341.1.113)
* | Read CSS Text 3 'white-space' property, SVG 2 <text> 'width', 'height' ↵Tavmjong Bah2014-07-301-13/+27
| | | | | | | | | | attributes. (bzr r13341.1.110)
* | Basic support for <solidColor> element (rendring only as a paint server).Tavmjong Bah2014-07-241-0/+5
| | | | | | (bzr r13341.1.98)
* | Proper quoting of CSS 'font-family' fallback lists.Tavmjong Bah2014-06-101-0/+2
| | | | | | (bzr r13341.1.56)
* | Unquote names in 'font-family' lists. Partial fix for #1029080Tavmjong Bah2014-05-301-1/+3
|/ | | (bzr r13341.1.42)
* Clean up of style code: refactor marker properties. Step 3.Tavmjong Bah2014-04-241-2/+5
| | | (bzr r13301)
* Clean up of style code, removal of SPFontStyle. Step 2.Tavmjong Bah2014-04-241-4/+4
| | | (bzr r13300)
* Clean up of style code, converting structures to C++ classes. Step 1.Tavmjong Bah2014-04-231-55/+107
| | | (bzr r13298)
* Change stroke-dasharray and stroke-dashoffset handling to match other ↵Tavmjong Bah2014-03-111-485/+6
| | | | | | | properties. Split style.h into more manageable size files. (bzr r13135)
* Remove unused includes to tidy up the code.Martin Owens2014-03-091-2/+1
| | | (bzr r13132)
* Read new SVG2 property 'paint-order'.Tavmjong Bah2014-02-181-0/+19
| | | (bzr r13037)
* New CSS blending modes (outside of filters).Tavmjong Bah2013-12-101-0/+29
| | | | | | | 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)
* Move libuemf to a separate directory.Krzysztof Kosi??ski2013-08-311-12/+0
| | | | | Rename libunicode-convert to symbol_convert and put it in libuemf. (bzr r12490)
* changes_2013_05_22a.patch:David Mathog2013-06-191-3/+41
| | | | | | | | | | | | | | | | | | | | | | | | | | | | 1. Resolves issue of bug #988601 message 170 (Support of 'Unset' styles in EMF export). 2. Implements CSS 3 (and CSS 2) text-decoration support. Note that it does not yet provide any method of adding these features - at present it just shows whatever is in the SVG. This new code is also used to display EMF/WMF strike-through and underline text decorations when these files are read in. Those decorations may also be written out to EMF/WMF. Other text decoration features, like overline, or dotted lines, are dropped. For SVG text-decoration -line, -style, -color are all implemented. CSS3 provides two ways to represent the same state, this code uses the compound text-decoration method rather than the 3 fields method. Also it leaves out keywords that are not needed and would break backwards compatibility. For instance: text-decoration: underline solid is valid, but would break CSS2. Solid is the default, so that sort of case is written as: text-decoration: underline If the state is CSS3 specific all of the needed fields are of course include, like text-decoration: underline wavy red 3. It incorporates the fix for bug 1181326 (Text edit mishandles span of just colored spaces) 4. It incorporates further changes to text editing so that style can be changed on spans consisting of only spaces when text decorations are present in the span. 5. It incorporates code to disable text decorations when text so marked is mapped onto a path. 6. Fixed more bugs in Hebrew language support than I can remember. Hebrew language export/import to EMF now works quite well. (See the examples in libTERE v 0.7.) WMF does not support unicode and for all intents and purposes Inkscape has no way to read or write Hebrew to it. Some of more important things that now work that didn't (or didn't always): Hebrew diacritical marks, R/L/center justification, and bidirectional text. The Hebrew fonts "Ezra SIL" and "EZRA SIL SR" should be installed before viewing the libTERE examples, otherwise font substitutions will cause some text shifts. 7. Implemented font failover in Text Reassemble, which makes the process more robust. (Again, see the examples in libTERE. ) (bzr r11668.1.71)
* merge from trunk (r12305)su_v2013-04-271-3/+3
|\ | | | | (bzr r11668.1.68)
| * revert r12297Kris De Gussem2013-04-231-5/+5
| | | | | | (bzr r12302)
| * define booleans as booleans (prevent future errors in comparisons)Kris De Gussem2013-04-221-5/+5
| | | | | | (bzr r12297)
* | merge from trunk (r12272)su_v2013-04-081-0/+36
|\| | | | | (bzr r11668.1.66)
| * Implement read/write of image-rendering property. To be used to control scaling.Tavmjong Bah2013-04-081-0/+36
| | | | | | (bzr r12272)
* | merge from trunk (r12209)su_v2013-03-151-14/+1
|\| | | | | (bzr r11668.1.58)
| * Fix another load of forward declaration tagsAlex Valavanis2013-03-141-3/+1
| | | | | | (bzr r12205)
| * Fix another tonne of forward declaration tagsAlex Valavanis2013-03-141-11/+0
| | | | | | (bzr r12204)
* | merge from trunk (r11698)su_v2012-09-231-1/+1
|\| | | | | (bzr r11668.1.10)
| * some memleak fixes (Bug #1043571)Kris De Gussem2012-09-201-1/+1
| | | | | | (bzr r11686)
* | Fixes bug #988601: omnibus patch for EMF input/output support (cross-platform)su_v2012-09-231-3/+8
|/ | | (bzr r11668.1.8)
* Fix for 168164 : Font size, always output px optionJohn Smith2012-08-211-1/+2
| | | (bzr r11616)
* Fix for 168164 : Font sizes in points optionJohn Smith2012-08-161-1/+4
| | | (bzr r11608)
* Adding checks to prevent null pointer dereferencesKris De Gussem2012-05-041-10/+10
| | | (bzr r11325)
* (cppcheck and janitorial tasks:) C-style casting to C++-style castingKris De Gussem2012-02-051-2/+2
| | | (bzr r10938)
* Cleanup for src/forward.h. (About 19 of the affected files did not require ↵Jon A. Cruz2011-10-051-1/+0
| | | | | the contents forward.h at all). (bzr r10667)
* Add minimal support for reading color-interpolation and ↵Tavmjong Bah2011-08-291-0/+10
| | | | | | | | | | | | | | color-interpolation-filters properties (however, Inkscape assumes sRGB everywhere at the moment). Change color-interpolation-filters from attribute to style property in sp-filter.cpp as it is not allowed as an attribute in a <filter> (it is only allowed as an attribute in filter primitives). Added color-interpolation-filters:sRGB to style when new filter is created in filter-chemistry.cpp. (bzr r10591)
* Merge from trunk to pull in fix for LP #806105Krzysztof Kosi??ski2011-07-131-4/+7
|\ | | | | (bzr r10347.1.13)
| * Allow em and ex as units on font-size.Tavmjong Bah2011-07-101-4/+7
| | | | | | (bzr r10437.1.1)
* | Implement handling of the clip-rule property. Partially based onKrzysztof Kosi??ski2011-07-101-1/+3
|/ | | | | | | | a patch by Andrew Lutomirski. Fixed bugs: - https://launchpad.net/bugs/171243 (bzr r10347.1.8)
* Port of 0.48.x branch revision 9781.Jon A. Cruz2011-05-281-1/+1
| | | | | | | | | | Cleanup of legacy code and casting that was breaking 64-bit gradient use. Fixes bug #743530 and bug #778441. Fixed bugs: - https://launchpad.net/bugs/743530 - https://launchpad.net/bugs/778441 (bzr r10242)
* compatibility patch to compile using gcc 4.6Adib Taraben2011-02-271-0/+1
| | | | | | Fixed bugs: - https://launchpad.net/bugs/707205 (bzr r10070.1.1)
* 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)
* Restore code safety for all but Win32.Jon A. Cruz2010-07-201-3/+6
| | | (bzr r9632)
* fix build broken by 9620Johan B. C. Engelen2010-07-191-3/+3
| | | (bzr r9630)