API  1.0.0
CPScroller.h
Go to the documentation of this file.
1 
2 @interface CPScroller : CPControl
3 {
4  CPUsableScrollerParts _usableParts;
5  CPArray _partRects;
6 
7  BOOL _isVertical // @accessors(readonly, getter=isVertical);
8  float _knobProportion;
9 
10  CPScrollerPart _hitPart;
11 
12  CPScrollerPart _trackingPart;
13  float _trackingFloatValue;
14  CGPoint _trackingStartPoint;
15 
16  CPViewAnimation _animationScroller;
17 
18  BOOL _allowFadingOut // @accessors(getter=allowFadingOut);
19  int _style;
20  CPTimer _timerFadeOut;
21  BOOL _isMouseOver;
22 }
23 @end
A timer object that can send a message after the given time interval.
Definition: CPTimer.h:2