1 #import "ITSplashWindow.h"
2 #import "ITSplashView.h"
4 @implementation ITSplashWindow
6 - (id)initWithContentRect:(NSRect)contentRect styleMask:(unsigned int)styleMask backing:(NSBackingStoreType)backingType defer:(BOOL)flag {
7 if ((self = [super initWithContentRect:contentRect styleMask:NSBorderlessWindowMask backing:NSBackingStoreBuffered defer:NO])) {
9 [self setBackgroundColor:[NSColor clearColor]];
10 [self setHasShadow:YES];
15 - (BOOL)canBecomeKeyWindow {