-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathBetterReachability.h
More file actions
107 lines (73 loc) · 2.58 KB
/
BetterReachability.h
File metadata and controls
107 lines (73 loc) · 2.58 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
@interface OverlayView: UIView
@end
@interface SBCoverSheetSlidingViewController
-(void)_dismissCoverSheetAnimated:(BOOL)arg1 withCompletion:(id)arg2;
-(void)_presentCoverSheetAnimated:(BOOL)arg1 withCompletion:(id)arg2;
@end
@interface SBCoverSheetPresentationManager
@property(retain, nonatomic) SBCoverSheetSlidingViewController *coverSheetSlidingViewController;
@property(retain, nonatomic) SBCoverSheetSlidingViewController *secureAppSlidingViewController;
+(id)sharedInstance;
-(BOOL)isVisible;
-(BOOL)isInSecureApp;
@end
@interface SBControlCenterController: NSObject
+(id)sharedInstance;
-(void)presentAnimated:(BOOL)arg1;
@end
@interface VolumeControl : NSObject
+(id)sharedVolumeControl;
-(void)_changeVolumeBy:(float)arg1;
-(float)volumeStepUp;
-(float)volumeStepDown;
@end
@interface UITouchesEvent: UIEvent
-(id)_firstTouchForView:(id)arg1 ;
@end
@interface SBReachabilitySettings
@end
@interface SBReachabilityManager: NSObject
+(id)sharedInstance;
-(BOOL)reachabilityModeActive;
-(void)toggleReachability;
-(void)_notifyObserversReachabilityModeActive:(BOOL)arg1 excludingObserver:(id)arg2;
-(void)setWallpaper:(id)controller duration:(NSTimeInterval)duration;
-(void)setBackground:(BOOL)animated;
-(void)swipeLeft:(UISwipeGestureRecognizer *)sender;
-(void)swipeRight:(UISwipeGestureRecognizer *)sender;
-(void)swipe;
-(void)fadeScaleIndicatorDelayed;
@property (nonatomic, retain) OverlayView *panningView;
@property (nonatomic, retain) OverlayView *slidingView;
@property (nonatomic, retain) UIImageView *wallpaperImageView;
@property (nonatomic, retain) UIVisualEffectView *scaleIndicator;
@property (nonatomic, retain) UILabel *indicatorLabel;
@property (nonatomic, assign) NSInteger backgroundMode;
@property (nonatomic, retain) UIImage *selectedImage;
@end
@interface FBRootWindow: UIWindow
-(UIView *)_systemGestureView;
-(void)attachSceneTransform:(id)arg1 ;
-(void)removeSceneTransform:(id)arg1 ;
-(UIView *)sceneContainerView;
@end
@interface SBWallpaperController: NSObject
+(id)sharedInstance;
-(id)_wallpaperViewForVariant:(long long)arg1;
-(id)homescreenLightForegroundBlurImage;
@end
@interface SBFStaticWallpaperView: UIView
-(id)wallpaperImage;
-(id)_displayedImage;
@end
@interface SBFProceduralWallpaperView: UIView
-(id)snapshotImage;
-(id)_blurredImage;
@end
@interface MTSystemModuleMaterialSettings: NSObject
+(id)sharedMaterialSettings;
@end
@interface MTMaterialView: UIView
- (id)initWithSettings:(id)arg1 options:(unsigned long long)arg2 initialWeighting:(double)arg3 scaleAdjustment:(id /* block */)arg4;
- (void)_setContinuousCornerRadius:(double)arg1;
@end