-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathSBAlertManagerObserver.h
More file actions
23 lines (19 loc) · 946 Bytes
/
SBAlertManagerObserver.h
File metadata and controls
23 lines (19 loc) · 946 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/**
* 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 "NSObject.h"
@protocol SBAlertManagerObserver <NSObject>
@optional
-(void)alertManager:(id)manager didRemoveAlert:(id)alert fromWindow:(id)window;
-(void)alertManager:(id)manager didTearDownAlertWindow:(id)window;
-(void)alertManager:(id)manager willTearDownAlertWindow:(id)window;
-(void)alertManager:(id)manager topAlert:(id)alert requestsWallpaperStyleChangeWithAnimationFactory:(id)animationFactory;
-(void)alertManagerDidChangeTopAlert:(id)alertManager;
-(void)alertManager:(id)manager didDeactivateAlert:(id)alert top:(BOOL)top;
-(void)alertManager:(id)manager willDeactivateAlert:(id)alert top:(BOOL)top;
-(void)alertManager:(id)manager didActivateAlert:(id)alert overAlerts:(id)alerts;
-(void)alertManager:(id)manager willActivateAlert:(id)alert overAlerts:(id)alerts;
@end