-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathSigne.h
28 lines (22 loc) · 905 Bytes
/
Signe.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
#define kIdentifier @"me.kritanta.signeprefs"
#define kSettingsChangedNotification (CFStringRef)@"me.kritanta.signeprefs/Prefs"
#define kSettingsPath @"/var/mobile/Library/Preferences/me.kritanta.signeprefs.plist"
#include "BGNumberCanvas.h"
#define kBorderWidth 3.0
#define kCornerRadius 5.0
@interface UISystemGestureView : UIView
@property (nonatomic, retain) BGNumberCanvas *recognitionCanvas;
- (void)insertCanvas;
@property (nonatomic, retain) NSData *initial;
@property (nonatomic, assign) BOOL injected;
@property (nonatomic, retain) CALayer *borderLayer;
@end
@interface FBSystemGestureView : UISystemGestureView
@end
@interface SpringBoard : UIApplication
-(BOOL)_handlePhysicalButtonEvent:(id)arg1;
- (void)activateTouchRecognizer;
@property (nonatomic, assign) BOOL signeActive;
@property (nonatomic, assign) BOOL volDownActive;
@property (nonatomic, retain) NSTimer *pressedTimer;
@end