Up

NSTableView

Authors

Nicola Pero (n.pero@mi.flashnet.it)
Pierre-Yves Rivaille (pyrivail@ens-lyon.fr)
Fred Kiefer (fredkiefer@gmx.de)

Copyright: (C) 2000 Free Software Foundation, Inc.


Contents -

  1. Software documentation for the NSObject(NSTableViewDelegate) informal protocol
  2. Software documentation for the NSTableViewDelegate protocol

Software documentation for the NSObject(NSTableViewDelegate) informal protocol

NSObject(NSTableViewDelegate)

Declared in:
AppKit/NSTableView.h
Availability: OpenStep

Description forthcoming.
Method summary

selectionShouldChangeInTableView: 

- (BOOL) selectionShouldChangeInTableView: (NSTableView*)aTableView;
Availability: OpenStep

Description forthcoming.

tableView: dataCellForTableColumn: row: 

- (NSCell*) tableView: (NSTableView*)aTableView dataCellForTableColumn: (NSTableColumn*)aTableColumn row: (NSInteger)rowIndex;
Availability: MacOS-X 10.5.0

Description forthcoming.

tableView: didClickTableColumn: 

- (void) tableView: (NSTableView*)tableView didClickTableColumn: (NSTableColumn*)tableColumn;
Availability: MacOS-X 10.3.0

Description forthcoming.

tableView: didDragTableColumn: 

- (void) tableView: (NSTableView*)tableView didDragTableColumn: (NSTableColumn*)tableColumn;
Availability: MacOS-X 10.3.0

Description forthcoming.

tableView: heightOfRow: 

- (CGFloat) tableView: (NSTableView*)tableView heightOfRow: (NSInteger)row;
Availability: MacOS-X 10.4.0

Description forthcoming.

tableView: mouseDownInHeaderOfTableColumn: 

- (void) tableView: (NSTableView*)tableView mouseDownInHeaderOfTableColumn: (NSTableColumn*)tableColumn;
Availability: MacOS-X 10.3.0

Description forthcoming.

tableView: shouldEditTableColumn: row: 

- (BOOL) tableView: (NSTableView*)aTableView shouldEditTableColumn: (NSTableColumn*)aTableColumn row: (NSInteger)rowIndex;
Availability: OpenStep

Description forthcoming.

tableView: shouldSelectRow: 

- (BOOL) tableView: (NSTableView*)aTableView shouldSelectRow: (NSInteger)rowIndex;
Availability: OpenStep

Description forthcoming.

tableView: shouldSelectTableColumn: 

- (BOOL) tableView: (NSTableView*)aTableView shouldSelectTableColumn: (NSTableColumn*)aTableColumn;
Availability: OpenStep

Description forthcoming.

tableView: toolTipForCell: rect: tableColumn: row: mouseLocation: 

- (NSString*) tableView: (NSTableView*)tableView toolTipForCell: (NSCell*)cell rect: (NSRect*)rect tableColumn: (NSTableColumn*)col row: (NSInteger)row mouseLocation: (NSPoint)mouse;
Availability: MacOS-X 10.4.0

Description forthcoming.

tableView: willDisplayCell: forTableColumn: row: 

- (void) tableView: (NSTableView*)aTableView willDisplayCell: (id)aCell forTableColumn: (NSTableColumn*)aTableColumn row: (NSInteger)rowIndex;
Availability: OpenStep

Description forthcoming.

tableViewColumnDidMove: 

- (void) tableViewColumnDidMove: (NSNotification*)aNotification;
Availability: OpenStep

Description forthcoming.

tableViewColumnDidResize: 

- (void) tableViewColumnDidResize: (NSNotification*)aNotification;
Availability: OpenStep

Description forthcoming.

tableViewSelectionDidChange: 

- (void) tableViewSelectionDidChange: (NSNotification*)aNotification;
Availability: OpenStep

Description forthcoming.

tableViewSelectionIsChanging: 

- (void) tableViewSelectionIsChanging: (NSNotification*)aNotification;
Availability: OpenStep

Description forthcoming.

Software documentation for the NSTableViewDelegate protocol

NSTableViewDelegate

Declared in:
AppKit/NSTableView.h
Conforms to:
NSObject
Availability: OpenStep

Description forthcoming.

Up