| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2006, 2007 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2006, 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, |
| 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 13 * Library General Public License for more details. | 13 * Library General Public License for more details. |
| 14 * | 14 * |
| 15 * You should have received a copy of the GNU Library General Public License | 15 * You should have received a copy of the GNU Library General Public License |
| 16 * along with this library; see the file COPYING.LIB. If not, write to | 16 * along with this library; see the file COPYING.LIB. If not, write to |
| 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 18 * Boston, MA 02110-1301, USA. | 18 * Boston, MA 02110-1301, USA. |
| 19 */ | 19 */ |
| 20 | 20 |
| 21 #ifndef SVGFilterPrimitiveStandardAttributes_h | 21 #ifndef SVGFilterPrimitiveStandardAttributes_h |
| 22 #define SVGFilterPrimitiveStandardAttributes_h | 22 #define SVGFilterPrimitiveStandardAttributes_h |
| 23 | 23 |
| 24 #include "core/rendering/svg/RenderSVGResource.h" | |
| 25 #include "core/svg/SVGAnimatedLength.h" | 24 #include "core/svg/SVGAnimatedLength.h" |
| 26 #include "core/svg/SVGAnimatedString.h" | 25 #include "core/svg/SVGAnimatedString.h" |
| 27 #include "core/svg/SVGElement.h" | 26 #include "core/svg/SVGElement.h" |
| 28 #include "wtf/PassRefPtr.h" | 27 #include "wtf/PassRefPtr.h" |
| 29 #include "wtf/RefPtr.h" | 28 #include "wtf/RefPtr.h" |
| 30 | 29 |
| 31 namespace blink { | 30 namespace blink { |
| 32 | 31 |
| 33 class Filter; | 32 class Filter; |
| 34 class FilterEffect; | 33 class FilterEffect; |
| (...skipping 18 matching lines...) Expand all Loading... |
| 53 SVGAnimatedString* result() const { return m_result.get(); } | 52 SVGAnimatedString* result() const { return m_result.get(); } |
| 54 | 53 |
| 55 protected: | 54 protected: |
| 56 SVGFilterPrimitiveStandardAttributes(const QualifiedName&, Document&); | 55 SVGFilterPrimitiveStandardAttributes(const QualifiedName&, Document&); |
| 57 | 56 |
| 58 bool isSupportedAttribute(const QualifiedName&); | 57 bool isSupportedAttribute(const QualifiedName&); |
| 59 virtual void parseAttribute(const QualifiedName&, const AtomicString&) overr
ide; | 58 virtual void parseAttribute(const QualifiedName&, const AtomicString&) overr
ide; |
| 60 virtual void svgAttributeChanged(const QualifiedName&) override; | 59 virtual void svgAttributeChanged(const QualifiedName&) override; |
| 61 virtual void childrenChanged(const ChildrenChange&) override; | 60 virtual void childrenChanged(const ChildrenChange&) override; |
| 62 | 61 |
| 63 inline void invalidate() | 62 void invalidate(); |
| 64 { | |
| 65 if (RenderObject* primitiveRenderer = renderer()) | |
| 66 RenderSVGResource::markForLayoutAndParentResourceInvalidation(primit
iveRenderer); | |
| 67 } | |
| 68 | |
| 69 void primitiveAttributeChanged(const QualifiedName&); | 63 void primitiveAttributeChanged(const QualifiedName&); |
| 70 | 64 |
| 71 private: | 65 private: |
| 72 virtual bool isFilterEffect() const override final { return true; } | 66 virtual bool isFilterEffect() const override final { return true; } |
| 73 | 67 |
| 74 virtual RenderObject* createRenderer(RenderStyle*) override final; | 68 virtual RenderObject* createRenderer(RenderStyle*) override final; |
| 75 virtual bool rendererIsNeeded(const RenderStyle&) override final; | 69 virtual bool rendererIsNeeded(const RenderStyle&) override final; |
| 76 | 70 |
| 77 RefPtr<SVGAnimatedLength> m_x; | 71 RefPtr<SVGAnimatedLength> m_x; |
| 78 RefPtr<SVGAnimatedLength> m_y; | 72 RefPtr<SVGAnimatedLength> m_y; |
| 79 RefPtr<SVGAnimatedLength> m_width; | 73 RefPtr<SVGAnimatedLength> m_width; |
| 80 RefPtr<SVGAnimatedLength> m_height; | 74 RefPtr<SVGAnimatedLength> m_height; |
| 81 RefPtr<SVGAnimatedString> m_result; | 75 RefPtr<SVGAnimatedString> m_result; |
| 82 }; | 76 }; |
| 83 | 77 |
| 84 void invalidateFilterPrimitiveParent(SVGElement*); | 78 void invalidateFilterPrimitiveParent(SVGElement*); |
| 85 | 79 |
| 86 } // namespace blink | 80 } // namespace blink |
| 87 | 81 |
| 88 #endif // SVGFilterPrimitiveStandardAttributes_h | 82 #endif // SVGFilterPrimitiveStandardAttributes_h |
| OLD | NEW |