luxlabs header browser preview


@class UIView;

@interface SBHShadowedWidgetView : UIView {
    BOOL _supportsShadowViewFrameProviding;
}

@property (retain, nonatomic) UIView *contentView;
@property (retain, nonatomic) UIView *shadowView;
@property (nonatomic, getter=isPerspectiveEnabled) BOOL perspectiveEnabled;
@property (nonatomic) double cornerRadius;
@property (nonatomic) struct CGAffineTransform { double a; double b; double c; double d; double tx; double ty; } contentTransform;
@property (nonatomic) struct CGAffineTransform { double a; double b; double c; double d; double tx; double ty; } shadowSupplementalTransform;

+ (Class)layerClass;

- (void)_updateShadowView;
- (void)_layoutShadowView;
- (void).cxx_destruct;
- (void)layoutSubviews;
- (void)_updateZPositions;
- (id)initWithContentView:(id)a0 shadowView:(id)a1 perspectiveEnabled:(BOOL)a2;

@end