// // ASLayout.h // AsyncDisplayKit // // Copyright (c) 2014-present, Facebook, Inc. All rights reserved. // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. An additional grant // of patent rights can be found in the PATENTS file in the same directory. // #pragma once #import #import #import #import NS_ASSUME_NONNULL_BEGIN extern CGPoint const CGPointNull; extern BOOL CGPointIsNull(CGPoint point); /** * A node in the layout tree that represents the size and position of the object that created it (ASLayoutable). */ @interface ASLayout : NSObject /** * The underlying object described by this layout */ @property (nonatomic, weak, readonly) id layoutableObject; /** * The type of ASLayoutable that created this layout */ @property (nonatomic, readonly) ASLayoutableType type; /** * Size of the current layout */ @property (nonatomic, readonly) CGSize size; /** * Position in parent. Default to CGPointNull. * * @discussion When being used as a sublayout, this property must not equal CGPointNull. */ @property (nonatomic, readwrite) CGPoint position; /** * The size range that was use to determine the size of the layout. */ @property (nonatomic, readonly) ASSizeRange constrainedSizeRange; /** * Array of ASLayouts. Each must have a valid non-null position. */ @property (nonatomic, readonly) NSArray *sublayouts; /** * Mark the layout dirty for future regeneration. */ @property (nonatomic, getter=isDirty) BOOL dirty; /** * @abstract Returns a valid frame for the current layout computed with the size and position. * @discussion Clamps the layout's origin or position to 0 if any of the calculated values are infinite. */ @property (nonatomic, readonly) CGRect frame; /** * Designated initializer */ - (instancetype)initWithLayoutableObject:(id)layoutableObject constrainedSizeRange:(ASSizeRange)sizeRange size:(CGSize)size position:(CGPoint)position sublayouts:(NSArray *)sublayouts NS_DESIGNATED_INITIALIZER; /** * Convenience class initializer for layout construction. * * @param layoutableObject The backing ASLayoutable object. * @param size The size of this layout. * @param position The position of this layout within its parent (if available). * @param sublayouts Sublayouts belong to the new layout. */ + (instancetype)layoutWithLayoutableObject:(id)layoutableObject constrainedSizeRange:(ASSizeRange)sizeRange size:(CGSize)size position:(CGPoint)position sublayouts:(nullable NSArray *)sublayouts; /** * Convenience initializer that has CGPointNull position. * Best used by ASDisplayNode subclasses that are manually creating a layout for -calculateLayoutThatFits:, * or for ASLayoutSpec subclasses that are referencing the "self" level in the layout tree, * or for creating a sublayout of which the position is yet to be determined. * * @param layoutableObject The backing ASLayoutable object. * @param size The size of this layout. * @param sublayouts Sublayouts belong to the new layout. */ + (instancetype)layoutWithLayoutableObject:(id)layoutableObject constrainedSizeRange:(ASSizeRange)sizeRange size:(CGSize)size sublayouts:(nullable NSArray *)sublayouts; /** * Convenience that has CGPointNull position and no sublayouts. * Best used for creating a layout that has no sublayouts, and is either a root one * or a sublayout of which the position is yet to be determined. * * @param layoutableObject The backing ASLayoutable object. * @param size The size of this layout. */ + (instancetype)layoutWithLayoutableObject:(id)layoutableObject constrainedSizeRange:(ASSizeRange)sizeRange size:(CGSize)size; /** * Convenience initializer that is flattened and has CGPointNull position. * * @param layoutableObject The backing ASLayoutable object. * @param size The size of this layout. * @param sublayouts Sublayouts belong to the new layout. */ + (instancetype)flattenedLayoutWithLayoutableObject:(id)layoutableObject constrainedSizeRange:(ASSizeRange)sizeRange size:(CGSize)size sublayouts:(nullable NSArray *)sublayouts; /** * Convenience initializer that creates a layout based on the values of the given layout, with a new position * @param layout The layout to use to create the new layout * @param position The position of the new layout */ + (instancetype)layoutWithLayout:(ASLayout *)layout position:(CGPoint)position; /** * Traverses the existing layout tree and generates a new tree that represents only ASDisplayNode layouts */ - (ASLayout *)filteredNodeLayoutTree; @end NS_ASSUME_NONNULL_END