OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2011 Adobe Systems Incorporated. All rights reserved. | 2 * Copyright (C) 2011 Adobe Systems Incorporated. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * | 7 * |
8 * 1. Redistributions of source code must retain the above | 8 * 1. Redistributions of source code must retain the above |
9 * copyright notice, this list of conditions and the following | 9 * copyright notice, this list of conditions and the following |
10 * disclaimer. | 10 * disclaimer. |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 | 66 |
67 virtual bool canHaveChildren() const override final { return false; } | 67 virtual bool canHaveChildren() const override final { return false; } |
68 virtual bool canHaveGeneratedChildren() const override final { return true;
} | 68 virtual bool canHaveGeneratedChildren() const override final { return true;
} |
69 | 69 |
70 virtual const char* renderName() const override { return "RenderRegion"; } | 70 virtual const char* renderName() const override { return "RenderRegion"; } |
71 | 71 |
72 protected: | 72 protected: |
73 virtual void computeIntrinsicLogicalWidths(LayoutUnit& minLogicalWidth, Layo
utUnit& maxLogicalWidth) const override final; | 73 virtual void computeIntrinsicLogicalWidths(LayoutUnit& minLogicalWidth, Layo
utUnit& maxLogicalWidth) const override final; |
74 | 74 |
75 LayoutRect overflowRectForFlowThreadPortion(const LayoutRect& flowThreadPort
ionRect, bool isFirstPortion, bool isLastPortion) const; | 75 LayoutRect overflowRectForFlowThreadPortion(const LayoutRect& flowThreadPort
ionRect, bool isFirstPortion, bool isLastPortion) const; |
76 void paintInvalidationOfFlowThreadContentRectangle(const LayoutRect& paintIn
validationRect, const LayoutRect& flowThreadPortionRect, | |
77 const LayoutRect& flowThreadPortionOverflowRect, const LayoutPoint& regi
onLocation); | |
78 | 76 |
79 private: | 77 private: |
80 virtual void layoutBlock(bool relayoutChildren) override final; | 78 virtual void layoutBlock(bool relayoutChildren) override final; |
81 | 79 |
82 protected: | 80 protected: |
83 RenderFlowThread* m_flowThread; | 81 RenderFlowThread* m_flowThread; |
84 | 82 |
85 private: | 83 private: |
86 LayoutRect m_flowThreadPortionRect; | 84 LayoutRect m_flowThreadPortionRect; |
87 bool m_isValid : 1; | 85 bool m_isValid : 1; |
88 }; | 86 }; |
89 | 87 |
90 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderRegion, isRenderRegion()); | 88 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderRegion, isRenderRegion()); |
91 | 89 |
92 } // namespace blink | 90 } // namespace blink |
93 | 91 |
94 #endif // RenderRegion_h | 92 #endif // RenderRegion_h |
OLD | NEW |