Files
MacPass/MacPass/MPAppDelegate.h
michael starke 288d118184 Extracted context menu operations into MPContextMenuHelper
Removed private declarations as they aren't needed for the compiler anymore
Fixed drawing order in MPPopupImageView
Fixed #7 Error occurred due to duplicate shortcut.
Copy Password now is bound to ⌘+⌥+C
2013-06-09 18:20:04 +02:00

19 lines
383 B
Objective-C

//
// MPAppDelegate.h
// MacPass
//
// Created by Michael Starke on 19.07.12.
// Copyright (c) 2012 HicknHack Software GmbH. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@interface MPAppDelegate : NSObject <NSApplicationDelegate>
@property (retain) IBOutlet NSWindow *passwordCreatorWindow;
- (IBAction)showPasswordCreator:(id)sender;
- (NSString *)applicationName;
@end