* Headers/AppKit/NSOutlineView.h:

* Source/NSOutlineView.m: Add support for
outlineView:dataCellForTableColumn:item: delegate method
* Headers/AppKit/NSTableView.h:
* Source/NSTableView.m: Add support for
tableView:dataCellForTableColumn:row: delegate method


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@34717 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Eric Wasylishen 2012-02-03 21:41:41 +00:00
parent 1127241753
commit bd5ff5ba95
5 changed files with 71 additions and 9 deletions

View file

@ -268,6 +268,13 @@ shouldSelectTableColumn: (NSTableColumn *)tableColumn;
willDisplayCell: (id)cell
forTableColumn: (NSTableColumn *)tableColumn
item: (id)item;
#if OS_API_VERSION(MAC_OS_X_VERSION_10_5, GS_API_LATEST)
- (NSCell *) outlineView: (NSOutlineView *)outlineView
dataCellForTableColumn: (NSTableColumn *)aTableColumn
item: (id)item;
#endif
/**
* Called when the given cell in the outline column is about to be displayed. This method is
* useful for making last second modifications to what will be shown.