API  0.9.6
 All Classes Files Functions Variables Macros Groups Pages
CPScroller.h
Go to the documentation of this file.
1 
2 @interface CPScroller : CPControl
3 {
4  CPControlSize _controlSize;
5  CPUsableScrollerParts _usableParts;
6  CPArray _partRects;
7 
8  BOOL _isVertical // @accessors(readonly, getter=isVertical);
9  float _knobProportion;
10 
11  CPScrollerPart _hitPart;
12 
13  CPScrollerPart _trackingPart;
14  float _trackingFloatValue;
15  CGPoint _trackingStartPoint;
16 
17  CPViewAnimation _animationScroller;
18 
19  BOOL _allowFadingOut // @accessors(getter=allowFadingOut);
20  int _style;
21  CPTimer _timerFadeOut;
22  BOOL _isMouseOver;
23 }
24 @end