-
Notifications
You must be signed in to change notification settings - Fork 5
/
headers.h
94 lines (81 loc) · 3.02 KB
/
headers.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
@interface CSwitcherFlowLayout : UICollectionViewFlowLayout
@end
@interface SBControlCenterSectionViewController : UIViewController
@end
@interface CSwitcherController : UIViewController <UICollectionViewDataSource, UICollectionViewDelegate, UICollectionViewDelegateFlowLayout>
@property (nonatomic, strong) UICollectionView *collectionView;
@property (nonatomic, strong, setter=setRecentApps:) NSMutableArray *recentApplications;
@property CGFloat controlHeight;
+(CSwitcherController *)sharedInstance;
- (CGFloat)newHeightFromOld:(CGFloat)oldHeight orientation:(NSInteger)orientation;
- (void)setRecentApps:(NSMutableArray *)arg;
- (id)displayItemForCell:(id)cell;
@end
@interface UIApplication (cs)
- (bool)launchApplicationWithIdentifier:(id)arg1 suspended:(bool)arg2;
@end
@interface SBAppSwitcherModel : NSObject
+(SBAppSwitcherModel *) sharedInstance;
-(id)snapshotOfFlattenedArrayOfAppIdentifiersWhichIsOnlyTemporary;
//iOS 9
- (id)mainSwitcherDisplayItems;
-(void)_saveRecents;
@end
@interface SBAppSwitcherController
+(SBAppSwitcherController *)sharedController;
@end
@interface SBAppSwitcherSnapshotView : UIView
-(id)initWithDisplayItem:(id)arg1 application:(id)arg2 orientation:(long long)arg3 async:(BOOL)arg4 withQueue:(id)arg5 statusBarCache:(id)arg6 ;
+ (id)appSwitcherSnapshotViewForDisplayItem:(id)arg1 orientation:(long long)arg2 loadAsync:(_Bool)arg3 withQueue:(id)arg4;
@end
@interface SBApplicationController : NSObject
+(SBApplicationController *)sharedInstanceIfExists;
-(id)applicationWithBundleIdentifier:(id)arg1 ;
+ (id)sharedInstance;
@end
@interface XBApplicationSnapshotManifest :NSObject
- (NSString *)containerPath;
@end
@interface SBApplication : NSObject
- (id)bundleIdentifier;
- (XBApplicationSnapshotManifest *)_snapshotManifest;
@end
@interface SBIcon : NSObject
- (id)applicationBundleID;
@end
@interface SBApplicationIcon : SBIcon
-(id)initWithApplication:(id)arg1 ;
@end
@interface SBIconView : UIView
@property (assign,nonatomic) id delegate;
@property (nonatomic,retain) SBIcon * icon;
- (id)initWithDefaultSize;
- (id)initWithContentType:(NSUInteger)arg;
+ (CGSize)defaultIconSize;
- (void)setHighlighted:(BOOL)arg1;
- (id)labelView;
- (id)_iconImageView;
- (void)setLabelHidden:(BOOL)arg1;
+ (CGSize)defaultIconImageSize;
- (void)_applyIconAccessoryAlpha:(double)arg1;
@end
@interface SpringBoard
-(long long)activeInterfaceOrientation;
@end
@interface SBControlCenterContentView
-(void)_addSectionController:(id)arg1 ;
- (double)contentHeightForOrientation:(long long)arg1;
- (id)quickLaunchSection;
@end
@interface SBDisplayItem
@property (nonatomic, assign) NSString *displayIdentifier;
@end
@interface SBAppSwitcherPageView : UIView
@property(retain, nonatomic) SBDisplayItem *displayItem; // @synthesize displayItem=_displayItem;
@end
@interface CSwitcherCell : UICollectionViewCell <UIScrollViewDelegate>
@property (nonatomic, strong) SBIconView *iconView;
@property (nonatomic, strong) UIImage *snapshot;
@property (nonatomic, strong) UIScrollView *scrollview;
@property (nonatomic, strong) UIImageView *snapshotView;
@end