Cappuccino  1.0.0
 All Classes Files Functions Variables Typedefs Macros Groups Pages
CPScrollView.h
Go to the documentation of this file.
1 
2 @interface CPScrollView : CPView
3 {
4  CPClipView _contentView;
5  CPClipView _headerClipView;
6  CPView _cornerView;
7  CPView _bottomCornerView;
8 
9  id <CPScrollViewDelegate> _delegate;
10  CPTimer _scrollTimer;
11 
12  BOOL _hasVerticalScroller;
13  BOOL _hasHorizontalScroller;
14  BOOL _autohidesScrollers;
15 
16  CPScroller _verticalScroller;
17  CPScroller _horizontalScroller;
18 
19  CPInteger _recursionCount;
20  CPInteger _implementedDelegateMethods;
21 
22  float _verticalLineScroll;
23  float _verticalPageScroll;
24  float _horizontalLineScroll;
25  float _horizontalPageScroll;
26 
27  CPBorderType _borderType;
28 
29  CPTimer _timerScrollersHide;
30 
31  int _scrollerStyle;
32  int _scrollerKnobStyle;
33 }
34 @end