Added MADocWindow window controller

This commit is contained in:
Matthias Neeracher 2011-08-10 18:45:58 +02:00
parent 2758343c4e
commit abbc405b6f
3 changed files with 340 additions and 286 deletions

13
Medianno/MADocWindow.h Normal file
View 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
View 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