-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBrooch.h
114 lines (93 loc) · 5.24 KB
/
Brooch.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
109
110
111
112
113
114
#import <libmdauschutils.h>
#import <UIKit/_UILegibilitySettings.h>
#import <Foundation/Foundation.h>
#import <UIKit/UiKit.h>
#import <objc/runtime.h>
#import <libcolorpicker.h>
#define kBroochPrefs @"/var/mobile/Library/Preferences/ch.mdaus.brooch.plist"
@interface _UILegibilityView : UIView
@end
@interface SBIconLabelImageParameters : NSObject
@property (nonatomic,copy,readonly) NSString * text; //@synthesize text=_text - In the implementation block
@property (nonatomic,readonly) CGSize maxSize; //@synthesize maxSize=_maxSize - In the implementation block
@property (nonatomic,readonly) UIFont * font; //@synthesize font=_font - In the implementation block
@property (nonatomic,readonly) double scale; //@synthesize scale=_scale - In the implementation block
@property (nonatomic,readonly) BOOL canEllipsize; //@synthesize canEllipsize=_canEllipsize - In the implementation block
@property (nonatomic,readonly) BOOL canTighten; //@synthesize canTighten=_canTighten - In the implementation block
@property (nonatomic,readonly) BOOL containsEmoji; //@synthesize containsEmoji=_containsEmoji - In the implementation block
@property (nonatomic,readonly) BOOL canUseMemoryPool; //@synthesize canUseMemoryPool=_canUseMemoryPool - In the implementation block
@property (nonatomic,readonly) long long style; //@synthesize style=_style - In the implementation block
@property (nonatomic,readonly) UIColor * textColor; //@synthesize textColor=_textColor - In the implementation block
@property (nonatomic,readonly) BOOL accessibilityIncreaseContrastEnabled; //@synthesize accessibilityIncreaseContrastEnabled=_accessibilityIncreaseContrastEnabled - In the implementation block
@property (nonatomic,readonly) UIColor * focusHighlightColor; //@synthesize focusHighlightColor=_focusHighlightColor - In the implementation block
@property (nonatomic,readonly) UIEdgeInsets textInsets; //@synthesize textInsets=_textInsets - In the implementation block
@property (nonatomic,readonly) UIEdgeInsets fontLanguageInsets; //@synthesize fontLanguageInsets=_fontLanguageInsets - In the implementation block
@property (nonatomic,readonly) long long iconLocation; //@synthesize iconLocation=_iconLocation - In the implementation block
@end
@interface SBMutableIconLabelImageParameters : SBIconLabelImageParameters
@property (nonatomic,copy) NSString * text;
@property (assign,nonatomic) CGSize maxSize;
@property (nonatomic,retain) UIFont * font;
@property (assign,nonatomic) double scale;
@property (assign,nonatomic) BOOL containsEmoji;
@property (assign,nonatomic) BOOL canEllipsize;
@property (assign,nonatomic) BOOL canTighten;
@property (assign,nonatomic) BOOL canUseMemoryPool;
@property (assign,nonatomic) long long style;
@property (nonatomic,retain) UIColor * textColor;
@property (assign,nonatomic) BOOL accessibilityIncreaseContrastEnabled;
@property (nonatomic,retain) UIColor * focusHighlightColor;
@property (assign,nonatomic) UIEdgeInsets textInsets;
@property (assign,nonatomic) UIEdgeInsets fontLanguageInsets;
@property (assign,nonatomic) long long iconLocation;
-(void)setAccessibilityIncreaseContrastEnabled:(BOOL)arg1 ;
-(void)setCanEllipsize:(BOOL)arg1 ;
-(void)setCanTighten:(BOOL)arg1 ;
-(void)setContainsEmoji:(BOOL)arg1 ;
-(void)setCanUseMemoryPool:(BOOL)arg1 ;
-(void)setFocusHighlightColor:(UIColor *)arg1 ;
-(void)setFontLanguageInsets:(UIEdgeInsets)arg1 ;
-(void)setIconLocation:(long long)arg1 ;
-(void)setTextInsets:(UIEdgeInsets)arg1 ;
-(id)copy;
-(void)setText:(NSString *)arg1 ;
-(void)setFont:(UIFont *)arg1 ;
-(void)setStyle:(long long)arg1 ;
-(void)setTextColor:(UIColor *)arg1 ;
-(void)setScale:(double)arg1 ;
-(void)setMaxSize:(CGSize)arg1 ;
@end
@interface SBIconLegibilityLabelView : _UILegibilityView
-(void)setImageParameters:(SBIconLabelImageParameters *)arg1 ;
-(id)initWithSettings:(_UILegibilitySettings *)arg1 ;
-(void)updateIconLabelWithSettings:(id)arg1 imageParameters:(id)arg2 ;
@end
@interface SBIcon : NSObject
-(id)badgeNumberOrString;
-(id)getIconImage:(int)arg1 ;
@end
@interface SBIconImageView : UIImageView
@end
@interface SBIconView : UIView
@property (nonatomic,retain) UIView * labelView;
@property (nonatomic,retain) SBIcon * icon;
@property (nonatomic,assign) BOOL mdbroochHasNotification;
@property (nonatomic,retain) _UILegibilitySettings * legibilitySettings;
@property (nonatomic,assign) _UILegibilitySettings* mdbroochDefaultLegibilitySettings;
-(SBIconImageView *)_iconImageView;
-(id)_labelImageParameters;
-(void)_updateLabel;
-(void)setLegibilitySettings:(_UILegibilitySettings *)arg1;
@end
@interface SBFolderIcon : SBIcon
-(id)applicationIconsWithBadgesSortedByImportance;
@end
@interface SBLeafIcon : SBIcon
@end
@interface SBApplicationIcon : SBLeafIcon
-(id)generateIconImage:(int)arg1 ;
@end
@interface SBIconParallaxBadgeView : UIView
@end
@interface SBIconBadgeView : UIView
@end