blob: 0c3a3599ca918408759a21e45e642b34d8dd8c52 [file] [log] [blame]
// Copyright 2016 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 NGLayoutOpportunityTreeNode_h
#define NGLayoutOpportunityTreeNode_h
#include "core/layout/ng/ng_units.h"
#include "platform/heap/Handle.h"
namespace blink {
struct NGExclusion;
// 3 node R-Tree that represents available space(left, bottom, right) or
// layout opportunity after the parent spatial rectangle is split by the
// exclusion rectangle.
struct CORE_EXPORT NGLayoutOpportunityTreeNode
: public GarbageCollected<NGLayoutOpportunityTreeNode> {
// Default constructor.
// Creates a Layout Opportunity tree node that is limited by it's own edge
// from above.
// @param opportunity The layout opportunity for this node.
NGLayoutOpportunityTreeNode(const NGLogicalRect opportunity);
// Constructor that creates a node with explicitly set exclusion edge.
// @param opportunity The layout opportunity for this node.
// @param exclusion_edge Edge that limits this node's opportunity from above.
NGLayoutOpportunityTreeNode(const NGLogicalRect opportunity,
NGEdge exclusion_edge);
// Children of the node.
Member<NGLayoutOpportunityTreeNode> left;
Member<NGLayoutOpportunityTreeNode> bottom;
Member<NGLayoutOpportunityTreeNode> right;
// Exclusion that split apart this layout opportunity.
Member<const NGExclusion> exclusion;
// The top layout opportunity associated with this node.
NGLogicalRect opportunity;
// Edge that limits this layout opportunity from above.
NGEdge exclusion_edge;
// Whether this node is a leaf node.
// The node is a leaf if it doesn't have an exclusion that splits it apart.
bool IsLeafNode() const { return !exclusion; }
DECLARE_TRACE();
};
} // namespace blink
#endif // NGLayoutOpportunityTreeNode_h