Added AI assets

Keyfiles are now usable for opening databases
This commit is contained in:
michael starke
2013-03-10 16:02:06 +01:00
parent ff7e8aaadd
commit 5ab229b0e8
9 changed files with 1252 additions and 226 deletions

View File

@@ -0,0 +1,22 @@
//
// MPKeyfilePathControlDelegate.m
// MacPass
//
// Created by Michael Starke on 10.03.13.
// Copyright (c) 2013 HicknHack Software GmbH. All rights reserved.
//
#import "MPKeyfilePathControlDelegate.h"
@implementation MPKeyfilePathControlDelegate
- (NSDragOperation)pathControl:(NSPathControl *)pathControl validateDrop:(id<NSDraggingInfo>)info {
NSLog(@"%@", [info draggingPasteboard]);
return NSDragOperationNone;
}
- (void)pathControl:(NSPathControl *)pathControl willDisplayOpenPanel:(NSOpenPanel *)openPanel {
}
@end