Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(940)

Side by Side Diff: Source/core/rendering/RenderMultiColumnSpannerPlaceholder.h

Issue 296413007: [New Multicolumn] Add support for column-span:all (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@359976
Patch Set: code review Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderMultiColumnSet.cpp ('k') | Source/core/rendering/RenderMultiColumnSpannerPlaceholder.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698