diff --git a/modules/gui/macosx/CompatibilityFixes.h b/modules/gui/macosx/CompatibilityFixes.h index b27566c64490dc98e332093eeb1c6fdba5d93b20..8fd8b6afa0c20c3243e9f3f8778090ac29e6a943 100644 --- a/modules/gui/macosx/CompatibilityFixes.h +++ b/modules/gui/macosx/CompatibilityFixes.h @@ -77,6 +77,8 @@ enum { @interface NSWindow (IntroducedInLion) - (void)setRestorable:(BOOL)b_value; - (void)toggleFullScreen:(id)id_value; +- (void)windowWillEnterFullScreen:(NSNotification *)notification; +- (void)windowWillExitFullScreen:(NSNotification *)notification; @end @interface NSEvent (IntroducedInLion) diff --git a/modules/gui/macosx/MainWindow.h b/modules/gui/macosx/MainWindow.h index 396f2425b3178dfa409b969923ae0f01faeac52c..a1668e332f68685a9dcdaeaaf88f9a3c26b2c3ac 100644 --- a/modules/gui/macosx/MainWindow.h +++ b/modules/gui/macosx/MainWindow.h @@ -160,6 +160,10 @@ - (void)hasBecomeFullscreen; - (void)setFrameOnMainThread:(NSData*)packedargs; +/* lion's native fullscreen handling */ +- (void)windowWillEnterFullScreen:(NSNotification *)notification; +- (void)windowWillExitFullScreen:(NSNotification *)notification; + @end @interface VLCProgressBarGradientEffect : NSView { diff --git a/modules/gui/macosx/MainWindow.m b/modules/gui/macosx/MainWindow.m index fa308f20d9578b1569186475802d87d883f872d4..b96c8a2a981bae9cf22ff87fd5176d817a9a8509 100644 --- a/modules/gui/macosx/MainWindow.m +++ b/modules/gui/macosx/MainWindow.m @@ -1409,6 +1409,18 @@ static VLCMainWindow *_o_sharedInstance = nil; } } +#pragma mark - +#pragma mark Lion's native fullscreen handling +- (void)windowWillEnterFullScreen:(NSNotification *)notification +{ + [NSCursor setHiddenUntilMouseMoves: YES]; +} + +- (void)windowWillExitFullScreen:(NSNotification *)notification +{ + [NSCursor setHiddenUntilMouseMoves: NO]; +} + #pragma mark - #pragma mark Side Bar Data handling /* taken under BSD-new from the PXSourceList sample project, adapted for VLC */