API  1.0.0
CPTableColumn.h
Go to the documentation of this file.
1 
2 @interface CPTableColumn : CPObject
3 {
4  CPTableView _tableView;
5  CPView _headerView;
6  CPView _dataView;
7  CPData _dataViewData;
8 
9  float _width;
10  float _minWidth;
11  float _maxWidth;
12  unsigned _resizingMask;
13 
14  id _identifier;
15  BOOL _isEditable;
16  CPSortDescriptor _sortDescriptorPrototype;
17  BOOL _isHidden;
18  CPString _headerToolTip;
19 
20  BOOL _disableResizingPosting // @accessors(property=disableResizingPosting);
21 }
22 @end
A Cappuccino wrapper for any data type.
Definition: CPData.h:2
An immutable string (collection of characters).
Definition: CPString.h:2
Holds attributes necessary to describe how to sort a set of objects.
Definition: CPView.j:137