mirror of
https://github.com/atom/atom.git
synced 2026-02-11 07:05:11 -05:00
19 lines
358 B
Objective-C
19 lines
358 B
Objective-C
#import <Cocoa/Cocoa.h>
|
|
|
|
@class JSCocoa;
|
|
@class WebView;
|
|
|
|
@interface AtomController : NSWindowController {
|
|
IBOutlet WebView *webView;
|
|
NSString *path;
|
|
JSCocoa* jscocoa;
|
|
}
|
|
|
|
@property (retain) IBOutlet WebView *webView;
|
|
@property (retain) NSString *path;
|
|
|
|
- (AtomController *)initWithPath:(NSString *)aPath;
|
|
- (BOOL)handleKeyEvent:(NSEvent *)event;
|
|
|
|
@end
|