MYCrypto+Cocoa.h
changeset 24 6856e071d25a
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/MYCrypto+Cocoa.h	Tue Jun 09 23:58:03 2009 -0700
     1.3 @@ -0,0 +1,27 @@
     1.4 +//
     1.5 +//  MYCrypto+Cocoa.h
     1.6 +//  MYCrypto
     1.7 +//
     1.8 +//  Created by Jens Alfke on 4/10/09.
     1.9 +//  Copyright 2009 Jens Alfke. All rights reserved.
    1.10 +//
    1.11 +
    1.12 +#import <SecurityInterface/SFChooseIdentityPanel.h>
    1.13 +@class MYIdentity;
    1.14 +
    1.15 +
    1.16 +@interface SFChooseIdentityPanel (MYCrypto)
    1.17 +
    1.18 +- (NSInteger)my_runModalForIdentities:(NSArray *)myIdentitObjects
    1.19 +                              message:(NSString *)message;
    1.20 +
    1.21 +- (void)my_beginSheetForWindow:(NSWindow *)docWindow 
    1.22 +                 modalDelegate:(id)delegate 
    1.23 +                didEndSelector:(SEL)didEndSelector
    1.24 +                   contextInfo:(void *)contextInfo 
    1.25 +                    identities:(NSArray *)myIdentitObjects 
    1.26 +                       message:(NSString *)message;
    1.27 +
    1.28 +- (MYIdentity*) my_identity;
    1.29 +
    1.30 +@end