blob: 046a5079da8ccedaf49d86b4d50d3f77e1423311 [file] [log] [blame]
jat@google.com134be542009-08-03 15:30:11 +00001/*
2 * Copyright 2008 Google Inc.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
5 * use this file except in compliance with the License. You may obtain a copy of
6 * the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13 * License for the specific language governing permissions and limitations under
14 * the License.
15 */
16
17#import "AppController.h"
18#import "BrowserWindow.h"
19
20@implementation AppController
21- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
22 NSLog(@"%s", __PRETTY_FUNCTION__);
23
24 if (![WebView canShowMIMEType:@"application/x-gwt-hosted-mode"]) {
25 NSLog(@"plugin not available");
26 exit(-1);
27 }
28 NSString* str = @"http://localhost:8888/com.google.gwt.dev.jjs.CompilerSuite.JUnit/junit.html?gwt.hosted=localhost:9997";
29// NSString* str = @"http://localhost:8888/com.google.gwt.user.RPCSuite.JUnit/junit.html?gwt.hosted=localhost:9997";
30// NSString* str = @"http://localhost:8888/com.google.gwt.user.User.JUnit/junit.html?gwt.hosted=localhost:9997";
31 [webview setUIDelegate:self];
32 [webview setShouldCloseWithWindow: YES];
33 [[webview mainFrame] loadRequest: [NSURLRequest requestWithURL:[NSURL URLWithString:str]]];
34}
35
36- (IBAction)newWindow:(id)sender {
37 NSLog(@"Action received");
38 NSRect r;
39 r.origin.x = 100;
40 r.origin.y = 100;
41 r.size.height = 500;
42 r.size.width = 500;
43
44 WebView* webView = [[WebView alloc] initWithFrame:r];
45 NSString* str = @"http://localhost:8888/com.google.gwt.sample.kitchensink.KitchenSink/KitchenSink.html?gwt.hosted=localhost:9997";
46 [webView setUIDelegate:self];
47 [webView setShouldCloseWithWindow: YES];
48 [[webView mainFrame] loadRequest: [NSURLRequest requestWithURL:[NSURL URLWithString:str]]];
49
50 NSWindow* wnd = [[BrowserWindow alloc] initWithContentRect:r styleMask:NSResizableWindowMask|NSClosableWindowMask backing:NSBackingStoreBuffered defer:NO];
51 [wnd setContentView:webView];
52 [wnd makeKeyAndOrderFront:self];
53}
54
55- (void)webView:(WebView *)sender windowScriptObjectAvailable:(WebScriptObject *)windowScriptObject {
56 NSLog(@"%s", __PRETTY_FUNCTION__);
57}
58
59@end