blob: ce956ecc2f7131b6c11bff7d7b51260cc08ff175 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
//
// AppDelegate.h
// Copy Mailto
//
// Created by tw on 9/5/18.
// Copyright © 2018 Teddy Wing
//
#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
|