mirror of
https://github.com/atom/atom.git
synced 2026-04-28 03:01:47 -04:00
19 lines
411 B
Objective-C
19 lines
411 B
Objective-C
#import <Cocoa/Cocoa.h>
|
|
|
|
@class JSCocoa;
|
|
@class WebView;
|
|
|
|
@interface AtomController : NSWindowController <NSWindowDelegate> {
|
|
}
|
|
|
|
@property (retain) WebView *webView;
|
|
@property (nonatomic, retain) JSCocoa *jscocoa;
|
|
|
|
@property (nonatomic, retain, readonly) NSString *url;
|
|
@property (nonatomic, retain, readonly) NSString *bootstrapPage;
|
|
|
|
- (id)initForSpecs;
|
|
- (AtomController *)initWithURL:(NSString *)url;
|
|
|
|
@end
|