-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathUIKitCore-Headers.h
108 lines (92 loc) · 3.84 KB
/
UIKitCore-Headers.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
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
108
// Copyright (c) 2021 udevs
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, version 3.
//
// This program is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
@interface _UIStatusBarItemUpdate : NSObject
@property (assign,nonatomic) BOOL enabilityChanged;
@property (assign,nonatomic) BOOL enabled;
@end
@interface _UIStatusBarItem : NSObject
-(void)setNeedsUpdate;
-(id)_applyUpdate:(_UIStatusBarItemUpdate *)arg1 toDisplayItem:(id)arg2 ;
-(void)updatedDisplayItemsWithData:(id)arg1 ;
@end
@interface _UIStatusBarPersistentAnimationView : UIView
@end
@interface _UIStatusBarCycleAnimation : NSObject
@property (assign,nonatomic) BOOL stopsAfterReversing;
-(void)_stopAnimations;
@end
@interface _UIStatusBarSignalView : _UIStatusBarPersistentAnimationView
@property (nonatomic,copy) UIColor * activeColor;
@property (nonatomic,copy) UIColor * inactiveColor;
@property (assign,nonatomic) long long numberOfActiveBars;
@property (assign,nonatomic) long long signalMode;
@property (nonatomic,retain) _UIStatusBarCycleAnimation * cycleAnimation;
-(void)_colorsDidChange;
-(void)_updateBars;
-(void)_updateActiveBars;
-(void)_updateFromMode:(long long)arg1 ;
-(void)_updateCycleAnimationNow;
@end
@interface _UIStatusBarCellularSignalView : _UIStatusBarSignalView
@end
@interface _UIStatusBarWifiSignalView : _UIStatusBarSignalView
@end
@interface _UIStatusBarCellularItem : _UIStatusBarItem
@property (nonatomic,retain) _UIStatusBarCellularSignalView * signalView;
@end
@interface _UIStatusBarWifiItem : _UIStatusBarItem
@property (nonatomic,retain) _UIStatusBarWifiSignalView * signalView;
@end
@interface _UIStatusBarStyleAttributes : NSObject
@property (nonatomic,copy) UIColor * imageTintColor;
@property (nonatomic,copy) UIColor * textColor;
@end
@interface _UIStatusBarIdentifier : NSObject
@property (nonatomic,copy,readonly) NSString * stringRepresentation;
@property (nonatomic,copy) NSString * string;
@end
@interface _UIStatusBarDisplayItemState : NSObject
@property (nonatomic,copy) _UIStatusBarIdentifier * identifier;
@property (assign,nonatomic) _UIStatusBarItem * item;
@property (assign,nonatomic) long long enabilityStatus;
@property (assign,nonatomic) long long visibilityStatus;
@property (getter=isEnabled,nonatomic,readonly) BOOL enabled;
@end
@interface _UIStatusBar : UIView
@property (nonatomic,copy) UIColor *foregroundColor;
@property (nonatomic,retain) NSMutableDictionary <_UIStatusBarIdentifier *, id>* items;
@property (nonatomic,retain) NSMutableDictionary <id, _UIStatusBarDisplayItemState *>* displayItemStates;
@property (nonatomic,retain) _UIStatusBarStyleAttributes * styleAttributes;
@property (assign,nonatomic) long long mode;-(void)_updateRegionItems;
@end
@interface SBStatusBarStateAggregator : NSObject
+(id)sharedInstance;
-(void)updateStatusBarItem:(int)arg1 ;
-(void)_notifyItemChanged:(int)arg1 ;
-(void)_updateSignalStrengthItem;
-(BOOL)_setItem:(int)arg1 enabled:(BOOL)arg2 ;
-(void)_notifyItemChanged:(int)arg1 ;
-(void)beginCoalescentBlock;
-(void)_updateTetheringState;
-(void)_resetTimeItemFormatter;
-(void)_notifyNonItemDataChanged;
-(void)endCoalescentBlock;
-(BOOL)_setItem:(int)arg1 enabled:(BOOL)arg2 ;
-(BOOL)_setItem:(int)arg1 enabled:(BOOL)arg2 inList:(BOOL*)arg3 itemPostState:(unsigned long long*)arg4 ;
@end
@interface SBWiFiManager : NSObject
+(id)sharedInstance;
-(void)_updateSignalStrengthFromRawRSSI:(int)arg1 andScaledRSSI:(float)arg2 ;
-(BOOL)isPrimaryInterface;
@end