-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathASEdgeLayoutSpec.h
80 lines (64 loc) · 2.87 KB
/
ASEdgeLayoutSpec.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
//
// ASEdgeLayoutSpec.h
// AsyncDisplayKit
//
// Copyright (c) Pinterest, Inc. All rights reserved.
// Licensed under Apache 2.0: http://www.apache.org/licenses/LICENSE-2.0
//
#import <AsyncDisplayKit/ASLayoutSpec.h>
/**
The edge location for positioning edge element.
*/
typedef NS_ENUM(NSInteger, ASEdgeLayoutLocation) {
ASEdgeLayoutLocationTop,
ASEdgeLayoutLocationLeft,
ASEdgeLayoutLocationBottom,
ASEdgeLayoutLocationRight,
};
NS_ASSUME_NONNULL_BEGIN
/**
A layout spec that positions a edge element which relatives to the child element.
@warning Both child element and edge element must have valid preferredSize for layout calculation.
*/
@interface ASEdgeLayoutSpec : ASLayoutSpec
/**
A layout spec that positions a edge element which relatives to the child element.
@param child A child that is laid out to determine the size of this spec.
@param edge A layoutElement object that is laid out to a edge on the child.
@param location The edge position option.
@param offset offset from the edge location
@return An ASEdgeLayoutSpec object with a given child and an layoutElement that act as edge.
*/
- (instancetype)initWithChild:(id <ASLayoutElement>)child edge:(id <ASLayoutElement>)edge location:(ASEdgeLayoutLocation)location offset:(CGFloat)offset AS_WARN_UNUSED_RESULT;
/**
A layout spec that positions a edge element which relatives to the child element.
@param child A child that is laid out to determine the size of this spec.
@param edge A layoutElement object that is laid out to a edge on the child.
@param location The edge position option.
@param offset offset from the edge location
@return An ASEdgeLayoutSpec object with a given child and an layoutElement that act as edge.
*/
+ (instancetype)edgeLayoutSpecWithChild:(id <ASLayoutElement>)child edge:(id <ASLayoutElement>)edge location:(ASEdgeLayoutLocation)location offset:(CGFloat)offset NS_RETURNS_RETAINED AS_WARN_UNUSED_RESULT;
/**
A layout spec that positions a edge element which relatives to the child element.
@param child A child that is laid out to determine the size of this spec.
@param edge A layoutElement object that is laid out to a edge on the child.
@param location The edge position option.
@return An ASEdgeLayoutSpec object with a given child and an layoutElement that act as edge.
*/
+ (instancetype)edgeLayoutSpecWithChild:(id <ASLayoutElement>)child edge:(id <ASLayoutElement>)edge location:(ASEdgeLayoutLocation)location NS_RETURNS_RETAINED AS_WARN_UNUSED_RESULT;
/**
A layoutElement object that is laid out to a edge on the child.
*/
@property (nonatomic) id <ASLayoutElement> edge;
/**
The edge position option.
*/
@property (nonatomic) ASEdgeLayoutLocation edgeLocation;
/**
The offset from the edge location. Use this property to make delta
distance from the default edge location. Default is 0.0.
*/
@property (nonatomic) CGFloat offset;
@end
NS_ASSUME_NONNULL_END