pulsar/native/atom_window_controller.mm

192 lines
6.4 KiB
Plaintext
Raw Normal View History

2012-08-22 02:14:50 +04:00
#import "include/cef_application_mac.h"
2012-08-30 02:31:06 +04:00
#include "include/cef_client.h"
2012-08-28 00:21:59 +04:00
#import "native/atom_cef_client.h"
#import "native/atom_window_controller.h"
2012-09-11 00:23:13 +04:00
#import "native/atom_application.h"
2012-08-22 02:14:50 +04:00
@implementation AtomWindowController
2012-08-22 02:14:50 +04:00
2012-08-30 02:31:06 +04:00
@synthesize splitView=_splitView;
2012-08-22 02:14:50 +04:00
@synthesize webView=_webView;
2012-08-30 02:31:06 +04:00
@synthesize devToolsView=_devToolsView;
2012-08-22 02:14:50 +04:00
- (void)dealloc {
2012-08-30 02:31:06 +04:00
_cefClient = NULL;
_cefDevToolsClient = NULL;
2012-08-28 20:58:24 +04:00
[_webView release];
[_bootstrapScript release];
[_resourcePath release];
2012-08-22 04:22:43 +04:00
[_pathToOpen release];
2012-08-28 20:58:24 +04:00
[super dealloc];
2012-08-22 02:14:50 +04:00
}
- (id)initWithBootstrapScript:(NSString *)bootstrapScript background:(BOOL)background {
2012-08-28 20:58:24 +04:00
self = [super initWithWindowNibName:@"AtomWindow"];
_bootstrapScript = [bootstrapScript retain];
2012-08-22 04:22:43 +04:00
AtomApplication *atomApplication = (AtomApplication *)[AtomApplication sharedApplication];
_resourcePath = [[atomApplication.arguments objectForKey:@"resource-path"] retain];
2012-09-11 00:23:13 +04:00
if (!_resourcePath) _resourcePath = [[[NSBundle mainBundle] resourcePath] retain];
2012-09-11 00:23:13 +04:00
if (!background) {
2012-08-28 21:51:36 +04:00
[self showWindow:self];
}
return self;
2012-08-22 04:22:43 +04:00
}
2012-08-24 00:47:06 +04:00
- (id)initWithPath:(NSString *)path {
2012-08-22 04:22:43 +04:00
_pathToOpen = [path retain];
return [self initWithBootstrapScript:@"window-bootstrap" background:NO];
}
- (id)initInBackground {
[self initWithBootstrapScript:@"window-bootstrap" background:YES];
[self.window setFrame:NSMakeRect(0, 0, 0, 0) display:NO];
[self.window setExcludedFromWindowsMenu:YES];
return self;
2012-08-22 04:22:43 +04:00
}
- (id)initSpecsThenExit:(BOOL)exitWhenDone {
2012-08-22 04:22:43 +04:00
_runningSpecs = true;
_exitWhenDone = exitWhenDone;
return [self initWithBootstrapScript:@"spec-bootstrap" background:NO];
2012-08-22 04:22:43 +04:00
}
- (id)initBenchmarksThenExit:(BOOL)exitWhenDone {
_runningSpecs = true;
_exitWhenDone = exitWhenDone;
return [self initWithBootstrapScript:@"benchmark-bootstrap" background:NO];
2012-08-22 04:22:43 +04:00
}
- (void)addBrowserToView:(NSView *)view url:(const char *)url cefHandler:(CefRefPtr<AtomCefClient>)cefClient {
CefBrowserSettings settings;
2012-08-22 02:14:50 +04:00
[self populateBrowserSettings:settings];
2012-08-28 20:58:24 +04:00
CefWindowInfo window_info;
window_info.SetAsChild(view, 0, 0, view.bounds.size.width, view.bounds.size.height);
CefBrowserHost::CreateBrowser(window_info, cefClient.get(), url, settings);
}
2012-08-28 20:58:24 +04:00
- (NSString *)encodeUrlParam:(NSString *)param {
param = [param stringByReplacingOccurrencesOfString:@" " withString:@"%20"];
param = [param stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
return param;
}
- (void)windowDidLoad {
[self.window setDelegate:self];
2012-08-30 02:31:06 +04:00
NSURL *url = [[NSBundle mainBundle] resourceURL];
NSMutableString *urlString = [NSMutableString string];
2012-08-30 02:31:06 +04:00
[urlString appendString:[[url URLByAppendingPathComponent:@"static/index.html"] absoluteString]];
[urlString appendFormat:@"?bootstrapScript=%@", [self encodeUrlParam:_bootstrapScript]];
[urlString appendFormat:@"&resourcePath=%@", [self encodeUrlParam:_resourcePath]];
if (_exitWhenDone)
[urlString appendString:@"&exitWhenDone=1"];
if (_pathToOpen)
[urlString appendFormat:@"&pathToOpen=%@", [self encodeUrlParam:_pathToOpen]];
2012-08-30 02:31:06 +04:00
_cefClient = new AtomCefClient();
[self addBrowserToView:self.webView url:[urlString UTF8String] cefHandler:_cefClient];
2012-08-22 04:22:43 +04:00
}
2012-08-30 02:31:06 +04:00
- (void)toggleDevTools {
if (_devToolsView) {
2012-08-30 19:47:21 +04:00
[self hideDevTools];
2012-08-30 02:31:06 +04:00
}
2012-08-30 19:47:21 +04:00
else {
[self showDevTools];
}
}
- (void)showDevTools {
if (_devToolsView) return;
2012-08-30 19:47:21 +04:00
if (_cefClient && _cefClient->GetBrowser()) {
_devToolsView = [[NSView alloc] initWithFrame:_splitView.bounds];
2012-08-30 02:31:06 +04:00
[_splitView addSubview:_devToolsView];
[_splitView adjustSubviews];
[self performSelector:@selector(attachDevTools) withObject:nil afterDelay:0];
2012-08-30 19:47:21 +04:00
}
}
// If this is run directly after adding _devToolsView to _splitView, the
// devtools don't resize properly.
// HACK: I hate this and want to place this code directly in showDevTools
- (void)attachDevTools {
_cefDevToolsClient = new AtomCefClient();
std::string devtools_url = _cefClient->GetBrowser()->GetHost()->GetDevToolsURL(true);
[self addBrowserToView:_devToolsView url:devtools_url.c_str() cefHandler:_cefDevToolsClient];
}
2012-08-30 19:47:21 +04:00
- (void)hideDevTools {
[_devToolsView removeFromSuperview];
[_splitView adjustSubviews];
[_devToolsView release];
_devToolsView = nil;
_cefDevToolsClient = NULL;
_cefClient->GetBrowser()->GetHost()->SetFocus(true);
2012-08-30 02:31:06 +04:00
}
2012-08-22 02:14:50 +04:00
# pragma mark NSWindowDelegate
2012-08-22 04:22:43 +04:00
- (void)windowDidResignMain:(NSNotification *)notification {
if (_cefClient && _cefClient->GetBrowser() && !_runningSpecs) {
2012-08-28 20:58:24 +04:00
_cefClient->GetBrowser()->GetHost()->SetFocus(false);
2012-08-22 04:22:43 +04:00
}
}
- (void)windowDidBecomeMain:(NSNotification *)notification {
if (_cefClient && _cefClient->GetBrowser()) {
2012-08-28 20:58:24 +04:00
_cefClient->GetBrowser()->GetHost()->SetFocus(true);
2012-08-22 02:14:50 +04:00
}
}
- (BOOL)windowShouldClose:(id)window {
[self autorelease];
2012-08-22 02:14:50 +04:00
return YES;
}
- (void)populateBrowserSettings:(CefBrowserSettings &)settings {
CefString(&settings.default_encoding) = "UTF-8";
settings.remote_fonts_disabled = true;
settings.encoding_detector_enabled = false;
settings.javascript_disabled = false;
2012-08-23 02:29:39 +04:00
settings.javascript_open_windows_disallowed = false;
2012-08-22 02:14:50 +04:00
settings.javascript_close_windows_disallowed = false;
settings.javascript_access_clipboard_disallowed = false;
settings.dom_paste_disabled = true;
settings.caret_browsing_enabled = false;
settings.java_disabled = true;
settings.plugins_disabled = true;
settings.universal_access_from_file_urls_allowed = false;
settings.file_access_from_file_urls_allowed = false;
settings.web_security_disabled = false;
settings.xss_auditor_enabled = true;
settings.image_load_disabled = false;
settings.shrink_standalone_images_to_fit = false;
settings.site_specific_quirks_disabled = false;
settings.text_area_resize_disabled = false;
settings.page_cache_disabled = true;
settings.tab_to_links_disabled = true;
settings.hyperlink_auditing_disabled = true;
settings.user_style_sheet_enabled = false;
settings.author_and_user_styles_disabled = false;
settings.local_storage_disabled = false;
settings.databases_disabled = false;
settings.application_cache_disabled = false;
settings.webgl_disabled = false;
settings.accelerated_compositing_disabled = false;
settings.accelerated_layers_disabled = false;
settings.accelerated_video_disabled = false;
settings.accelerated_2d_canvas_disabled = false;
settings.accelerated_painting_enabled = true;
settings.accelerated_filters_enabled = true;
settings.accelerated_plugins_disabled = false;
settings.developer_tools_disabled = false;
settings.fullscreen_enabled = true;
}
@end