-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCommon.h
70 lines (54 loc) · 2.03 KB
/
Common.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
@import UIKit;
@interface _UIStatusBarDataEntry : NSObject
@property(assign, getter=isEnabled, nonatomic) BOOL enabled;
@end
@interface _UIStatusBarDataQuietModeEntry : NSObject
@property(nonatomic, copy) NSString *focusName;
@end
@interface _UIStatusBarDataWifiEntry : NSObject
@property(assign, nonatomic) long long displayValue;
@end
@interface _UIStatusBarData : NSObject
@property(nonatomic, copy) _UIStatusBarDataQuietModeEntry *quietModeEntry;
@property(nonatomic, copy) _UIStatusBarDataEntry *vpnEntry;
@property(nonatomic, copy) _UIStatusBarDataWifiEntry *wifiEntry;
@end
@interface UIStatusBar_Base : UIView
- (void)forceUpdateData:(BOOL)arg1;
@end
@interface _UIStatusBarImageView : UIImageView
@end
@interface _UIStatusBarStringView : UILabel
@end
@interface _UIStatusBarCellularNetworkTypeView : UIView
@property(nonatomic, strong) _UIStatusBarStringView *stringView;
@end
@interface _UIStatusBarSignalView : UIView
@property(nonatomic, copy) UIColor *inactiveColor;
@property(nonatomic, copy) UIColor *activeColor;
- (void)_colorsDidChange;
@end
@interface _UIStatusBarWifiSignalView : _UIStatusBarSignalView
@end
@interface _UIStatusBarStyleAttributes : NSObject
@property(nonatomic, readonly) long long style;
@property(nonatomic, copy) UIColor *textColor;
@property(nonatomic, copy) UIColor *imageTintColor;
@end
@interface _UIStatusBarItemUpdate : NSObject
@property(nonatomic, strong) _UIStatusBarData *data;
@property(nonatomic, strong) _UIStatusBarStyleAttributes *styleAttributes;
@property(assign, nonatomic) BOOL styleAttributesChanged;
@end
@interface _UIStatusBarItem : NSObject
@property(nonatomic, strong) NSMutableDictionary *displayItems;
@end
@interface _UIStatusBarWifiItem : _UIStatusBarItem
@property(nonatomic, strong) _UIStatusBarImageView *networkIconView;
- (UIColor *)_fillColorForUpdate:(_UIStatusBarItemUpdate *)update entry:(_UIStatusBarDataWifiEntry *)entry;
@end
@interface _UIStatusBarCellularItem : _UIStatusBarItem
@end
@interface _UIStatusBarDisplayItem : NSObject
@property(nonatomic, readonly) UIView *view;
@end