Patch for bezier path encoding.

Add support for new dragging methods in table view.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@25660 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Fred Kiefer 2007-12-02 20:43:32 +00:00
parent 74841fc8ad
commit 3cbe23c511
5 changed files with 110 additions and 69 deletions

View file

@ -350,9 +350,14 @@ objectValueForTableColumn: (NSTableColumn *)aTableColumn
validateDrop: (id <NSDraggingInfo>)info
proposedRow: (int)row
proposedDropOperation: (NSTableViewDropOperation)operation;
- (BOOL) tableView: (NSTableView *)tableView
- (BOOL) tableView: (NSTableView*)tableView
writeRows: (NSArray*)rows
toPasteboard: (NSPasteboard*)pboard;
#if OS_API_VERSION(MAC_OS_X_VERSION_10_4, GS_API_LATEST)
- (BOOL) tableView: (NSTableView*)tableView
writeRowsWithIndexes: (NSIndexSet*)rows
toPasteboard: (NSPasteboard*)pboard;
#endif
@end
APPKIT_EXPORT NSString *NSTableViewColumnDidMoveNotification;