Commit 18dee68f authored by David Fuhrmann's avatar David Fuhrmann

macosx: remove outdated and unused isFullscreen methods

parent 9288133f
...@@ -217,7 +217,6 @@ ...@@ -217,7 +217,6 @@
NSRect previousSavedFrame; NSRect previousSavedFrame;
} }
- (BOOL)isFullscreen;
- (void)customZoom:(id)sender; - (void)customZoom:(id)sender;
@end @end
...@@ -2031,7 +2031,6 @@ static VLCMainWindow *_o_sharedInstance = nil; ...@@ -2031,7 +2031,6 @@ static VLCMainWindow *_o_sharedInstance = nil;
rect.origin.x += [o_videoWindow frame].origin.x; rect.origin.x += [o_videoWindow frame].origin.x;
rect.origin.y += [o_videoWindow frame].origin.y; rect.origin.y += [o_videoWindow frame].origin.y;
o_fullscreen_window = [[VLCWindow alloc] initWithContentRect:rect styleMask: NSBorderlessWindowMask backing:NSBackingStoreBuffered defer:YES]; o_fullscreen_window = [[VLCWindow alloc] initWithContentRect:rect styleMask: NSBorderlessWindowMask backing:NSBackingStoreBuffered defer:YES];
[o_fullscreen_window setFullscreen: YES];
[o_fullscreen_window setBackgroundColor: [NSColor blackColor]]; [o_fullscreen_window setBackgroundColor: [NSColor blackColor]];
[o_fullscreen_window setCanBecomeKeyWindow: YES]; [o_fullscreen_window setCanBecomeKeyWindow: YES];
[o_fullscreen_window setCanBecomeMainWindow: YES]; [o_fullscreen_window setCanBecomeMainWindow: YES];
...@@ -2902,11 +2901,6 @@ static VLCMainWindow *_o_sharedInstance = nil; ...@@ -2902,11 +2901,6 @@ static VLCMainWindow *_o_sharedInstance = nil;
[[VLCCoreInteraction sharedInstance] toggleFullscreen]; [[VLCCoreInteraction sharedInstance] toggleFullscreen];
} }
- (BOOL)isFullscreen
{
return [[VLCMainWindow sharedInstance] isFullscreen];
}
- (void)performClose:(id)sender - (void)performClose:(id)sender
{ {
if (b_dark_interface || !b_video_deco) if (b_dark_interface || !b_video_deco)
......
...@@ -151,7 +151,7 @@ int DeviceCallback( vlc_object_t *p_this, const char *psz_variable, ...@@ -151,7 +151,7 @@ int DeviceCallback( vlc_object_t *p_this, const char *psz_variable,
if( key == (unichar) 0x1b ) if( key == (unichar) 0x1b )
{ {
playlist_t * p_playlist = pl_Get( VLCIntf ); playlist_t * p_playlist = pl_Get( VLCIntf );
if( var_GetBool( p_playlist, "fullscreen") ) if( var_GetBool( p_playlist, "fullscreen" ) )
[[VLCCoreInteraction sharedInstance] toggleFullscreen]; [[VLCCoreInteraction sharedInstance] toggleFullscreen];
} }
/* handle Lion's default key combo for fullscreen-toggle in addition to our own hotkeys */ /* handle Lion's default key combo for fullscreen-toggle in addition to our own hotkeys */
......
...@@ -78,7 +78,6 @@ ...@@ -78,7 +78,6 @@
BOOL b_isset_canBecomeKeyWindow; BOOL b_isset_canBecomeKeyWindow;
BOOL b_canBecomeMainWindow; BOOL b_canBecomeMainWindow;
BOOL b_isset_canBecomeMainWindow; BOOL b_isset_canBecomeMainWindow;
BOOL b_isFullscreen;
NSViewAnimation *animation; NSViewAnimation *animation;
} }
...@@ -98,9 +97,6 @@ ...@@ -98,9 +97,6 @@
/* animate mode is only supported in >=10.4 */ /* animate mode is only supported in >=10.4 */
- (void)closeAndAnimate: (BOOL)animate; - (void)closeAndAnimate: (BOOL)animate;
- (void)setFullscreen:(BOOL)b_var;
- (BOOL)isFullscreen;
@end @end
......
...@@ -274,7 +274,6 @@ static NSMutableArray *blackoutWindows = NULL; ...@@ -274,7 +274,6 @@ static NSMutableArray *blackoutWindows = NULL;
self = [super initWithContentRect:contentRect styleMask:styleMask backing:backingType defer:flag]; self = [super initWithContentRect:contentRect styleMask:styleMask backing:backingType defer:flag];
if( self ) if( self )
{ {
b_isFullscreen = NO;
b_isset_canBecomeKeyWindow = NO; b_isset_canBecomeKeyWindow = NO;
/* we don't want this window to be restored on relaunch */ /* we don't want this window to be restored on relaunch */
if (OSX_LION) if (OSX_LION)
...@@ -463,16 +462,6 @@ static NSMutableArray *blackoutWindows = NULL; ...@@ -463,16 +462,6 @@ static NSMutableArray *blackoutWindows = NULL;
} }
} }
- (void)setFullscreen:(BOOL)b_var
{
b_isFullscreen = b_var;
}
- (BOOL)isFullscreen
{
return b_isFullscreen;
}
- (IBAction)fullscreen:(id)sender - (IBAction)fullscreen:(id)sender
{ {
[[VLCCoreInteraction sharedInstance] toggleFullscreen]; [[VLCCoreInteraction sharedInstance] toggleFullscreen];
......
...@@ -49,10 +49,6 @@ ...@@ -49,10 +49,6 @@
#include <vlc_dialog.h> #include <vlc_dialog.h>
#include "opengl.h" #include "opengl.h"
@interface NSWindow (VLCCustomCode)
- (BOOL)isFullscreen;
@end
/* compilation support for 10.5 and 10.6 */ /* compilation support for 10.5 and 10.6 */
#define OSX_LION NSAppKitVersionNumber >= 1115.2 #define OSX_LION NSAppKitVersionNumber >= 1115.2
#ifndef MAC_OS_X_VERSION_10_7 #ifndef MAC_OS_X_VERSION_10_7
......
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