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, 2007 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2007 Rob Buis <buis@kde.org> |
4 * Copyright (C) 2009 Google, Inc. All rights reserved. | 4 * Copyright (C) 2009 Google, Inc. All rights reserved. |
5 * Copyright (C) 2009 Apple Inc. All rights reserved. | 5 * Copyright (C) 2009 Apple Inc. All rights reserved. |
6 * | 6 * |
7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 | 61 |
62 virtual bool isOfType(LayoutObjectType type) const override { return type ==
LayoutObjectSVGContainer || LayoutSVGModelObject::isOfType(type); } | 62 virtual bool isOfType(LayoutObjectType type) const override { return type ==
LayoutObjectSVGContainer || LayoutSVGModelObject::isOfType(type); } |
63 virtual void layout() override; | 63 virtual void layout() override; |
64 | 64 |
65 virtual void addChild(LayoutObject* child, LayoutObject* beforeChild = 0) ov
erride final; | 65 virtual void addChild(LayoutObject* child, LayoutObject* beforeChild = 0) ov
erride final; |
66 virtual void removeChild(LayoutObject*) override final; | 66 virtual void removeChild(LayoutObject*) override final; |
67 virtual void addFocusRingRects(Vector<LayoutRect>&, const LayoutPoint& addit
ionalOffset) const override final; | 67 virtual void addFocusRingRects(Vector<LayoutRect>&, const LayoutPoint& addit
ionalOffset) const override final; |
68 | 68 |
69 virtual FloatRect strokeBoundingBox() const override final { return m_stroke
BoundingBox; } | 69 virtual FloatRect strokeBoundingBox() const override final { return m_stroke
BoundingBox; } |
70 | 70 |
71 virtual bool nodeAtFloatPoint(const HitTestRequest&, HitTestResult&, const F
loatPoint& pointInParent, HitTestAction) override; | 71 virtual bool nodeAtFloatPoint(HitTestResult&, const FloatPoint& pointInParen
t, HitTestAction) override; |
72 | 72 |
73 // Allow LayoutSVGTransformableContainer to hook in at the right time in lay
out(). | 73 // Allow LayoutSVGTransformableContainer to hook in at the right time in lay
out(). |
74 virtual bool calculateLocalTransform() { return false; } | 74 virtual bool calculateLocalTransform() { return false; } |
75 | 75 |
76 // Allow LayoutSVGViewportContainer to hook in at the right times in layout(
) and nodeAtFloatPoint(). | 76 // Allow LayoutSVGViewportContainer to hook in at the right times in layout(
) and nodeAtFloatPoint(). |
77 virtual void calcViewport() { } | 77 virtual void calcViewport() { } |
78 virtual bool pointIsInsideViewportClip(const FloatPoint& /*pointInParent*/)
{ return true; } | 78 virtual bool pointIsInsideViewportClip(const FloatPoint& /*pointInParent*/)
{ return true; } |
79 | 79 |
80 virtual void determineIfLayoutSizeChanged() { } | 80 virtual void determineIfLayoutSizeChanged() { } |
81 | 81 |
(...skipping 12 matching lines...) Expand all Loading... |
94 bool m_needsBoundariesUpdate; | 94 bool m_needsBoundariesUpdate; |
95 mutable bool m_hasNonIsolatedBlendingDescendants : 1; | 95 mutable bool m_hasNonIsolatedBlendingDescendants : 1; |
96 mutable bool m_hasNonIsolatedBlendingDescendantsDirty : 1; | 96 mutable bool m_hasNonIsolatedBlendingDescendantsDirty : 1; |
97 }; | 97 }; |
98 | 98 |
99 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutSVGContainer, isSVGContainer()); | 99 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutSVGContainer, isSVGContainer()); |
100 | 100 |
101 } // namespace blink | 101 } // namespace blink |
102 | 102 |
103 #endif // LayoutSVGContainer_h | 103 #endif // LayoutSVGContainer_h |
OLD | NEW |