-
Notifications
You must be signed in to change notification settings - Fork 7
/
Tweak.h
42 lines (35 loc) · 1.49 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
// WallpaperLoader Headers
enum WKWallpaperType {
Still,
Live
};
enum WKWallpaperStyle {
Default,
Dark
};
@interface WKWallpaperBundle : NSObject
@property (nonatomic, retain) NSNumber *wallpaperType;
@property (nonatomic, retain) NSNumber *loadTag;
- (id)initWithDynamicDictionary:(id)arg1 identifier:(unsigned long long)arg2;
- (id)fileBasedWallpaperForLocation:(id)arg1 andAppearance:(id)appearance;
- (id)valueBasedWallpaperForLocation:(id)arg1 andAppearance:(id)appearance;
- (void)set_defaultAppearanceWallpapers:(NSMutableDictionary *)dict;
- (void)test;
@end
@interface WKWallpaperBundleCollection : NSObject
@property (nonatomic, assign) unsigned long long wallpaperType;
- (NSString *)displayName;
- (long long)numberOfItems;
- (void)setPreviewBundle:(WKWallpaperBundle *)bundle;
- (id)wallpaperBundleAtIndex:(unsigned long long)index;
- (id)initWithWallpaperType:(unsigned long long)type previewBundle:(id)bundle;
@end
@interface WKAbstractWallpaper : NSObject
@end
@interface WKStillWallpaper : WKAbstractWallpaper
- (id)initWithIdentifier:(unsigned long long)arg1 name:(id)arg2 thumbnailImageURL:(id)arg3 fullsizeImageURL:(id)arg4;
- (id)initWithIdentifier:(unsigned long long)arg1 name:(id)arg2 thumbnailImageURL:(id)arg3 fullsizeImageURL:(id)arg4 renderedImageURL:(id)arg5;
@end
@interface WKLiveWallpaper : WKAbstractWallpaper
- (id)initWithIdentifier:(unsigned long long)arg1 name:(id)arg2 thumbnailImageURL:(id)arg3 fullsizeImageURL:(id)arg4 videoAssetURL:(id)arg5 stillTimeInVideo:(double)arg6;
@end