aboutsummaryrefslogtreecommitdiffstats
path: root/Copy Mailto/AppDelegate.h
diff options
context:
space:
mode:
Diffstat (limited to 'Copy Mailto/AppDelegate.h')
-rw-r--r--Copy Mailto/AppDelegate.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/Copy Mailto/AppDelegate.h b/Copy Mailto/AppDelegate.h
new file mode 100644
index 0000000..7ba86b3
--- /dev/null
+++ b/Copy Mailto/AppDelegate.h
@@ -0,0 +1,20 @@
+//
+// AppDelegate.h
+// CopyMailto
+//
+// Created by tw on 9/5/18.
+// Copyright © 2018 tw. All rights reserved.
+//
+
+#import <Cocoa/Cocoa.h>
+
+@interface AppDelegate : NSObject <NSApplicationDelegate> {
+ IBOutlet NSWindow *_window;
+ IBOutlet NSTextField *_email_address;
+}
+
+- (void)handleURLEvent:(NSAppleEventDescriptor *)event
+ withReplyEvent: (NSAppleEventDescriptor *)replyEvent;
+- (IBAction)copyEmailToClipboard:(id)sender;
+
+@end