| 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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 | 57 |
| 58 bool isFirstRegion() const; | 58 bool isFirstRegion() const; |
| 59 bool isLastRegion() const; | 59 bool isLastRegion() const; |
| 60 | 60 |
| 61 // These methods represent the width and height of a "page" and for a Render
Region they are just | 61 // These methods represent the width and height of a "page" and for a Render
Region they are just |
| 62 // the content width and content height of a region. For RenderMultiColumnSe
ts, however, they | 62 // the content width and content height of a region. For RenderMultiColumnSe
ts, however, they |
| 63 // will be the width and height of a single column or page in the set. | 63 // will be the width and height of a single column or page in the set. |
| 64 virtual LayoutUnit pageLogicalWidth() const; | 64 virtual LayoutUnit pageLogicalWidth() const; |
| 65 virtual LayoutUnit pageLogicalHeight() const; | 65 virtual LayoutUnit pageLogicalHeight() const; |
| 66 | 66 |
| 67 LayoutUnit logicalTopOfFlowThreadContentRect(const LayoutRect&) const; |
| 68 LayoutUnit logicalBottomOfFlowThreadContentRect(const LayoutRect&) const; |
| 69 LayoutUnit logicalTopForFlowThreadContent() const { return logicalTopOfFlowT
hreadContentRect(flowThreadPortionRect()); }; |
| 70 LayoutUnit logicalBottomForFlowThreadContent() const { return logicalBottomO
fFlowThreadContentRect(flowThreadPortionRect()); }; |
| 71 |
| 67 virtual bool canHaveChildren() const OVERRIDE FINAL { return false; } | 72 virtual bool canHaveChildren() const OVERRIDE FINAL { return false; } |
| 68 virtual bool canHaveGeneratedChildren() const OVERRIDE FINAL { return true;
} | 73 virtual bool canHaveGeneratedChildren() const OVERRIDE FINAL { return true;
} |
| 69 | 74 |
| 70 virtual const char* renderName() const OVERRIDE { return "RenderRegion"; } | 75 virtual const char* renderName() const OVERRIDE { return "RenderRegion"; } |
| 71 | 76 |
| 72 protected: | 77 protected: |
| 73 virtual void computeIntrinsicLogicalWidths(LayoutUnit& minLogicalWidth, Layo
utUnit& maxLogicalWidth) const OVERRIDE FINAL; | 78 virtual void computeIntrinsicLogicalWidths(LayoutUnit& minLogicalWidth, Layo
utUnit& maxLogicalWidth) const OVERRIDE FINAL; |
| 74 | 79 |
| 75 LayoutRect overflowRectForFlowThreadPortion(const LayoutRect& flowThreadPort
ionRect, bool isFirstPortion, bool isLastPortion) const; | 80 LayoutRect overflowRectForFlowThreadPortion(const LayoutRect& flowThreadPort
ionRect, bool isFirstPortion, bool isLastPortion) const; |
| 76 void repaintFlowThreadContentRectangle(const LayoutRect& repaintRect, const
LayoutRect& flowThreadPortionRect, | 81 void repaintFlowThreadContentRectangle(const LayoutRect& repaintRect, const
LayoutRect& flowThreadPortionRect, |
| 77 const LayoutRect& flowThreadPortionOverflowRect, const LayoutPoint& regi
onLocation) const; | 82 const LayoutRect& flowThreadPortionOverflowRect, const LayoutPoint& regi
onLocation) const; |
| 78 | 83 |
| 79 private: | 84 private: |
| 80 virtual void layoutBlock(bool relayoutChildren) OVERRIDE FINAL; | 85 virtual void layoutBlock(bool relayoutChildren) OVERRIDE FINAL; |
| 81 | 86 |
| 82 protected: | 87 protected: |
| 83 RenderFlowThread* m_flowThread; | 88 RenderFlowThread* m_flowThread; |
| 84 | 89 |
| 85 private: | 90 private: |
| 86 LayoutRect m_flowThreadPortionRect; | 91 LayoutRect m_flowThreadPortionRect; |
| 87 bool m_isValid : 1; | 92 bool m_isValid : 1; |
| 88 }; | 93 }; |
| 89 | 94 |
| 90 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderRegion, isRenderRegion()); | 95 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderRegion, isRenderRegion()); |
| 91 | 96 |
| 92 } // namespace blink | 97 } // namespace blink |
| 93 | 98 |
| 94 #endif // RenderRegion_h | 99 #endif // RenderRegion_h |
| OLD | NEW |