API  1.0.0
CPControl.h
Go to the documentation of this file.
1 
2 @interface CPControl : CPView
3 {
4  id _value;
5  CPFormatter _formatter // @accessors(property=formatter);
6 
7  // Target-Action Support
8  id _target;
9  SEL _action;
10  int _sendActionOn;
11  BOOL _sendsActionOnEndEditing // @accessors(property=sendsActionOnEndEditing);
12 
13  // Mouse Tracking Support
14  BOOL _continuousTracking;
15  BOOL _trackingWasWithinFrame;
16  unsigned _trackingMouseDownFlags;
17  CGPoint _previousTrackingLocation;
18 
19  CPControlSize _controlSize;
20 
21  CPWritingDirection _baseWritingDirection // @accessors(property=baseWritingDirection);
22 }
23 @end
CPFormatter is an abstract class that declares an interface for objects that create, interpret, and validate the textual representation of cell contents. The Foundation framework provides two concrete subclasses of CPFormatter to generate these objects: CPNumberFormatter and CPDateFormatter.
Definition: CPFormatter.h:2
Definition: CPView.j:137