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, |
(...skipping 10 matching lines...) Expand all Loading... |
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" | 24 #include "core/layout/line/FloatToLayoutUnit.h" |
25 #include "core/layout/line/InlineFlowBox.h" | 25 #include "core/layout/line/InlineFlowBox.h" |
26 | 26 |
27 namespace blink { | 27 namespace blink { |
28 | 28 |
29 class SVGInlineFlowBox final : public InlineFlowBox { | 29 class SVGInlineFlowBox final : public InlineFlowBox { |
30 public: | 30 public: |
31 SVGInlineFlowBox(RenderObject& obj) | 31 SVGInlineFlowBox(LayoutObject& obj) |
32 : InlineFlowBox(obj) | 32 : InlineFlowBox(obj) |
33 , m_logicalHeight(0) | 33 , m_logicalHeight(0) |
34 { | 34 { |
35 } | 35 } |
36 | 36 |
37 virtual bool isSVGInlineFlowBox() const override { return true; } | 37 virtual bool isSVGInlineFlowBox() const override { return true; } |
38 virtual FloatWillBeLayoutUnit virtualLogicalHeight() const override { return
m_logicalHeight; } | 38 virtual FloatWillBeLayoutUnit virtualLogicalHeight() const override { return
m_logicalHeight; } |
39 void setLogicalHeight(FloatWillBeLayoutUnit h) { m_logicalHeight = h; } | 39 void setLogicalHeight(FloatWillBeLayoutUnit h) { m_logicalHeight = h; } |
40 | 40 |
41 virtual void paint(const PaintInfo&, const LayoutPoint&, LayoutUnit lineTop,
LayoutUnit lineBottom) override; | 41 virtual void paint(const PaintInfo&, const LayoutPoint&, LayoutUnit lineTop,
LayoutUnit lineBottom) override; |
42 | 42 |
43 virtual FloatRectWillBeLayoutRect calculateBoundaries() const override; | 43 virtual FloatRectWillBeLayoutRect calculateBoundaries() const override; |
44 | 44 |
45 private: | 45 private: |
46 FloatWillBeLayoutUnit m_logicalHeight; | 46 FloatWillBeLayoutUnit m_logicalHeight; |
47 }; | 47 }; |
48 | 48 |
49 DEFINE_INLINE_BOX_TYPE_CASTS(SVGInlineFlowBox); | 49 DEFINE_INLINE_BOX_TYPE_CASTS(SVGInlineFlowBox); |
50 | 50 |
51 } // namespace blink | 51 } // namespace blink |
52 | 52 |
53 #endif // SVGInlineFlowBox_h | 53 #endif // SVGInlineFlowBox_h |
OLD | NEW |