-
Notifications
You must be signed in to change notification settings - Fork 0
/
SBAlertWindow.h
50 lines (46 loc) · 1.87 KB
/
SBAlertWindow.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
/**
* This header is generated by class-dump-z 0.2-0.
* class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3.
*
* Source: (null)
*/
#import "Springboard-Structs.h"
#import <XXUnknownSuperclass.h> // Unknown library
@class NSMutableArray, SBAlertDisplay, UIView, NSMutableDictionary;
@interface SBAlertWindow : XXUnknownSuperclass {
UIView* _contentLayer;
unsigned _isAnimating : 1;
unsigned _isInvalid : 1;
unsigned _handlerActive : 1;
float _finalAlpha;
int _currentOrientation;
SBAlertDisplay* _currentDisplay;
NSMutableArray* _stackedAlertDisplays;
NSMutableDictionary* _alertToDisplayMap;
}
+(CGRect)constrainFrameToScreen:(CGRect)screen;
-(id)initWithContentRect:(CGRect)contentRect;
-(void)dealloc;
-(BOOL)isOpaque;
-(id)stackedDisplayForAlert:(id)alert;
-(id)contentLayer;
-(void)displayAlert:(id)alert;
-(BOOL)deactivateAlert:(id)alert;
-(int)displayCount;
-(void)dismissWindow:(id)window;
-(void)alertDisplayWillDismiss;
-(void)popInCurrentDisplay;
-(id)currentDisplay;
-(void)setHandlerAlreadyActive:(BOOL)active;
-(BOOL)handlerAlreadyActive;
-(void)_setupContentLayerForCurrentOrientation;
-(BOOL)_isSupportedInterfaceOrientation:(int)orientation;
-(BOOL)shouldWindowUseOnePartInterfaceRotationAnimation:(id)animation;
-(BOOL)window:(id)window shouldAutorotateToInterfaceOrientation:(int)interfaceOrientation;
-(id)rotatingContentViewForWindow:(id)window;
-(void)window:(id)window willRotateToInterfaceOrientation:(int)interfaceOrientation duration:(double)duration;
-(void)window:(id)window willAnimateRotationToInterfaceOrientation:(int)interfaceOrientation duration:(double)rduration;
-(void)window:(id)window didRotateFromInterfaceOrientation:(int)interfaceOrientation;
-(void)window:(id)window willAnimateFromContentFrame:(CGRect)contentFrame toContentFrame:(CGRect)contentFrame3;
-(void)noteInterfaceOrientationChangingTo:(int)to animated:(BOOL)sanimated;
@end