aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/views/mac/SampleAppDelegate.mm
blob: 91dcada8880d44846e3bb88004fbe0f1d0d90371 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#import "SampleAppDelegate.h"
@implementation SampleAppDelegate
@synthesize fWindow, fView, fOptions;

-(void) applicationDidFinishLaunching:(NSNotification *)aNotification {
    //Load specified skia views after launching
    fView.fOptionsDelegate = fOptions;
    [fWindow setAcceptsMouseMovedEvents:YES];
    [fOptions registerMenus:fView.fWind->getMenus()];
}

- (IBAction)toiPadSize:(id)sender {
    NSRect frame = NSMakeRect(fWindow.frame.origin.x, fWindow.frame.origin.y, 768, 1024);
    [fWindow setFrame:frame display:YES animate:YES];
}
@end