| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2007 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2007 Nikolas Zimmermann <zimmermann@kde.org> |
| 3 * Copyright (C) 2004, 2005, 2006 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2006 Rob Buis <buis@kde.org> |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 #include "core/svg/SVGAnimatedInteger.h" | 25 #include "core/svg/SVGAnimatedInteger.h" |
| 26 #include "core/svg/SVGAnimatedNumber.h" | 26 #include "core/svg/SVGAnimatedNumber.h" |
| 27 #include "core/svg/SVGAnimatedNumberOptionalNumber.h" | 27 #include "core/svg/SVGAnimatedNumberOptionalNumber.h" |
| 28 #include "core/svg/SVGFilterPrimitiveStandardAttributes.h" | 28 #include "core/svg/SVGFilterPrimitiveStandardAttributes.h" |
| 29 #include "platform/graphics/filters/FETurbulence.h" | 29 #include "platform/graphics/filters/FETurbulence.h" |
| 30 #include "platform/heap/Handle.h" | 30 #include "platform/heap/Handle.h" |
| 31 | 31 |
| 32 namespace blink { | 32 namespace blink { |
| 33 | 33 |
| 34 enum SVGStitchOptions { | 34 enum SVGStitchOptions { |
| 35 SVG_STITCHTYPE_UNKNOWN = 0, | 35 kSvgStitchtypeUnknown = 0, |
| 36 SVG_STITCHTYPE_STITCH = 1, | 36 kSvgStitchtypeStitch = 1, |
| 37 SVG_STITCHTYPE_NOSTITCH = 2 | 37 kSvgStitchtypeNostitch = 2 |
| 38 }; | 38 }; |
| 39 template<> const SVGEnumerationStringEntries& getStaticStringEntries<SVGStitchOp
tions>(); | 39 template<> const SVGEnumerationStringEntries& getStaticStringEntries<SVGStitchOp
tions>(); |
| 40 | 40 |
| 41 template<> const SVGEnumerationStringEntries& getStaticStringEntries<TurbulenceT
ype>(); | 41 template<> const SVGEnumerationStringEntries& getStaticStringEntries<TurbulenceT
ype>(); |
| 42 | 42 |
| 43 class SVGFETurbulenceElement final : public SVGFilterPrimitiveStandardAttributes
{ | 43 class SVGFETurbulenceElement final : public SVGFilterPrimitiveStandardAttributes
{ |
| 44 DEFINE_WRAPPERTYPEINFO(); | 44 DEFINE_WRAPPERTYPEINFO(); |
| 45 public: | 45 public: |
| 46 DECLARE_NODE_FACTORY(SVGFETurbulenceElement); | 46 DECLARE_NODE_FACTORY(SVGFETurbulenceElement); |
| 47 | 47 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 64 Member<SVGAnimatedNumberOptionalNumber> m_baseFrequency; | 64 Member<SVGAnimatedNumberOptionalNumber> m_baseFrequency; |
| 65 Member<SVGAnimatedNumber> m_seed; | 65 Member<SVGAnimatedNumber> m_seed; |
| 66 Member<SVGAnimatedEnumeration<SVGStitchOptions>> m_stitchTiles; | 66 Member<SVGAnimatedEnumeration<SVGStitchOptions>> m_stitchTiles; |
| 67 Member<SVGAnimatedEnumeration<TurbulenceType>> m_type; | 67 Member<SVGAnimatedEnumeration<TurbulenceType>> m_type; |
| 68 Member<SVGAnimatedInteger> m_numOctaves; | 68 Member<SVGAnimatedInteger> m_numOctaves; |
| 69 }; | 69 }; |
| 70 | 70 |
| 71 } // namespace blink | 71 } // namespace blink |
| 72 | 72 |
| 73 #endif // SVGFETurbulenceElement_h | 73 #endif // SVGFETurbulenceElement_h |
| OLD | NEW |