-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHeaderFiles.h
More file actions
105 lines (96 loc) · 3.89 KB
/
HeaderFiles.h
File metadata and controls
105 lines (96 loc) · 3.89 KB
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
#import <CoreGraphics/CoreGraphics.h>
#include <libactivator/libactivator.h>
#import <UIKit/UIKit.h>
#define NSLog(FORMAT, ...) NSLog(@"[%@]: %@",@"Traverse" , [NSString stringWithFormat:FORMAT, ##__VA_ARGS__])
@interface UIVisualEffectView(Private)
- (void)_setEffect:(id)arg1;
@end
@interface SBApplicationShortcutMenuItemView : UIView
@property(retain, nonatomic) UIApplicationShortcutItem *shortcutItem; // @synthesize shortcutItem=_shortcutItem;
- (UIImage *)invertImage:(UIImage *)image;
@end
@interface SBIconView : UIView
+ (CGSize)defaultIconImageSize;
+ (CGSize)defaultIconSize;
@end
@interface SBFolderIconView : SBIconView
- (void)setIcon:(id)arg1;
- (id)_folderIconImageView;
@end
@class SBApplicationShortcutMenu;
@interface SBIconController : UIViewController
@property(retain, nonatomic) SBApplicationShortcutMenu *presentedShortcutMenu;
+ (id)sharedInstance;
- (void)_handleShortcutMenuPeek:(id)arg1;
- (void)_revealMenuForIconView:(id)arg1 presentImmediately:(_Bool)arg2;
@end
@interface SBApplicationController : NSObject
+ (id)sharedInstance;
- (id)applicationWithBundleIdentifier:(id)arg1;
- (id)runningApplications;
- (id)allApplications;
- (id)allBundleIdentifiers;
@end
@interface SBApplicationShortcutStoreManager : NSObject
+ (id)sharedManager;
- (void)saveSynchronously;
- (void)setShortcutItems:(id)arg1 forBundleIdentifier:(id)arg2;
- (id)shortcutItemsForBundleIdentifier:(NSString*)arg1;
- (id)init;
@end
@interface SBApplication : NSObject
@property(copy, nonatomic) NSArray *staticShortcutItems;
- (NSString*)bundleIdentifier;
- (id)urlScheme;
@end;
@class SBApplicationShortcutItem;
// @protocol SBApplicationShortcutMenuDelegate <NSObject>
// - (void)applicationShortcutMenu:(SBApplicationShortcutMenu *)arg1 launchApplicationWithIconView:(SBIconView *)arg2;
// - (void)applicationShortcutMenu:(SBApplicationShortcutMenu *)arg1 startEditingForIconView:(SBIconView *)arg2;
// - (void)applicationShortcutMenu:(SBApplicationShortcutMenu *)arg1 activateShortcutItem:(SBApplicationShortcutItem *)arg2 index:(long long)arg3;
//
// @optional
// - (void)applicationShortcutMenuDidPresent:(SBApplicationShortcutMenu *)arg1;
// - (void)applicationShortcutMenuDidDismiss:(SBApplicationShortcutMenu *)arg1;
// @end
@interface SBApplicationShortcutMenu : UIView
@property (nonatomic, assign) BOOL isCC;
@property(retain, nonatomic) SBApplication *application;
- (id)initWithFrame:(CGRect)arg1 application:(id)arg2 iconView:(id)arg3 interactionProgress:(id)arg4 orientation:(long long)arg5;
- (void)_setupViews;
- (void)_peekWithContentFraction:(double)arg1 smoothedBlurFraction:(double)arg2;
- (void)dismissAnimated:(_Bool)arg1 completionHandler:(id)arg2;
- (id)_shortcutItemsToDisplay;
@end
@interface SpringBoard : UIApplication
- (void)reboot;
- (void)powerDown;
- (void)applicationOpenURL:(id)arg1;
- (_Bool)launchApplicationWithIdentifier:(id)arg1 suspended:(_Bool)arg2;
- (void)_rotateView:(id)arg1 toOrientation:(long long)arg2;
- (void)wipeDeviceNow;
@end
@interface SBApplicationShortcutMenuContentView : UIView
- (void)_presentForFraction:(double)arg1;
@end
@interface UIApplicationShortcutIcon()
@end
@interface SBSApplicationShortcutIcon : NSObject
@end
@interface SBSApplicationShortcutItem : NSObject
- (void)setIcon:(id)arg1;
- (void)setLocalizedSubtitle:(id)arg1;
- (void)setLocalizedTitle:(id)arg1;
- (void)setType:(id)arg1;
@end
@interface SBSApplicationShortcutSystemIcon : SBSApplicationShortcutIcon
- (id)initWithType:(UIApplicationShortcutIconType)arg1;
@end
@interface SBSApplicationShortcutCustomImageIcon : SBSApplicationShortcutIcon
- (id)initWithImagePNGData:(id)arg1;
@end
@interface SBSApplicationShortcutContactIcon : SBSApplicationShortcutIcon
-(instancetype)initWithContactIdentifier:(NSString *)contactIdentifier;
-(instancetype)initWithFirstName:(NSString*)firstName lastName:(NSString*)lastName;
-(instancetype)initWithFirstName:(NSString*)firstName lastName:(NSString*)lastName imageData:(NSData*)imageData;
@end