blob: bf04748e47db74c2c079338915f0e4d001bf6c75 [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef NGColumnLayoutAlgorithm_h
#define NGColumnLayoutAlgorithm_h
#include "third_party/blink/renderer/core/layout/ng/ng_fragment_builder.h"
#include "third_party/blink/renderer/core/layout/ng/ng_layout_algorithm.h"
namespace blink {
class NGBlockNode;
class NGBlockBreakToken;
class NGBreakToken;
class NGConstraintSpace;
struct NGLogicalSize;
class CORE_EXPORT NGColumnLayoutAlgorithm
: public NGLayoutAlgorithm<NGBlockNode,
NGFragmentBuilder,
NGBlockBreakToken> {
public:
NGColumnLayoutAlgorithm(NGBlockNode node,
const NGConstraintSpace& space,
const NGBreakToken* break_token = nullptr);
scoped_refptr<NGLayoutResult> Layout() override;
base::Optional<MinMaxSize> ComputeMinMaxSize(
const MinMaxSizeInput&) const override;
private:
NGLogicalSize CalculateColumnSize(const NGLogicalSize& content_box_size);
LayoutUnit CalculateBalancedColumnBlockSize(const NGLogicalSize& column_size,
int column_count);
// Stretch the column length, if allowed. We do this during column balancing,
// when we discover that the current length isn't large enough to fit all
// content.
LayoutUnit StretchColumnBlockSize(
LayoutUnit minimal_space_shortage,
LayoutUnit current_column_size,
LayoutUnit container_content_box_block_size) const;
NGConstraintSpace CreateConstraintSpaceForColumns(
const NGLogicalSize& column_size,
bool separate_leading_margins) const;
NGConstraintSpace CreateConstaintSpaceForBalancing(
const NGLogicalSize& column_size) const;
};
} // namespace Blink
#endif // NGColumnLayoutAlgorithm_h