2005-06-02 18:16:43 +00:00
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
|
|
extern NSString *MovedRowsType;
|
2007-02-17 15:58:39 +00:00
|
|
|
extern NSString *iTunesDropType;
|
2005-06-02 18:16:43 +00:00
|
|
|
|
|
|
|
@interface DNDArrayController : NSArrayController
|
|
|
|
{
|
|
|
|
IBOutlet NSTableView *tableView;
|
|
|
|
}
|
|
|
|
|
|
|
|
// table view drag and drop support
|
|
|
|
- (BOOL)tableView:(NSTableView *)tv writeRows:(NSArray*)rows toPasteboard:(NSPasteboard*)pboard;
|
|
|
|
- (NSDragOperation)tableView:(NSTableView*)tv validateDrop:(id <NSDraggingInfo>)info proposedRow:(int)row proposedDropOperation:(NSTableViewDropOperation)op;
|
|
|
|
- (BOOL)tableView:(NSTableView*)tv acceptDrop:(id <NSDraggingInfo>)info row:(int)row dropOperation:(NSTableViewDropOperation)op;
|
|
|
|
|
|
|
|
|
|
|
|
// utility methods
|
|
|
|
-(void)moveObjectsInArrangedObjectsFromIndexes:(NSIndexSet *)indexSet toIndex:(unsigned)index;
|
|
|
|
- (NSIndexSet *)indexSetFromRows:(NSArray *)rows;
|
|
|
|
- (int)rowsAboveRow:(int)row inIndexSet:(NSIndexSet *)indexSet;
|
|
|
|
|
|
|
|
@end
|