mirror of
https://github.com/ksherlock/ample.git
synced 2024-10-31 15:04:56 +00:00
drag-n-drop files to the recent disk images list.
This commit is contained in:
parent
376f808d29
commit
531c3096e9
@ -33,8 +33,11 @@
|
|||||||
@(12345), @"size",
|
@(12345), @"size",
|
||||||
nil]
|
nil]
|
||||||
]];
|
]];
|
||||||
|
|
||||||
[super windowDidLoad];
|
[super windowDidLoad];
|
||||||
|
|
||||||
|
[_tableView registerForDraggedTypes: @[NSPasteboardTypeURL]];
|
||||||
|
|
||||||
// Implement this method to handle any initialization after your window controller's window has been loaded from its nib file.
|
// Implement this method to handle any initialization after your window controller's window has been loaded from its nib file.
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -76,5 +79,39 @@
|
|||||||
return YES;
|
return YES;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
-(NSDragOperation)tableView:(NSTableView *)tableView validateDrop:(id<NSDraggingInfo>)info proposedRow:(NSInteger)row proposedDropOperation:(NSTableViewDropOperation)dropOperation {
|
||||||
|
|
||||||
|
return NSDragOperationCopy;
|
||||||
|
}
|
||||||
|
|
||||||
|
-(BOOL)tableView:(NSTableView *)tableView acceptDrop:(id<NSDraggingInfo>)info row:(NSInteger)row dropOperation:(NSTableViewDropOperation)dropOperation {
|
||||||
|
|
||||||
|
|
||||||
|
NSPasteboard * pb = [info draggingPasteboard];
|
||||||
|
NSURL *url = [NSURL URLFromPasteboard: pb];
|
||||||
|
if (!url) return NO;
|
||||||
|
|
||||||
|
NSFileManager *fm = [NSFileManager defaultManager];
|
||||||
|
|
||||||
|
NSString *path = [NSString stringWithCString: [url fileSystemRepresentation] encoding: NSUTF8StringEncoding];
|
||||||
|
if (!path) return NO;
|
||||||
|
|
||||||
|
NSError *error = nil;
|
||||||
|
NSDictionary *attr = [fm attributesOfItemAtPath: path error: &error];
|
||||||
|
if (error) {
|
||||||
|
NSLog(@"%@ : %@", path, error);
|
||||||
|
return NO;
|
||||||
|
}
|
||||||
|
|
||||||
|
NSNumber *size = [attr objectForKey: NSFileSize];
|
||||||
|
|
||||||
|
NSMutableDictionary *d = [NSMutableDictionary dictionaryWithObjectsAndKeys:
|
||||||
|
path, @"path",
|
||||||
|
size, @"size"
|
||||||
|
, nil];
|
||||||
|
|
||||||
|
[_arrayController addObject: d];
|
||||||
|
return YES;
|
||||||
|
}
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
Loading…
Reference in New Issue
Block a user