-
Notifications
You must be signed in to change notification settings - Fork 1
/
Tweak.h
executable file
·54 lines (41 loc) · 1.43 KB
/
Tweak.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
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
#import <UIKit/UIControl.h>
#import <Cephei/HBPreferences.h>
#import "libcolorpicker.h"
HBPreferences *preferences;
NSDictionary *fetchColor;
NSString *nongColor;
NSString *unlockColor;
@interface _UILegibilitySettings : NSObject
@property (nonatomic,retain) UIColor * primaryColor;
@property (nonatomic,retain) UIColor * contentColor;
@property (nonatomic,retain) UIColor * secondaryColor;
@end
@interface SBUILegibilityLabel : UIView
@property (nonatomic,retain) _UILegibilitySettings * legibilitySettings;
@property (nonatomic,copy) NSString * string;
@property (nonatomic,copy) UIColor * textColor;
-(void)_updateLabelForLegibilitySettings;
-(void)_updateLegibilityView;
-(void)setPrimaryColor:(UIColor *)color;
@end
@interface NCNotificationListSectionRevealHintView
-(SBUILegibilityLabel *)revealHintTitle;
-(void)setLegibilitySettings:(_UILegibilitySettings *)settings;
@end
@interface NCNotificationCombinedListViewController : UIViewController
-(NCNotificationListSectionRevealHintView *)revealHintView;
@end
@interface SBTelephonySubscriptionContext
@property (nonatomic,copy) NSString * cachedCTOperatorName;
@end
@interface SBTelephonyManager
-(SBTelephonySubscriptionContext *)subscriptionContext;
@end
@interface SBUICallToActionLabel
-(NSString *)text;
-(SBUILegibilityLabel *)label;
-(void)setLabel:(SBUILegibilityLabel *)textLabel;
-(void)setText:(NSString *)arg1 ;
@end