OLD | NEW |
1 #import "SampleAppDelegate.h" | 1 #import "SampleAppDelegate.h" |
2 | 2 |
3 #include "SkApplication.h" | 3 #include "SkApplication.h" |
4 | 4 |
5 @implementation SampleAppDelegate | 5 @implementation SampleAppDelegate |
6 @synthesize fWindow, fView, fOptions; | 6 @synthesize fWindow, fView, fOptions; |
7 | 7 |
8 -(void) applicationDidFinishLaunching:(NSNotification *)aNotification { | 8 -(void) applicationDidFinishLaunching:(NSNotification *)aNotification { |
9 //Load specified skia views after launching | 9 //Load specified skia views after launching |
10 fView.fOptionsDelegate = fOptions; | 10 fView.fOptionsDelegate = fOptions; |
11 [fWindow setAcceptsMouseMovedEvents:YES]; | 11 [fWindow setAcceptsMouseMovedEvents:YES]; |
12 [fOptions registerMenus:fView.fWind->getMenus()]; | 12 [fOptions registerMenus:fView.fWind->getMenus()]; |
13 } | 13 } |
14 | 14 |
15 - (IBAction)toiPadSize:(id)sender { | 15 - (IBAction)toiPadSize:(id)sender { |
16 NSRect frame = NSMakeRect(fWindow.frame.origin.x, fWindow.frame.origin.y, 76
8, 1024); | 16 NSRect frame = NSMakeRect(fWindow.frame.origin.x, fWindow.frame.origin.y, 76
8, 1024); |
17 [fWindow setFrame:frame display:YES animate:YES]; | 17 [fWindow setFrame:frame display:YES animate:YES]; |
18 } | 18 } |
19 | 19 |
20 - (NSApplicationTerminateReply)applicationShouldTerminate:(NSApplication *)sende
r { | 20 - (NSApplicationTerminateReply)applicationShouldTerminate:(NSApplication *)sende
r { |
| 21 [fView freeNativeWind]; |
21 application_term(); | 22 application_term(); |
22 return NSTerminateNow; | 23 return NSTerminateNow; |
23 } | 24 } |
24 | 25 |
25 @end | 26 @end |
OLD | NEW |