mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 12:52:21 +00:00
90 lines
3.5 KiB
Objective-C
90 lines
3.5 KiB
Objective-C
//
|
|
// MPAttachmentTableDataSource.m
|
|
// MacPass
|
|
//
|
|
// Created by Michael Starke on 01.08.13.
|
|
// Copyright (c) 2013 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
//
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
//
|
|
|
|
#import "MPAttachmentTableDataSource.h"
|
|
#import "MPDocument.h"
|
|
|
|
@implementation MPAttachmentTableDataSource
|
|
|
|
- (NSDragOperation)tableView:(NSTableView *)tableView validateDrop:(id<NSDraggingInfo>)info proposedRow:(NSInteger)row proposedDropOperation:(NSTableViewDropOperation)dropOperation {
|
|
NSPasteboard *draggingPasteBoard = [info draggingPasteboard];
|
|
NSArray *arrayOfURLs = [draggingPasteBoard readObjectsForClasses:@[NSURL.class] options:nil];
|
|
NSUInteger numberOfDirectories = 0;
|
|
for(NSURL *url in arrayOfURLs) {
|
|
if(url.fileURL || url.fileReferenceURL) {
|
|
NSError *error = nil;
|
|
NSDictionary *resourceKeys = [url resourceValuesForKeys:@[NSURLIsDirectoryKey] error:&error];
|
|
if( [resourceKeys[ NSURLIsDirectoryKey ] boolValue] == YES ) {
|
|
numberOfDirectories++;
|
|
}
|
|
continue;
|
|
}
|
|
return NSDragOperationNone;
|
|
}
|
|
if(numberOfDirectories == arrayOfURLs.count) {
|
|
return NSDragOperationNone;
|
|
}
|
|
return NSDragOperationCopy;
|
|
}
|
|
|
|
- (BOOL)tableView:(NSTableView *)tableView acceptDrop:(id<NSDraggingInfo>)info row:(NSInteger)row dropOperation:(NSTableViewDropOperation)dropOperation {
|
|
MPDocument *document = tableView.window.windowController.document;
|
|
KPKEntry *entry = document.selectedEntries.count == 1 ? document.selectedEntries.lastObject : nil;
|
|
|
|
NSPasteboard *draggingPasteBoard = [info draggingPasteboard];
|
|
NSArray *arrayOfURLs = [draggingPasteBoard readObjectsForClasses:@[[NSURL class]] options:nil];
|
|
|
|
for(NSURL *fileUrl in arrayOfURLs) {
|
|
[document addAttachment:fileUrl toEntry:entry];
|
|
}
|
|
return YES;
|
|
}
|
|
- (BOOL)tableView:(NSTableView *)tableView writeRowsWithIndexes:(NSIndexSet *)rowIndexes toPasteboard:(NSPasteboard *)pboard {
|
|
return NO;
|
|
|
|
/*
|
|
NSString *extension;
|
|
|
|
if([rowIndexes count] != 1) {
|
|
return NO; // We only work with one file at a time
|
|
}
|
|
MPDocument *document = [[[tableView window] windowController] document];
|
|
id entry = document.selectedEntry;
|
|
NSUInteger row = [rowIndexes lastIndex];
|
|
if([entry isKindOfClass:[Kdb3Entry class]]) {
|
|
Kdb3Entry *entryV3 = (Kdb3Entry *)entry;
|
|
extension = [entryV3.binaryDesc pathExtension];
|
|
}
|
|
else if([entry isKindOfClass:[Kdb4Entry class]]) {
|
|
Kdb4Entry *entryV4 = (Kdb4Entry *)entry;
|
|
BinaryRef *binaryRef = entryV4.binaries[row];
|
|
extension = [binaryRef.key pathExtension];
|
|
}
|
|
NSString *uti = CFBridgingRelease(UTTypeCreatePreferredIdentifierForTag( kUTTagClassFilenameExtension, (__bridge CFStringRef)(extension), NULL ));
|
|
|
|
[pboard setPropertyList:@[uti] forType:(NSString *)kPasteboardTypeFilePromiseContent];
|
|
[pboard setPropertyList:@[uti] forType:(NSString *)kPasteboardTypeFileURLPromise ];
|
|
return YES;*/
|
|
}
|
|
|
|
@end
|