mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-25 13:07:02 +00:00
32 lines
523 B
Plaintext
32 lines
523 B
Plaintext
/*
|
|
* AppController.j
|
|
* resize
|
|
*
|
|
* Created by You on December 24, 2012.
|
|
* Copyright 2012, Your Company 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
|
|
{
|
|
}
|
|
|
|
- (@action)resizeStyleDidChange:(id)sender
|
|
{
|
|
[CPWindow setGlobalResizeStyle:[[sender selectedRadio] tag]];
|
|
}
|
|
|
|
@end
|