API  0.9.7
 All Classes Files Functions Variables Macros Groups Pages
CPTextField.h
Go to the documentation of this file.
1 
2 @interface CPTextField : CPControl
3 {
4  BOOL _isEditing;
5 
6  BOOL _isEditable;
7  BOOL _isSelectable;
8  BOOL _isSecure;
9  BOOL _willBecomeFirstResponderByClick;
10 
11  BOOL _drawsBackground;
12 
13  CPColor _textFieldBackgroundColor;
14 
15  CPString _placeholderString;
16  CPString _stringValue;
17 
18  id _delegate;
19 
20  // NS-style Display Properties
21  CPTextFieldBezelStyle _bezelStyle;
22  BOOL _isBordered;
23  CPControlSize _controlSize;
24 }
25 @end