cog/Window/MainWindow.m

33 lines
737 B
Matlab
Raw Normal View History

//
// MainWindow.m
// Cog
//
// Created by Vincent Spader on 2/22/09.
// Copyright 2009 __MyCompanyName__. All rights reserved.
//
#import "MainWindow.h"
@implementation MainWindow
2018-06-28 10:59:59 +00:00
- (id)initWithContentRect:(NSRect)contentRect styleMask:(NSWindowStyleMask)windowStyle backing:(NSBackingStoreType)bufferingType defer:(BOOL)deferCreation
{
2021-01-09 09:44:32 +00:00
self = [super initWithContentRect:contentRect styleMask:windowStyle backing:bufferingType defer:deferCreation];
if (self)
{
[self setExcludedFromWindowsMenu:YES];
2013-10-11 01:14:35 +00:00
[self setCollectionBehavior:NSWindowCollectionBehaviorFullScreenPrimary];
}
2021-01-09 09:44:32 +00:00
return self;
}
- (void)awakeFromNib
{
2021-01-09 09:44:32 +00:00
[super awakeFromNib];
[playlistView setNextResponder:self];
}
@end