| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006 Apple Computer, Inc. | 2 * Copyright (C) 2006 Apple Computer, Inc. |
| 3 * Copyright (C) 2007 Nikolas Zimmermann <zimmermann@kde.org> | 3 * Copyright (C) 2007 Nikolas Zimmermann <zimmermann@kde.org> |
| 4 * Copyright (C) Research In Motion Limited 2010-2012. All rights reserved. | 4 * Copyright (C) Research In Motion Limited 2010-2012. All rights reserved. |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 virtual bool isOfType(RenderObjectType type) const override { return type ==
RenderObjectSVGText || RenderSVGBlock::isOfType(type); } | 63 virtual bool isOfType(RenderObjectType type) const override { return type ==
RenderObjectSVGText || RenderSVGBlock::isOfType(type); } |
| 64 | 64 |
| 65 virtual void paint(PaintInfo&, const LayoutPoint&) override; | 65 virtual void paint(PaintInfo&, const LayoutPoint&) override; |
| 66 virtual bool nodeAtFloatPoint(const HitTestRequest&, HitTestResult&, const F
loatPoint& pointInParent, HitTestAction) override; | 66 virtual bool nodeAtFloatPoint(const HitTestRequest&, HitTestResult&, const F
loatPoint& pointInParent, HitTestAction) override; |
| 67 virtual PositionWithAffinity positionForPoint(const LayoutPoint&) override; | 67 virtual PositionWithAffinity positionForPoint(const LayoutPoint&) override; |
| 68 | 68 |
| 69 virtual void layout() override; | 69 virtual void layout() override; |
| 70 | 70 |
| 71 virtual void absoluteQuads(Vector<FloatQuad>&, bool* wasFixed) const overrid
e; | 71 virtual void absoluteQuads(Vector<FloatQuad>&, bool* wasFixed) const overrid
e; |
| 72 | 72 |
| 73 virtual void mapRectToPaintInvalidationBacking(const RenderLayerModelObject*
paintInvalidationContainer, LayoutRect&, const PaintInvalidationState*) const o
verride; | |
| 74 | |
| 75 virtual void addChild(RenderObject* child, RenderObject* beforeChild = 0) ov
erride; | 73 virtual void addChild(RenderObject* child, RenderObject* beforeChild = 0) ov
erride; |
| 76 virtual void removeChild(RenderObject*) override; | 74 virtual void removeChild(RenderObject*) override; |
| 77 virtual void willBeDestroyed() override; | 75 virtual void willBeDestroyed() override; |
| 78 | 76 |
| 79 virtual FloatRect objectBoundingBox() const override { return frameRect(); } | 77 virtual FloatRect objectBoundingBox() const override { return frameRect(); } |
| 80 virtual FloatRect strokeBoundingBox() const override; | 78 virtual FloatRect strokeBoundingBox() const override; |
| 81 | 79 |
| 82 virtual RootInlineBox* createRootInlineBox() override; | 80 virtual RootInlineBox* createRootInlineBox() override; |
| 83 | 81 |
| 84 bool shouldHandleSubtreeMutations() const; | 82 bool shouldHandleSubtreeMutations() const; |
| 85 | 83 |
| 86 bool m_needsReordering : 1; | 84 bool m_needsReordering : 1; |
| 87 bool m_needsPositioningValuesUpdate : 1; | 85 bool m_needsPositioningValuesUpdate : 1; |
| 88 bool m_needsTransformUpdate : 1; | 86 bool m_needsTransformUpdate : 1; |
| 89 bool m_needsTextMetricsUpdate : 1; | 87 bool m_needsTextMetricsUpdate : 1; |
| 90 SVGTextLayoutAttributesBuilder m_layoutAttributesBuilder; | 88 SVGTextLayoutAttributesBuilder m_layoutAttributesBuilder; |
| 91 Vector<SVGTextLayoutAttributes*> m_layoutAttributes; | 89 Vector<SVGTextLayoutAttributes*> m_layoutAttributes; |
| 92 }; | 90 }; |
| 93 | 91 |
| 94 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderSVGText, isSVGText()); | 92 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderSVGText, isSVGText()); |
| 95 | 93 |
| 96 } | 94 } |
| 97 | 95 |
| 98 #endif | 96 #endif |
| OLD | NEW |