Files
cappuccino/Tests/Manual/loadDynamicFrameworks/AppController.j
T
2013-02-23 10:24:29 -05:00

33 lines
781 B
Plaintext

/*
* AppController.j
* loadDynamicFrameworks
*
* Created by Blair Duncan on February 23, 2013.
* Copyright 2013, SGL Studio, BBDO Toronto All rights reserved.
*/
@import <Foundation/CPObject.j>
@implementation AppController : CPObject
{
@outlet CPWindow theWindow;
}
- (void)applicationDidFinishLaunching:(CPNotification)aNotification
{
// This is called when the application is done loading.
}
- (void)awakeFromCib
{
// This is called when the cib is done loading.
// You can implement this method on any object instantiated from a Cib.
// It's a useful hook for setting up current UI values, and other things.
// In this case, we want the window from Cib to become our full browser window
[theWindow setFullPlatformWindow:YES];
}
@end