forked from khanhduytran0/TrollPad
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSpringBoard.h
More file actions
28 lines (21 loc) · 767 Bytes
/
SpringBoard.h
File metadata and controls
28 lines (21 loc) · 767 Bytes
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
#import <UIKit/UIKit.h>
@interface SBApplicationInfo : NSObject
@property(assign, nonatomic) UIInterfaceOrientationMask supportedInterfaceOrientations;
@end
@interface SBApplication : NSObject
@property(nonatomic, readonly) SBApplicationInfo *info;
@end
@interface SBAppSwitcherSettings : NSObject
@property(assign) CGFloat spacingBetweenLeadingEdgeAndIcon, spacingBetweenTrailingEdgeAndLabels;
@end
@interface SBExternalDisplayRuntimeAvailabilitySettings : NSObject
@property(nonatomic, assign) BOOL requirePointer, requireHardwareKeyboard;
@end
@interface SBFluidSwitcherItemContainer : UIView
- (BOOL)isResizingAllowed;
@end
@interface SBAppResizeGrabberView : UIView
@end
@interface SBWindowScene : UIWindowScene
- (BOOL)isExternalDisplayWindowScene;
@end