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

macosx: remove outdated and unused isFullscreen methods

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