API  0.9.6
 All Classes Files Functions Variables Macros Groups Pages
CPBrowser.h
Go to the documentation of this file.
1 
2 @interface CPBrowser : CPControl
3 {
4  id _delegate;
5  CPString _pathSeparator;
6 
7  CPView _contentView;
8  CPScrollView _horizontalScrollView;
9  CPView _prototypeView;
10 
11  CPArray _tableViews;
12  CPArray _tableDelegates;
13 
14  id _rootItem;
15 
16  BOOL _delegateSupportsImages;
17 
18  SEL _doubleAction // @accessors(property=doubleAction);
19 
20  BOOL _allowsMultipleSelection;
21  BOOL _allowsEmptySelection;
22 
23  Class _tableViewClass // @accessors(property=tableViewClass);
24 
25  float _rowHeight;
26  float _imageWidth;
27  float _leafWidth;
28  float _minColumnWidth;
29  float _defaultColumnWidth // @accessors(property=defaultColumnWidth);
30 
31  CPArray _columnWidths;
32 }
33 @end