OLD | NEW |
(Empty) | |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef RenderMultiColumnSpannerPlaceholder_h |
| 6 #define RenderMultiColumnSpannerPlaceholder_h |
| 7 |
| 8 #include "core/rendering/RenderBox.h" |
| 9 |
| 10 namespace blink { |
| 11 |
| 12 class RenderMultiColumnFlowThread; |
| 13 |
| 14 // An empty placeholder box inserted at the position in the render tree where th
e column-span:all |
| 15 // rendererer would naturally occur, had it not been column-span:all. A spanner
box is moved from |
| 16 // its original position to become a sibling of the column sets. In other words
it becomes a direct |
| 17 // child of the multicol container, since anything logically in the ancestry bet
ween the spanner and |
| 18 // the multicol container shouldn't affect the spanner (e.g. such ancestors shou
ld not affect the |
| 19 // size of the spanner, nor should their background be painted). The placeholder
is used during flow |
| 20 // thread layout to figure out when to move from one column set to the next. |
| 21 class RenderMultiColumnSpannerPlaceholder FINAL : public RenderBox { |
| 22 public: |
| 23 static RenderMultiColumnSpannerPlaceholder* createAnonymous(RenderMultiColum
nFlowThread*, RenderBox* spanner, RenderStyle*); |
| 24 |
| 25 virtual bool isRenderMultiColumnSpannerPlaceholder() const OVERRIDE { return
true; } |
| 26 |
| 27 // Get the actual spanner renderer; a sibling of the column sets. |
| 28 RenderBox* spanner() const { return m_spanner; } |
| 29 |
| 30 virtual void markForPaginationRelayoutIfNeeded(SubtreeLayoutScope&) OVERRIDE
FINAL; |
| 31 virtual void layout() OVERRIDE FINAL; |
| 32 |
| 33 private: |
| 34 RenderMultiColumnSpannerPlaceholder(RenderMultiColumnFlowThread*, RenderBox*
spanner); |
| 35 |
| 36 virtual const char* renderName() const OVERRIDE; |
| 37 |
| 38 RenderMultiColumnFlowThread* m_flowThread; |
| 39 RenderBox* m_spanner; |
| 40 }; |
| 41 |
| 42 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderMultiColumnSpannerPlaceholder, isRenderMul
tiColumnSpannerPlaceholder()); |
| 43 |
| 44 } // namespace blink |
| 45 |
| 46 #endif // RenderMultiColumnSpannerPlaceholder_h |
OLD | NEW |