![]() |
API 0.9.5
|
00001 00002 @interface CPCollectionView : CPView 00003 { 00004 CPArray _content; 00005 CPArray _items; 00006 00007 CPData _itemData; 00008 CPCollectionViewItem _itemPrototype; 00009 CPCollectionViewItem _itemForDragging; 00010 CPMutableArray _cachedItems; 00011 00012 unsigned _maxNumberOfRows; 00013 unsigned _maxNumberOfColumns; 00014 00015 CGSize _minItemSize; 00016 CGSize _maxItemSize; 00017 00018 CPArray _backgroundColors; 00019 00020 float _tileWidth; 00021 00022 BOOL _isSelectable; 00023 BOOL _allowsMultipleSelection; 00024 BOOL _allowsEmptySelection; 00025 CPIndexSet _selectionIndexes; 00026 00027 CGSize _itemSize; 00028 00029 float _horizontalMargin; 00030 float _verticalMargin; 00031 00032 unsigned _numberOfRows; 00033 unsigned _numberOfColumns; 00034 00035 id _delegate; 00036 00037 CPEvent _mouseDownEvent; 00038 } 00039 @end