| 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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 virtual void addChild(RenderObject* child, RenderObject* beforeChild = 0) OV
ERRIDE; | 73 virtual void addChild(RenderObject* child, RenderObject* beforeChild = 0) OV
ERRIDE; |
| 74 virtual void removeChild(RenderObject*) OVERRIDE; | 74 virtual void removeChild(RenderObject*) OVERRIDE; |
| 75 virtual void willBeDestroyed() OVERRIDE; | 75 virtual void willBeDestroyed() OVERRIDE; |
| 76 | 76 |
| 77 virtual FloatRect objectBoundingBox() const OVERRIDE { return frameRect(); } | 77 virtual FloatRect objectBoundingBox() const OVERRIDE { return frameRect(); } |
| 78 virtual FloatRect strokeBoundingBox() const OVERRIDE; | 78 virtual FloatRect strokeBoundingBox() const OVERRIDE; |
| 79 | 79 |
| 80 virtual const AffineTransform& localToParentTransform() const OVERRIDE { ret
urn m_localTransform; } | 80 virtual const AffineTransform& localToParentTransform() const OVERRIDE { ret
urn m_localTransform; } |
| 81 virtual RootInlineBox* createRootInlineBox() OVERRIDE; | 81 virtual RootInlineBox* createRootInlineBox() OVERRIDE; |
| 82 | 82 |
| 83 virtual RenderBlock* firstLineBlock() const OVERRIDE; | |
| 84 virtual void updateFirstLetter() OVERRIDE; | |
| 85 | |
| 86 bool shouldHandleSubtreeMutations() const; | 83 bool shouldHandleSubtreeMutations() const; |
| 87 | 84 |
| 88 bool m_needsReordering : 1; | 85 bool m_needsReordering : 1; |
| 89 bool m_needsPositioningValuesUpdate : 1; | 86 bool m_needsPositioningValuesUpdate : 1; |
| 90 bool m_needsTransformUpdate : 1; | 87 bool m_needsTransformUpdate : 1; |
| 91 bool m_needsTextMetricsUpdate : 1; | 88 bool m_needsTextMetricsUpdate : 1; |
| 92 SVGTextLayoutAttributesBuilder m_layoutAttributesBuilder; | 89 SVGTextLayoutAttributesBuilder m_layoutAttributesBuilder; |
| 93 Vector<SVGTextLayoutAttributes*> m_layoutAttributes; | 90 Vector<SVGTextLayoutAttributes*> m_layoutAttributes; |
| 94 }; | 91 }; |
| 95 | 92 |
| 96 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderSVGText, isSVGText()); | 93 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderSVGText, isSVGText()); |
| 97 | 94 |
| 98 } | 95 } |
| 99 | 96 |
| 100 #endif | 97 #endif |
| OLD | NEW |