2015-03-23 20:28:42 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
*
|
2018-02-17 02:24:55 +00:00
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
2015-03-23 20:28:42 +00:00
|
|
|
*/
|
2015-02-20 04:10:52 +00:00
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
2016-11-23 15:47:52 +00:00
|
|
|
#import <React/RCTBorderStyle.h>
|
|
|
|
#import <React/RCTComponent.h>
|
|
|
|
#import <React/RCTPointerEvents.h>
|
|
|
|
#import <React/RCTView.h>
|
2015-02-20 04:10:52 +00:00
|
|
|
|
|
|
|
@protocol RCTAutoInsetsProtocol;
|
|
|
|
|
2015-05-19 13:21:52 +00:00
|
|
|
@class RCTView;
|
|
|
|
|
2015-02-20 04:10:52 +00:00
|
|
|
@interface RCTView : UIView
|
|
|
|
|
Added mechanism for directly mapping JS event handlers to blocks
Summary:
Currently, the system for mapping JS event handlers to blocks is quite clean on the JS side, but is clunky on the native side. The event property is passed as a boolean, which can then be checked by the native side, and if true, the native side is supposed to send an event via the event dispatcher.
This diff adds the facility to declare the property as a block instead. This means that the event side can simply call the block, and it will automatically send the event. Because the blocks for bubbling and direct events are named differently, we can also use this to generate the event registration data and get rid of the arrays of event names.
The name of the event is inferred from the property name, which means that the property for an event called "load" must be called `onLoad` or the mapping won't work. This can be optionally remapped to a different property name on the view itself if necessary, e.g.
RCT_REMAP_VIEW_PROPERTY(onLoad, loadEventBlock, RCTDirectEventBlock)
If you don't want to use this mechanism then for now it is still possible to declare the property as a BOOL instead and use the old mechanism (this approach is now deprecated however, and may eventually be removed altogether).
2015-09-02 12:58:10 +00:00
|
|
|
/**
|
|
|
|
* Accessibility event handlers
|
|
|
|
*/
|
2017-12-05 07:19:47 +00:00
|
|
|
@property (nonatomic, copy) RCTDirectEventBlock onAccessibilityAction;
|
Added mechanism for directly mapping JS event handlers to blocks
Summary:
Currently, the system for mapping JS event handlers to blocks is quite clean on the JS side, but is clunky on the native side. The event property is passed as a boolean, which can then be checked by the native side, and if true, the native side is supposed to send an event via the event dispatcher.
This diff adds the facility to declare the property as a block instead. This means that the event side can simply call the block, and it will automatically send the event. Because the blocks for bubbling and direct events are named differently, we can also use this to generate the event registration data and get rid of the arrays of event names.
The name of the event is inferred from the property name, which means that the property for an event called "load" must be called `onLoad` or the mapping won't work. This can be optionally remapped to a different property name on the view itself if necessary, e.g.
RCT_REMAP_VIEW_PROPERTY(onLoad, loadEventBlock, RCTDirectEventBlock)
If you don't want to use this mechanism then for now it is still possible to declare the property as a BOOL instead and use the old mechanism (this approach is now deprecated however, and may eventually be removed altogether).
2015-09-02 12:58:10 +00:00
|
|
|
@property (nonatomic, copy) RCTDirectEventBlock onAccessibilityTap;
|
|
|
|
@property (nonatomic, copy) RCTDirectEventBlock onMagicTap;
|
2015-05-19 13:21:52 +00:00
|
|
|
|
2017-12-05 07:19:47 +00:00
|
|
|
/**
|
|
|
|
* Accessibility properties
|
|
|
|
*/
|
|
|
|
@property (nonatomic, copy) NSArray <NSString *> *accessibilityActions;
|
|
|
|
|
2015-03-06 00:36:41 +00:00
|
|
|
/**
|
|
|
|
* Used to control how touch events are processed.
|
|
|
|
*/
|
2015-02-20 04:10:52 +00:00
|
|
|
@property (nonatomic, assign) RCTPointerEvents pointerEvents;
|
|
|
|
|
|
|
|
+ (void)autoAdjustInsetsForView:(UIView<RCTAutoInsetsProtocol> *)parentView
|
|
|
|
withScrollView:(UIScrollView *)scrollView
|
|
|
|
updateOffset:(BOOL)updateOffset;
|
|
|
|
|
2015-03-06 00:36:41 +00:00
|
|
|
/**
|
|
|
|
* Find the first view controller whose view, or any subview is the specified view.
|
|
|
|
*/
|
2015-02-20 04:10:52 +00:00
|
|
|
+ (UIEdgeInsets)contentInsetsForView:(UIView *)curView;
|
|
|
|
|
2017-02-02 17:51:19 +00:00
|
|
|
/**
|
|
|
|
* Layout direction of the view.
|
|
|
|
* This is inherited from UIView+React, but we override it here
|
2018-01-13 06:03:51 +00:00
|
|
|
* to improve performance and make subclassing/overriding possible/easier.
|
2017-02-02 17:51:19 +00:00
|
|
|
*/
|
|
|
|
@property (nonatomic, assign) UIUserInterfaceLayoutDirection reactLayoutDirection;
|
|
|
|
|
2016-11-18 22:33:23 +00:00
|
|
|
/**
|
|
|
|
* This is an optimization used to improve performance
|
|
|
|
* for large scrolling views with many subviews, such as a
|
|
|
|
* list or table. If set to YES, any clipped subviews will
|
|
|
|
* be removed from the view hierarchy whenever -updateClippedSubviews
|
|
|
|
* is called. This would typically be triggered by a scroll event
|
|
|
|
*/
|
|
|
|
@property (nonatomic, assign) BOOL removeClippedSubviews;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Hide subviews if they are outside the view bounds.
|
|
|
|
* This is an optimisation used predominantly with RKScrollViews
|
|
|
|
* but it is applied recursively to all subviews that have
|
|
|
|
* removeClippedSubviews set to YES
|
|
|
|
*/
|
|
|
|
- (void)updateClippedSubviews;
|
2015-03-11 02:03:59 +00:00
|
|
|
|
2015-05-13 15:22:21 +00:00
|
|
|
/**
|
|
|
|
* Border radii.
|
|
|
|
*/
|
|
|
|
@property (nonatomic, assign) CGFloat borderRadius;
|
|
|
|
@property (nonatomic, assign) CGFloat borderTopLeftRadius;
|
|
|
|
@property (nonatomic, assign) CGFloat borderTopRightRadius;
|
2017-10-19 02:29:42 +00:00
|
|
|
@property (nonatomic, assign) CGFloat borderTopStartRadius;
|
|
|
|
@property (nonatomic, assign) CGFloat borderTopEndRadius;
|
2015-05-13 15:22:21 +00:00
|
|
|
@property (nonatomic, assign) CGFloat borderBottomLeftRadius;
|
|
|
|
@property (nonatomic, assign) CGFloat borderBottomRightRadius;
|
2017-10-19 02:29:42 +00:00
|
|
|
@property (nonatomic, assign) CGFloat borderBottomStartRadius;
|
|
|
|
@property (nonatomic, assign) CGFloat borderBottomEndRadius;
|
2015-05-13 15:22:21 +00:00
|
|
|
|
2015-03-26 08:43:17 +00:00
|
|
|
/**
|
2015-07-14 11:53:54 +00:00
|
|
|
* Border colors (actually retained).
|
2015-03-26 08:43:17 +00:00
|
|
|
*/
|
|
|
|
@property (nonatomic, assign) CGColorRef borderTopColor;
|
|
|
|
@property (nonatomic, assign) CGColorRef borderRightColor;
|
|
|
|
@property (nonatomic, assign) CGColorRef borderBottomColor;
|
|
|
|
@property (nonatomic, assign) CGColorRef borderLeftColor;
|
2017-10-19 02:29:42 +00:00
|
|
|
@property (nonatomic, assign) CGColorRef borderStartColor;
|
|
|
|
@property (nonatomic, assign) CGColorRef borderEndColor;
|
2015-03-26 08:43:17 +00:00
|
|
|
@property (nonatomic, assign) CGColorRef borderColor;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Border widths.
|
|
|
|
*/
|
|
|
|
@property (nonatomic, assign) CGFloat borderTopWidth;
|
|
|
|
@property (nonatomic, assign) CGFloat borderRightWidth;
|
|
|
|
@property (nonatomic, assign) CGFloat borderBottomWidth;
|
|
|
|
@property (nonatomic, assign) CGFloat borderLeftWidth;
|
2017-10-19 02:29:42 +00:00
|
|
|
@property (nonatomic, assign) CGFloat borderStartWidth;
|
|
|
|
@property (nonatomic, assign) CGFloat borderEndWidth;
|
2015-03-26 08:43:17 +00:00
|
|
|
@property (nonatomic, assign) CGFloat borderWidth;
|
|
|
|
|
2015-12-01 15:41:20 +00:00
|
|
|
/**
|
|
|
|
* Border styles.
|
|
|
|
*/
|
|
|
|
@property (nonatomic, assign) RCTBorderStyle borderStyle;
|
|
|
|
|
2016-02-17 00:50:35 +00:00
|
|
|
/**
|
|
|
|
* Insets used when hit testing inside this view.
|
|
|
|
*/
|
|
|
|
@property (nonatomic, assign) UIEdgeInsets hitTestEdgeInsets;
|
|
|
|
|
2015-02-20 04:10:52 +00:00
|
|
|
@end
|