API  1.0.0
CPBrowser.h
Go to the documentation of this file.
1 
2 @interface CPBrowser : CPControl
3 {
4  id <CPBrowserDelegate> _delegate;
5  CPString _pathSeparator;
6  unsigned _implementedDelegateMethods;
7 
8  CPView _contentView;
9  CPScrollView _horizontalScrollView;
10  CPView _prototypeView;
11 
12  CPArray _tableViews;
13  CPArray _tableDelegates;
14 
15  id _rootItem;
16 
17  BOOL _delegateSupportsImages;
18 
19  SEL _doubleAction // @accessors(property=doubleAction);
20 
21  BOOL _allowsMultipleSelection;
22  BOOL _allowsEmptySelection;
23 
24  Class _tableViewClass // @accessors(property=tableViewClass);
25 
26  float _rowHeight;
27  float _imageWidth;
28  float _leafWidth;
29  float _minColumnWidth;
30  float _defaultColumnWidth // @accessors(property=defaultColumnWidth);
31 
32  CPArray _columnWidths;
33 }
34 @end
An immutable string (collection of characters).
Definition: CPString.h:2
Definition: CPView.j:137