blob: 108590230eb7ae150c4e79a1a02b2c3f0859ccac (
plain)
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
|
#import <MediaRemote.h>
@interface PLPlatterCustomContentView : UIView
@end
@interface QRTMediaModuleViewController : UIView
@end
@interface SBDisplayItem: NSObject
@property (nonatomic,copy,readonly) NSString * bundleIdentifier;
@end
@interface SBApplication : NSObject
@property (nonatomic,readonly) NSString * bundleIdentifier;
@end
@interface SBAppLayout:NSObject
@property (nonatomic,copy) NSDictionary * rolesToLayoutItemsMap;
@end
@interface SBMainSwitcherViewController: UIViewController
-(void)_deleteAppLayout:(id)arg1 forReason:(long long)arg2;
+(id)sharedInstance;
-(id)recentAppLayouts;
@end
@interface SBMediaController : NSObject
+(id)sharedInstance;
-(SBApplication *)nowPlayingApplication;
-(BOOL)isPaused;
-(BOOL)isPlaying;
@end
@interface CSCoverSheetViewControllerBase : UIViewController
@end
@interface CSNotificationAdjunctListViewController : CSCoverSheetViewControllerBase {
NSMutableDictionary* _identifiersToItems;
}
@property (nonatomic,retain) NSMutableDictionary * identifiersToItems;
-(void)_removeItem:(id)arg1 animated:(BOOL)arg2;
-(void)_insertItem:(id)arg1 animated:(BOOL)arg2;
@end
@interface CSCombinedListViewController : CSCoverSheetViewControllerBase
-(CSNotificationAdjunctListViewController *)adjunctListViewController;
@end
@interface CSPresentationViewController : CSCoverSheetViewControllerBase
@end
@interface CSPageViewController : CSPresentationViewController
@end
@interface CSMainPageContentViewController : CSPageViewController
-(CSCombinedListViewController *)combinedListViewController;
@end
@interface CSCoverSheetViewController : UIViewController
-(CSMainPageContentViewController *)mainPageContentViewController;
@end
@interface SBLockScreenManager : NSObject
+(id)sharedInstance;
-(CSCoverSheetViewController *)coverSheetViewController;
@end
@interface CSAdjunctListItemView : UIView
@end
@interface CSAdjunctListItem : NSObject
@end
@interface CSMediaControlsView : UIView
@end
|