API  1.0.0
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  BOOL _invokedByUserEvent;
11 
12  BOOL _drawsBackground;
13 
14  CPColor _textFieldBackgroundColor;
15 
16  CPString _placeholderString;
17  CPString _stringValue;
18 
19  id <CPTextFieldDelegate> _delegate;
20  unsigned _implementedDelegateMethods;
21 
22  // NS-style Display Properties
23  CPTextFieldBezelStyle _bezelStyle;
24  BOOL _isBordered;
25  BOOL _usesSingleLineMode;
26  BOOL _wraps;
27  BOOL _scrolls;
28 }
29 @end
An immutable string (collection of characters).
Definition: CPString.h:2