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
8 if ( (self = [super initWithContentRect:contentRect styleMask:NSBorderlessWindowMask backing:NSBackingStoreBuffered defer:NO]) ) {
10 [self setBackgroundColor:[NSColor clearColor]];
11 [self setHasShadow:YES];
16 - (BOOL)canBecomeKeyWindow