Commit 111f8992 authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

macosx: Attempt to really fix window look.

parent 421a70be
......@@ -44,26 +44,15 @@
- (id)initWithContentRect:(NSRect)contentRect styleMask:(unsigned int)windowStyle backing:(NSBackingStoreType)bufferingType defer:(BOOL)deferCreation
{
if(MACOS_VERSION < 10.5f)
{
self = [super initWithContentRect:contentRect styleMask:windowStyle backing:bufferingType defer:deferCreation];
} else {
SEL theSelector;
NSMethodSignature *aSignature;
NSInvocation *anInvocation;
float f_value = 32.0f;
NSRectEdge ouredge = NSMinYEdge;
windowStyle ^= NSTexturedBackgroundWindowMask;
self = [super initWithContentRect:contentRect styleMask:windowStyle backing:bufferingType defer:deferCreation];
theSelector = @selector(setContentBorderThickness:forEdge:);
aSignature = [VLCEmbeddedWindow instanceMethodSignatureForSelector:theSelector];
anInvocation = [NSInvocation invocationWithMethodSignature:aSignature];
[anInvocation setSelector:theSelector];
[anInvocation setTarget:self];
[anInvocation setArgument:&f_value atIndex:2]; /* FIXME it's actually CGFLoat */
[anInvocation setArgument:&ouredge atIndex:3];
}
return [super initWithContentRect:contentRect styleMask:windowStyle backing:bufferingType defer:deferCreation];
#ifdef __ppc__
return [super initWithContentRect:contentRect styleMask:windowStyle backing:bufferingType defer:deferCreation];
#endif
windowStyle ^= NSTexturedBackgroundWindowMask;
self = [super initWithContentRect:contentRect styleMask:windowStyle backing:bufferingType defer:deferCreation];
[self setContentBorderThickness:32.0 forEdge:NSMinYEdge];
return self;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment