-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEmerController.h
63 lines (52 loc) · 1.73 KB
/
EmerController.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
#import "EmerWidgetController.h"
@interface _UIBatteryView : UIView
-(void)setShowsPercentage:(BOOL)arg1 ;
-(void)setChargePercent:(double)arg1 ;
-(void)setSaverModeActive:(BOOL)arg1 ;
-(void)setChargingState:(long long)arg1 ;
-(void)setLowBatteryChargePercentThreshold:(double)arg1 ;
-(void)setShowsInlineChargingIndicator:(BOOL)arg1 ;
-(id)alloc;
@end
// @interface _UIStatusBarPersistentAnimationView : UIView
// @end
// @interface _UIStatusBarSignalView : _UIStatusBarPersistentAnimationView
// -(void)setNumberOfBars:(long long)arg1 ;
// -(void)setSignalMode:(long long)arg1 ;
// //-(id)alloc;
// @end
// @interface _UIStatusBarWifiSignalView : _UIStatusBarSignalView
// -(id)alloc;
// @end
// @interface _UIStatusBarCellularSignalView : _UIStatusBarSignalView
// @end
@interface EmerController : NSObject
+(id)sharedInstance;
-(id)init;
-(CGFloat) screenWidth;
-(UIVisualEffectView *)baseCard:(NSString *)arg1;
-(UILabel *)dateLabel;
-(UIVisualEffectView *)cardBlurContainer;
-(UIScrollView *)cardBlurContainerScrollView;
-(void)bringWidgetPassThroughViewsToFront;
-(CGRect)widgetContainerFrame;
-(UILabel *)timeLabel;
-(UIView *)firstWidget;
-(UIView *)secondWidget;
-(UIView *)thirdWidget;
-(UIView *)fourthWidget;
-(UIView *)fifthWidget;
-(void)setWidgetsAlpha:(long)alpha;
-(UIView *)firstWidgetTouchPassThroughView;
-(UIView *)secondWidgetTouchPassThroughView;
-(UIView *)thirdWidgetTouchPassThroughView;
-(UIView *)fourthWidgetTouchPassThroughView;
-(UIView *)fifthWidgetTouchPassThroughView;
-(void)showWidgetsTouchPassThroughView;
-(UIView *)expandedWidgetView;
//here goes widget text etc
-(UIView *)expandedWidgetTouchPassThroughView;
-(_UIBatteryView *)battery;
// -(_UIStatusBarWifiItem *)wifi;
// -(_UIStatusBarCellularSignalView *)cellular;
@end