added files via upload

This commit is contained in:
Balackburn
2023-06-27 09:54:41 +02:00
commit 2ff6aac218
1420 changed files with 88898 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
NS_CLASS_AVAILABLE_IOS(8_0)
@interface CAMZoomSlider : UISlider
@property (getter=isMinimumAutozooming) BOOL minimumAutozooming;
@property (getter=isMaximumAutozooming) BOOL maximumAutozooming;
@property (getter=_isAutozooming, setter = _setAutozooming :) BOOL _autozooming;
@property (readonly) NSTimer *_visibilityTimer;
@property (readonly) UIImageView *_thumbImageView;
@property (readonly) UIView *_minTrackMaskView;
@property (readonly) UIView *_maxTrackMaskView;
@property (assign, nonatomic) UIView *delegate;
- (BOOL)visibilityTimerIsValid;
- (void)_beginAutozooming;
- (void)_commonCAMZoomSliderInitialization;
- (void)_endAutozooming;
- (void)_hideZoomSlider:(id)arg1;
- (void)_postHideZoomSliderAnimation;
- (void)_updateAutozooming;
- (void)makeInvisible;
- (void)makeVisible;
- (void)makeVisibleAnimated:(BOOL)animated;
- (void)startVisibilityTimer;
- (void)stopVisibilityTimer;
@end