forked from ryannair05/MitsuhaForever
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTweak.h
171 lines (116 loc) · 4.5 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
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
//
// Tweak.h
// Mitsuha
//
// Created by c0ldra1n on 2/17/17.
// Copyright © 2017 c0ldra1n. All rights reserved.
//
#import <UIKit/UIKit.h>
#import <MitsuhaForever/MSHFConfig.h>
#import <MitsuhaForever/MSHFView.h>
@interface SPTImageBlurView : UIView
@property(retain, nonatomic)
UIView *tintView; // @synthesize tintView=_tintView;
- (void)updateBlurredImageIfNeeded;
- (void)updateBlurIntensity;
- (void)applyCustomLayout;
- (void)updateGradientDark:(BOOL)darkbackground;
@end
@interface SPTNowPlayingBackgroundViewController : UIViewController
@property(retain, nonatomic) MSHFView *mshfview;
- (void)applyCustomLayout;
@end
@interface SPTNowPlayingCoverArtImageView : UIImageView
- (void)readjustWaveColor;
@end
@interface SPTCarouselBlurBackgroundView : UIView
@property(retain, nonatomic) SPTImageBlurView *
backgroundImageBlurView; // @synthesize
// backgroundImageBlurView=_backgroundImageBlurView;
@end
@interface SPTUniversalController : UIViewController
@property(retain, nonatomic) MSHFView *mshfview;
@property(retain, nonatomic) SPTCarouselBlurBackgroundView
*backgroundView; // @synthesize backgroundView=_backgroundView;
- (void)applyCustomLayout;
@end
@interface SPTNowPlayingShowsFormatBackgroundViewController
: SPTUniversalController
@end
@interface SPTNowPlayingBackgroundMusicViewController : SPTUniversalController
@end
@interface SPTNowPlayingContentCell : UIView
@property(retain, nonatomic) UIImage *cellContentRepresentation;
@end
@interface SPTNowPlayingCoverArtCell : UIView
@property(nonatomic) CGSize cellSize; // @synthesize cellSize=_cellSize;
@property(retain, nonatomic)
UIView *contentView; // @synthesize contentView=_contentView;
@property(nonatomic) BOOL selected;
@property(nonatomic) BOOL shouldShowCoverArtView;
@property(retain, nonatomic) UIImage *cellContentRepresentation;
@property(nonatomic, retain) SPTNowPlayingCoverArtImageView *imageView;
- (void)setSelected:(BOOL)selected;
- (void)readjustWaveColor;
@end
@interface SPTNowPlayingCoverArtView : UIView
@end
@interface SPTNowPlayingCarouselContentUnitView : UIView
@property(retain, nonatomic) SPTNowPlayingCoverArtView
*coverArtView; // @synthesize coverArtView=_coverArtView;
@end
@interface SPTNowPlayingCarouselAreaViewController : UIViewController
@property(retain, nonatomic)
SPTNowPlayingCarouselContentUnitView *view; // @dynamic view;
@end
@interface SPTPlayerImpl : NSObject
- (id)skipToNextTrackWithOptions:(id)arg1 track:(id)arg2;
- (id)skipToPreviousTrackWithOptions:(id)arg1 track:(id)arg2;
- (id)skipToNextTrackWithOptions:(id)arg1;
- (id)skipToPreviousTrackWithOptions:(id)arg1;
@end
@interface SpotifyAppDelegate : NSObject <UIApplicationDelegate>
@end
@interface SPTNowPlayingModel : NSObject
- (void)player:(id)arg1 stateDidChange:(id)arg2 fromState:(id)arg3;
- (void)updateWithPlayerState:(id)arg1;
- (void)applyColorChange;
@end
@interface CFWColorInfo : NSObject
+ (id)colorInfoWithAnalyzedInfo:(struct AnalyzedInfo)arg1;
@property(nonatomic, getter=isBackgroundDark)
_Bool backgroundDark; // @synthesize backgroundDark=_backgroundDark;
@property(retain, nonatomic)
UIColor *secondaryColor; // @synthesize secondaryColor=_secondaryColor;
@property(retain, nonatomic)
UIColor *primaryColor; // @synthesize primaryColor=_primaryColor;
@property(retain, nonatomic)
UIColor *backgroundColor; // @synthesize backgroundColor=_backgroundColor;
- (void)dealloc;
- (id)description;
- (_Bool)isEqual:(id)arg1;
- (id)initWithAnalyzedInfo:(struct AnalyzedInfo)arg1;
@end
@interface CFWSpotifyStateManager : NSObject
+ (id)sharedManager;
@property(readonly, retain, nonatomic)
CFWColorInfo *barColorInfo; // @synthesize barColorInfo=_barColorInfo;
@property(readonly, retain, nonatomic)
NSString *barIdentifier; // @synthesize barIdentifier=_barIdentifier;
@property(readonly, retain, nonatomic)
CFWColorInfo *mainColorInfo; // @synthesize mainColorInfo=_mainColorInfo;
@property(readonly, retain, nonatomic)
NSString *mainIdentifier; // @synthesize mainIdentifier=_mainIdentifier;
- (void)analysisCompletedForIdentifier:(id)arg1 colorInfo:(id)arg2;
- (void)mainIdentifierPossiblyChanged:(id)arg1 colorInfo:(id)arg2;
- (void)barIdentifierPossiblyChanged:(id)arg1 colorInfo:(id)arg2;
- (void)dealloc;
@end
@interface CFWPrefsManager : NSObject
+ (id)sharedInstance;
@end
@interface SPTNowPlayingScrollViewController : SPTUniversalController
@end
@interface SPTNowPlayingCoverArtImageContentView : UIView
- (void)setImage:(UIImage *)image;
@end