-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathSBAlertManager.h
More file actions
62 lines (58 loc) · 1.84 KB
/
SBAlertManager.h
File metadata and controls
62 lines (58 loc) · 1.84 KB
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
/**
* This header is generated by class-dump-z 0.2a.
* class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3.
*
* Source: (null)
*/
#import <XXUnknownSuperclass.h> // Unknown library
@class NSMapTable, NSMutableArray, UIScreen, SBAlertWindow;
@protocol SBAlertManagerDelegate;
__attribute__((visibility("hidden")))
@interface SBAlertManager : XXUnknownSuperclass {
UIScreen* _screen;
SBAlertWindow* _alertWindow;
SBAlertWindow* _deferredAlertWindow;
SBAlertWindow* _lockAlertWindow;
NSMutableArray* _alerts;
NSMapTable* _observers;
BOOL _deactivatingAllAlerts;
id<SBAlertManagerDelegate> _delegate;
struct {
unsigned delegateOverrideRequester : 1;
unsigned delegateShouldEnableContextHostingForRequester : 1;
} _delegateFlags;
}
@property(assign, nonatomic) id<SBAlertManagerDelegate> delegate;
-(void)alertIsReadyToBeRemovedFromView:(id)view;
-(void)alertIsReadyToBeDeactivated:(id)beDeactivated;
-(void)alert:(id)alert requestsBackgroundStyleChangeWithAnimationFactory:(id)animationFactory;
-(void)_makeAlertWindowOpaque:(BOOL)opaque;
-(void)_resetAlertWindowOpacity;
-(void)_removeFromView:(id)view;
-(void)_deactivate:(id)deactivate;
-(void)_activate:(id)activate;
-(void)removeObserver:(id)observer;
-(void)addObserver:(id)observer;
-(id)debugDescription;
-(id)description;
-(void)applicationFinishedAnimatingBeneathAlert;
-(void)applicationWillAnimateActivation;
-(void)deactivateAlertsAfterLaunch;
-(void)setAlertsShouldDeactivateAfterLaunch;
-(void)deactivateAll;
-(void)deactivate:(id)deactivate;
-(void)activate:(id)activate;
-(id)allAlerts;
-(BOOL)containsAlert:(id)alert;
-(id)stackedAlertsIncludingActiveAlert:(BOOL)alert;
-(BOOL)hasStackedAlerts;
-(id)activeAlert;
-(id)windows;
-(id)windowForAlert:(id)alert;
-(id)activeAlertWindow;
-(id)topMostWindow;
-(id)screen;
-(void)dealloc;
-(id)init;
-(id)initWithScreen:(id)screen;
@end