diff options
| author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2015-05-06 20:41:51 -0700 |
|---|---|---|
| committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2015-05-06 20:41:51 -0700 |
| commit | 5b54612d91129afb92aee01e14984e7e2e401709 (patch) | |
| tree | e402fa98b02ddad2482fd6491c2b9b6915048a5c /ext/mac-ui-macgap1-wrapper/MacGap/WindowController.h | |
| parent | e58047eaa020e2810dd20ce6cc2eac32de071481 (diff) | |
| download | infinitytier-5b54612d91129afb92aee01e14984e7e2e401709.tar.gz infinitytier-5b54612d91129afb92aee01e14984e7e2e401709.zip | |
Pass authtoken in from user, and add a wrapper for web UI on Mac.
Diffstat (limited to 'ext/mac-ui-macgap1-wrapper/MacGap/WindowController.h')
| -rw-r--r-- | ext/mac-ui-macgap1-wrapper/MacGap/WindowController.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/ext/mac-ui-macgap1-wrapper/MacGap/WindowController.h b/ext/mac-ui-macgap1-wrapper/MacGap/WindowController.h new file mode 100644 index 00000000..72927eff --- /dev/null +++ b/ext/mac-ui-macgap1-wrapper/MacGap/WindowController.h @@ -0,0 +1,13 @@ +#import <Cocoa/Cocoa.h> +#import "ContentView.h" + +@interface WindowController : NSWindowController { + +} + +- (id) initWithURL:(NSString *) url; +- (id) initWithRequest: (NSURLRequest *)request; +@property (retain) NSURL * url; +@property (retain) IBOutlet ContentView *contentView; + +@end |
