forked from kennytm/iphone-private-frameworks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSBPasscodeField.h
52 lines (50 loc) · 1.54 KB
/
SBPasscodeField.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
50
51
52
/**
* This header is generated by class-dump-z 0.2-1.
* class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3.
*
* Source: (null)
*/
#import <Availability2.h>
#import <UIKit/UIPasscodeField.h>
@interface SBPasscodeField : UIPasscodeField {
#if __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_3_2
int _style;
float _okFontSize;
float _cancelFontSize;
float _buttonWidth;
BOOL _showsCancelButton;
#else
float _width;
#endif
BOOL _isAlphanumericField;
}
#if __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_3_2
@property(assign, nonatomic) BOOL isAlphanumericField;
@property(assign, nonatomic) BOOL showsCancelButton;
@property(assign, nonatomic) int clearButtonMode;
@property(assign, nonatomic, getter=isOkayButtonEnabled) BOOL okayButtonEnabled;
// inherited: +(Class)textFieldClass;
-(id)initWithStyle:(int)style;
-(id)_entryField;
// inherited: -(void)setNumberOfEntryFields:(int)entryFields opaqueBackground:(BOOL)background;
// inherited: -(void)setShowsOKButton:(BOOL)button;
-(id)textInputTraits;
-(id)_localizedOKString;
-(id)_localizedCancelString;
-(void)_updateButtonMetrics;
-(void)_updateButtonTitle;
-(void)_updateButtonFrame;
// inherited: -(void)_updateFields;
-(BOOL)textFieldShouldClear:(id)textField;
// inherited: -(void)_textDidChange;
#else
-(id)okButton;
-(void)setIsAlphanumericField:(BOOL)field;
// inherited: -(void)_updateFields;
// inherited: -(void)textFieldDidResignFirstResponder:(id)textField;
// inherited: -(void)_textDidChange;
-(id)entryField;
-(void)setButtonWidth:(float)width;
-(void)adjustOKButtonFrame;
#endif
@end