Added MADocWindow window controller
This commit is contained in:
parent
2758343c4e
commit
abbc405b6f
13
Medianno/MADocWindow.h
Normal file
13
Medianno/MADocWindow.h
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
//
|
||||||
|
// MADocWindow.h
|
||||||
|
// Medianno
|
||||||
|
//
|
||||||
|
// Created by Matthias Neeracher on 8/10/11.
|
||||||
|
// Copyright 2011 Apple Computer. All rights reserved.
|
||||||
|
//
|
||||||
|
|
||||||
|
#import <Cocoa/Cocoa.h>
|
||||||
|
|
||||||
|
@interface MADocWindow : NSWindowController
|
||||||
|
|
||||||
|
@end
|
30
Medianno/MADocWindow.mm
Normal file
30
Medianno/MADocWindow.mm
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
//
|
||||||
|
// MADocWindow.mm
|
||||||
|
// Medianno
|
||||||
|
//
|
||||||
|
// Created by Matthias Neeracher on 8/10/11.
|
||||||
|
// Copyright 2011 Apple Computer. All rights reserved.
|
||||||
|
//
|
||||||
|
|
||||||
|
#import "MADocWindow.h"
|
||||||
|
|
||||||
|
@implementation MADocWindow
|
||||||
|
|
||||||
|
- (id)initWithWindow:(NSWindow *)window
|
||||||
|
{
|
||||||
|
self = [super initWithWindow:window];
|
||||||
|
if (self) {
|
||||||
|
// Initialization code here.
|
||||||
|
}
|
||||||
|
|
||||||
|
return self;
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void)windowDidLoad
|
||||||
|
{
|
||||||
|
[super windowDidLoad];
|
||||||
|
|
||||||
|
// Implement this method to handle any initialization after your window controller's window has been loaded from its nib file.
|
||||||
|
}
|
||||||
|
|
||||||
|
@end
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user