-
Notifications
You must be signed in to change notification settings - Fork 6
/
Oriental.h
65 lines (52 loc) · 1.58 KB
/
Oriental.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
#import <UIKit/UIKit.h>
@interface CAPackage : NSObject
+ (id)packageWithContentsOfURL:(id)arg1 type:(id)arg2 options:(id)arg3 error:(id)arg4;
@end
@interface CCUICAPackageView : UIView
@property (nonatomic, retain) CAPackage *package;
- (void)setStateName:(id)arg1;
@end
@interface SBOrientationLockManager : NSObject
+ (id)sharedInstance;
- (void)unlock;
- (void)lock;
- (BOOL)isUserLocked;
@end
@interface SBApplicationInfo : NSObject
-(BOOL)supportsInterfaceOrientation:(NSInteger)orientation;
-(BOOL)hasHiddenTag;
@end
@interface SBApplication
@property (nonatomic,readonly) NSString * bundleIdentifier;
@property (nonatomic,retain) SBApplicationInfo * info;
@end
@interface SBFTouchPassThroughViewController : UIViewController
@end
@interface UIWindow (Oriental)
- (void)_setSecure:(BOOL)arg1;
- (void)setAutorotates:(BOOL)arg1;
@end
@interface OrientalIndicatorWindow : UIWindow
+ (OrientalIndicatorWindow *)sharedWindow;
@end
@interface SBTraitsEmbeddedDisplayPipelineManager
-(BOOL)shouldProcessEventsForOrientation:(int)orientation;
@end
@interface UISystemGestureView : UIView
@property (nonatomic, retain) UIView *orientalIndicatorView;
@property (nonatomic, strong) NSTimer *orientalViewTimer;
- (void)resetOrientalState;
@end
@interface SpringBoard : UIApplication
-(SBApplication*)_accessibilityFrontMostApplication;
-(long long)_frontMostAppOrientation;
-(BOOL)isLocked;
@end
@interface SBControlCenterController : NSObject
+(id)sharedInstance;
-(BOOL)isPresented;
@end
@interface SBCoverSheetPresentationManager
+(id)sharedInstance;
-(BOOL)isPresented;
@end