forked from HearseDev/3developer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTweak.h
More file actions
36 lines (30 loc) · 1.27 KB
/
Tweak.h
File metadata and controls
36 lines (30 loc) · 1.27 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
#include "NSTask.h"
#include <SpringBoard/SBApplication.h>
#include <SpringBoard/SBApplicationController.h>
#include <SpringBoard/SBApplicationInfo.h>
#include <Foundation/Foundation.h>
@interface SBSApplicationShortcutIcon : NSObject
@end
@interface SBApplication (private)
@property(retain, nonatomic) SBApplicationInfo *info; // ivar: _appInfo
@end
@interface UIApplication (private)
- (void)applicationOpenURL:(id)arg1;
- (bool)launchApplicationWithIdentifier:(id)arg1 suspended:(bool)arg2;
@end
@interface SBSApplicationShortcutItem : NSObject
@property(nonatomic, retain) NSString *type;
@property(nonatomic, copy) NSString *localizedTitle;
@property (copy, nonatomic) NSString *localizedSubtitle; // ivar: _localizedSubtitle
@property (copy, nonatomic) NSString *bundleIdentifierToLaunch; // ivar: _bundleIdentifierToLaunch
@property(nonatomic, copy) SBSApplicationShortcutIcon *icon;
@property (copy, nonatomic) NSDictionary *userInfo;
@end
@interface SBIconView : UIView
@property (readonly, copy, nonatomic) NSString *applicationBundleIdentifierForShortcuts;
@end
@interface SBSApplicationShortcutCustomImageIcon : SBSApplicationShortcutIcon
@property(nonatomic, readwrite) BOOL isTemplate;
- (id)initWithImagePNGData:(id)arg1;
- (BOOL)isTemplate;
@end