| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Nikolas Zimmermann <zimmermann@kde
.org> | 2 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Nikolas Zimmermann <zimmermann@kde
.org> |
| 3 * Copyright (C) 2004, 2005, 2006, 2007 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2006, 2007 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 20 matching lines...) Expand all Loading... |
| 31 | 31 |
| 32 namespace blink { | 32 namespace blink { |
| 33 | 33 |
| 34 using SVGUseEventSender = EventSender<SVGUseElement>; | 34 using SVGUseEventSender = EventSender<SVGUseElement>; |
| 35 | 35 |
| 36 class SVGUseElement final : public SVGGraphicsElement, | 36 class SVGUseElement final : public SVGGraphicsElement, |
| 37 public SVGURIReference, | 37 public SVGURIReference, |
| 38 public DocumentResourceClient { | 38 public DocumentResourceClient { |
| 39 | 39 |
| 40 DEFINE_WRAPPERTYPEINFO(); | 40 DEFINE_WRAPPERTYPEINFO(); |
| 41 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(SVGUseElement); | 41 USING_GARBAGE_COLLECTED_MIXIN(SVGUseElement); |
| 42 WILL_BE_USING_PRE_FINALIZER(SVGUseElement, dispose); | 42 USING_PRE_FINALIZER(SVGUseElement, dispose); |
| 43 public: | 43 public: |
| 44 static PassRefPtrWillBeRawPtr<SVGUseElement> create(Document&); | 44 static RawPtr<SVGUseElement> create(Document&); |
| 45 ~SVGUseElement() override; | 45 ~SVGUseElement() override; |
| 46 | 46 |
| 47 void invalidateShadowTree(); | 47 void invalidateShadowTree(); |
| 48 | 48 |
| 49 // Return the element that should be used for clipping, | 49 // Return the element that should be used for clipping, |
| 50 // or null if a valid clip element is not directly referenced. | 50 // or null if a valid clip element is not directly referenced. |
| 51 SVGGraphicsElement* targetGraphicsElementForClipping() const; | 51 SVGGraphicsElement* targetGraphicsElementForClipping() const; |
| 52 | 52 |
| 53 SVGAnimatedLength* x() const { return m_x.get(); } | 53 SVGAnimatedLength* x() const { return m_x.get(); } |
| 54 SVGAnimatedLength* y() const { return m_y.get(); } | 54 SVGAnimatedLength* y() const { return m_y.get(); } |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 void transferUseAttributesToReplacedElement(SVGElement* from, SVGElement* to
) const; | 100 void transferUseAttributesToReplacedElement(SVGElement* from, SVGElement* to
) const; |
| 101 | 101 |
| 102 void invalidateDependentShadowTrees(); | 102 void invalidateDependentShadowTrees(); |
| 103 | 103 |
| 104 bool resourceIsStillLoading() const; | 104 bool resourceIsStillLoading() const; |
| 105 Document* externalDocument() const; | 105 Document* externalDocument() const; |
| 106 bool instanceTreeIsLoading(const SVGElement*); | 106 bool instanceTreeIsLoading(const SVGElement*); |
| 107 void notifyFinished(Resource*) override; | 107 void notifyFinished(Resource*) override; |
| 108 String debugName() const override { return "SVGUseElement"; } | 108 String debugName() const override { return "SVGUseElement"; } |
| 109 TreeScope* referencedScope() const; | 109 TreeScope* referencedScope() const; |
| 110 void setDocumentResource(PassRefPtrWillBeRawPtr<DocumentResource>); | 110 void setDocumentResource(RawPtr<DocumentResource>); |
| 111 | 111 |
| 112 RefPtrWillBeMember<SVGAnimatedLength> m_x; | 112 Member<SVGAnimatedLength> m_x; |
| 113 RefPtrWillBeMember<SVGAnimatedLength> m_y; | 113 Member<SVGAnimatedLength> m_y; |
| 114 RefPtrWillBeMember<SVGAnimatedLength> m_width; | 114 Member<SVGAnimatedLength> m_width; |
| 115 RefPtrWillBeMember<SVGAnimatedLength> m_height; | 115 Member<SVGAnimatedLength> m_height; |
| 116 | 116 |
| 117 bool m_haveFiredLoadEvent; | 117 bool m_haveFiredLoadEvent; |
| 118 bool m_needsShadowTreeRecreation; | 118 bool m_needsShadowTreeRecreation; |
| 119 RefPtrWillBeMember<SVGElement> m_targetElementInstance; | 119 Member<SVGElement> m_targetElementInstance; |
| 120 RefPtrWillBeMember<DocumentResource> m_resource; | 120 Member<DocumentResource> m_resource; |
| 121 }; | 121 }; |
| 122 | 122 |
| 123 } // namespace blink | 123 } // namespace blink |
| 124 | 124 |
| 125 #endif // SVGUseElement_h | 125 #endif // SVGUseElement_h |
| OLD | NEW |