-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathheaders.h
More file actions
63 lines (53 loc) · 1.88 KB
/
headers.h
File metadata and controls
63 lines (53 loc) · 1.88 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
62
63
@interface SBUserAgent
- (void)lockAndDimDevice;
+ (id)sharedUserAgent;
@end
@interface SBLockScreenViewController
-(void)passcodeLockViewPasscodeEntered:(id)entered;
@end
@interface SBDeviceLockController : NSObject
- (BOOL)attemptDeviceUnlockWithPassword:(id)fp8 appRequested:(BOOL)fp12;
- (BOOL)isPasscodeLocked;
+ (id)sharedController;
- (BOOL)deviceHasPasscodeSet;
// TimePasscode / Pro
- (NSString *)getCurrentPasscode;
- (NSString *)getCurrentPasscode:(NSDictionary*)arg1;
@end
@interface SBLockScreenManager : NSObject
@property(readonly, assign, nonatomic) SBLockScreenViewController/*Base*/* lockScreenViewController;
- (BOOL)attemptUnlockWithPasscode:(id)fp8;
- (void)_finishUIUnlockFromSource:(int)fp8 withOptions:(id)fp12;
- (void)unlockUIFromSource:(int)fp8 withOptions:(id)fp12;
- (BOOL)isUILocked;
@end
@interface SBLockScreenManager (AndroidLockXT)
- (BOOL)androidlockIsEnabled;
- (BOOL)androidlockIsLocked;
- (BOOL)androidlockAttemptUnlockWithUnlockActionContext:(id)unlockActionContext;
- (BOOL)androidlockAttemptUnlockWithUnlockActionContext:(id)unlockActionContext animatingPasscode:(BOOL)animatingPasscode;
@end
@interface BBBulletinRequest : NSObject
@property (nonatomic, copy) NSString *title;
@property (nonatomic, copy) NSString *message;
@property (nonatomic, copy) NSString *sectionID;
@end
@interface SBBulletinBannerController : NSObject
+ (SBBulletinBannerController *)sharedInstance;
- (void)observer:(id)observer addBulletin:(BBBulletinRequest *)bulletin forFeed:(int)feed;
@end
@interface SBLockStateAggregator
+(id)sharedInstance;
-(void)_updateLockState;
-(BOOL)hasAnyLockState;
-(unsigned)lockState;
@end
@interface SBUIPasscodeLockViewWithKeyboard
- (id)passcode;
@end
@interface SBAwayController : NSObject
+(id) sharedAwayController;
-(BOOL) attemptDeviceUnlockWithPassword:(NSString *)arg1 lockViewOwner:(id)arg2;
@end
@interface CSAwayController : SBAwayController
@end