| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006 Oliver Hunt <ojh16@student.canterbury.ac.nz> | 2 * Copyright (C) 2006 Oliver Hunt <ojh16@student.canterbury.ac.nz> |
| 3 * Copyright (C) 2006 Apple Computer Inc. | 3 * Copyright (C) 2006 Apple Computer Inc. |
| 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, |
| 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 13 * Library General Public License for more details. | 13 * Library General Public License for more details. |
| 14 * | 14 * |
| 15 * You should have received a copy of the GNU Library General Public License | 15 * You should have received a copy of the GNU Library General Public License |
| 16 * along with this library; see the file COPYING.LIB. If not, write to | 16 * along with this library; see the file COPYING.LIB. If not, write to |
| 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 18 * Boston, MA 02110-1301, USA. | 18 * Boston, MA 02110-1301, USA. |
| 19 */ | 19 */ |
| 20 | 20 |
| 21 #ifndef SVGInlineFlowBox_h | 21 #ifndef SVGInlineFlowBox_h |
| 22 #define SVGInlineFlowBox_h | 22 #define SVGInlineFlowBox_h |
| 23 | 23 |
| 24 #include "core/layout/line/FloatToLayoutUnit.h" | |
| 25 #include "core/layout/line/InlineFlowBox.h" | 24 #include "core/layout/line/InlineFlowBox.h" |
| 26 | 25 |
| 27 namespace blink { | 26 namespace blink { |
| 28 | 27 |
| 29 class SVGInlineFlowBox final : public InlineFlowBox { | 28 class SVGInlineFlowBox final : public InlineFlowBox { |
| 30 public: | 29 public: |
| 31 SVGInlineFlowBox(LayoutObject& obj) | 30 SVGInlineFlowBox(LayoutObject& obj) |
| 32 : InlineFlowBox(obj) | 31 : InlineFlowBox(obj) |
| 33 , m_logicalHeight(0) | 32 , m_logicalHeight(0) |
| 34 { | 33 { |
| 35 } | 34 } |
| 36 | 35 |
| 37 virtual bool isSVGInlineFlowBox() const override { return true; } | 36 virtual bool isSVGInlineFlowBox() const override { return true; } |
| 38 virtual FloatWillBeLayoutUnit virtualLogicalHeight() const override { return
m_logicalHeight; } | 37 virtual LayoutUnit virtualLogicalHeight() const override { return m_logicalH
eight; } |
| 39 void setLogicalHeight(FloatWillBeLayoutUnit h) { m_logicalHeight = h; } | 38 void setLogicalHeight(LayoutUnit h) { m_logicalHeight = h; } |
| 40 | 39 |
| 41 virtual void paint(const PaintInfo&, const LayoutPoint&, LayoutUnit lineTop,
LayoutUnit lineBottom) override; | 40 virtual void paint(const PaintInfo&, const LayoutPoint&, LayoutUnit lineTop,
LayoutUnit lineBottom) override; |
| 42 | 41 |
| 43 virtual FloatRectWillBeLayoutRect calculateBoundaries() const override; | 42 virtual LayoutRect calculateBoundaries() const override; |
| 44 | 43 |
| 45 private: | 44 private: |
| 46 FloatWillBeLayoutUnit m_logicalHeight; | 45 LayoutUnit m_logicalHeight; |
| 47 }; | 46 }; |
| 48 | 47 |
| 49 DEFINE_INLINE_BOX_TYPE_CASTS(SVGInlineFlowBox); | 48 DEFINE_INLINE_BOX_TYPE_CASTS(SVGInlineFlowBox); |
| 50 | 49 |
| 51 } // namespace blink | 50 } // namespace blink |
| 52 | 51 |
| 53 #endif // SVGInlineFlowBox_h | 52 #endif // SVGInlineFlowBox_h |
| OLD | NEW |