| 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 * |
| 11 * This library is distributed in the hope that it will be useful, | 11 * This library is distributed in the hope that it will be useful, |
| 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 14 * Library General Public License for more details. | 14 * Library General Public License for more details. |
| 15 * | 15 * |
| 16 * You should have received a copy of the GNU Library General Public License | 16 * You should have received a copy of the GNU Library General Public License |
| 17 * along with this library; see the file COPYING.LIB. If not, write to | 17 * along with this library; see the file COPYING.LIB. If not, write to |
| 18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 19 * Boston, MA 02110-1301, USA. | 19 * Boston, MA 02110-1301, USA. |
| 20 */ | 20 */ |
| 21 | 21 |
| 22 #ifndef LayoutSVGText_h | 22 #ifndef LayoutSVGText_h |
| 23 #define LayoutSVGText_h | 23 #define LayoutSVGText_h |
| 24 | 24 |
| 25 #include "core/layout/svg/LayoutSVGBlock.h" | 25 #include "core/layout/svg/LayoutSVGBlock.h" |
| 26 #include "core/layout/svg/SVGTextLayoutAttributesBuilder.h" | |
| 27 #include "platform/transforms/AffineTransform.h" | 26 #include "platform/transforms/AffineTransform.h" |
| 28 | 27 |
| 29 namespace blink { | 28 namespace blink { |
| 30 | 29 |
| 31 class LayoutSVGInlineText; | 30 class LayoutSVGInlineText; |
| 32 class SVGTextElement; | 31 class SVGTextElement; |
| 32 class SVGTextLayoutAttributes; |
| 33 | 33 |
| 34 class LayoutSVGText final : public LayoutSVGBlock { | 34 class LayoutSVGText final : public LayoutSVGBlock { |
| 35 public: | 35 public: |
| 36 explicit LayoutSVGText(SVGTextElement*); | 36 explicit LayoutSVGText(SVGTextElement*); |
| 37 ~LayoutSVGText() override; | 37 ~LayoutSVGText() override; |
| 38 | 38 |
| 39 bool isChildAllowed(LayoutObject*, const ComputedStyle&) const override; | 39 bool isChildAllowed(LayoutObject*, const ComputedStyle&) const override; |
| 40 | 40 |
| 41 void setNeedsPositioningValuesUpdate() { m_needsPositioningValuesUpdate = tr
ue; } | 41 void setNeedsPositioningValuesUpdate() { m_needsPositioningValuesUpdate = tr
ue; } |
| 42 void setNeedsTransformUpdate() override { m_needsTransformUpdate = true; } | 42 void setNeedsTransformUpdate() override { m_needsTransformUpdate = true; } |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 void invalidateTreeIfNeeded(const PaintInvalidationState&) override; | 78 void invalidateTreeIfNeeded(const PaintInvalidationState&) override; |
| 79 | 79 |
| 80 RootInlineBox* createRootInlineBox() override; | 80 RootInlineBox* createRootInlineBox() override; |
| 81 | 81 |
| 82 void invalidatePositioningValues(LayoutInvalidationReasonForTracing); | 82 void invalidatePositioningValues(LayoutInvalidationReasonForTracing); |
| 83 | 83 |
| 84 bool m_needsReordering : 1; | 84 bool m_needsReordering : 1; |
| 85 bool m_needsPositioningValuesUpdate : 1; | 85 bool m_needsPositioningValuesUpdate : 1; |
| 86 bool m_needsTransformUpdate : 1; | 86 bool m_needsTransformUpdate : 1; |
| 87 bool m_needsTextMetricsUpdate : 1; | 87 bool m_needsTextMetricsUpdate : 1; |
| 88 SVGTextLayoutAttributesBuilder m_layoutAttributesBuilder; | |
| 89 Vector<SVGTextLayoutAttributes*> m_layoutAttributes; | 88 Vector<SVGTextLayoutAttributes*> m_layoutAttributes; |
| 90 }; | 89 }; |
| 91 | 90 |
| 92 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutSVGText, isSVGText()); | 91 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutSVGText, isSVGText()); |
| 93 | 92 |
| 94 } // namespace blink | 93 } // namespace blink |
| 95 | 94 |
| 96 #endif | 95 #endif |
| OLD | NEW |