Cog/Window/MainWindow.m

33 lines
737 B
Mathematica
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 06:59:59 -04:00
- (id)initWithContentRect:(NSRect)contentRect styleMask:(NSWindowStyleMask)windowStyle backing:(NSBackingStoreType)bufferingType defer:(BOOL)deferCreation
{
2021-01-09 06:44:32 -03:00
self = [super initWithContentRect:contentRect styleMask:windowStyle backing:bufferingType defer:deferCreation];
if (self)
{
[self setExcludedFromWindowsMenu:YES];
2013-10-10 22:14:35 -03:00
[self setCollectionBehavior:NSWindowCollectionBehaviorFullScreenPrimary];
}
2021-01-09 06:44:32 -03:00
return self;
}
- (void)awakeFromNib
{
2021-01-09 06:44:32 -03:00
[super awakeFromNib];
[playlistView setNextResponder:self];
}
@end