]> git.sesse.net Git - vlc/commitdiff
MacOSX/Framework: Remove all references to fullscreen mode, it should be the host...
authorFaustino Osuna <riquedafreak@videolan.org>
Fri, 4 Jan 2008 16:23:53 +0000 (16:23 +0000)
committerFaustino Osuna <riquedafreak@videolan.org>
Fri, 4 Jan 2008 16:23:53 +0000 (16:23 +0000)
extras/MacOSX/Framework/Headers/Public/VLCMediaPlayer.h
extras/MacOSX/Framework/Headers/Public/VLCVideoView.h
extras/MacOSX/Framework/Sources/VLCMediaPlayer.m
extras/MacOSX/Framework/Sources/VLCVideoView.m

index accd6a87d3a4a430a22bc322254b9b025cefe64e..e11dcf2ab63613bb0ae4cfeb1e7b031ac5b864a0 100644 (file)
@@ -93,9 +93,6 @@ extern NSString * VLCMediaPlayerStateToString(VLCMediaPlayerState state);
 - (void)setVideoView:(VLCVideoView *)aVideoView;
 - (void)setVideoLayer:(VLCVideoLayer *)aVideoLayer;
 
-- (void)setFullscreen:(BOOL)value;
-- (BOOL)fullscreen;
-
 - (void)setVideoAspectRatio:(char *)value;
 - (char *)videoAspectRatio;
 - (void)setVideoSubTitles:(int)value;
index 33137758fd08115d12c61727f5b4fb55f2f47873..66f782a827f9377349be943a0da7f1cb9211fb5a 100644 (file)
 
 #import <Cocoa/Cocoa.h>
 #import <QuartzCore/QuartzCore.h>
-@class CALayer;
-
-/* Notifications */
-extern NSString * VLCVideoViewEnteredFullScreen;
-extern NSString * VLCVideoViewLeftFullScreen;
 
-@protocol VLCVideoViewDelegate
-// Notifications defined in VLCVideoView.h
-- (void)videoEnteredFullscreen:(NSNotification *)aNotification;
-- (void)videoLeftFullscreen:(NSNotification *)aNotification;
-@end
+@class CALayer;
 
 @interface VLCVideoView : NSView
 {
     id delegate;
     NSColor * backColor;
     BOOL stretchesVideo;
-    BOOL fullScreen;
     id layoutManager;
     // TODO: Allow for view to report transparency to do some cool effects
     // with the video?
 }
 
-@property BOOL fullScreen;
 @property BOOL fillScreen;
 
 - (void)setDelegate:(id)value;
@@ -55,12 +44,4 @@ extern NSString * VLCVideoViewLeftFullScreen;
 
 - (void)setBackColor:(NSColor *)value;
 - (NSColor *)backColor;
-
-- (void)enterFullscreen;
-- (void)leaveFullscreen;
-
-//- (void)setOnTop: (BOOL)ontop; /* Do we really want that in protocol? */
-
-// The media controls that were here previously should be moved elsewhere.  This
-// View is just that, a view not a controller. -- Moved to VLCMediaPlayer
 @end
index ee3796e686235cf72bce8e5bf45072b3506b297c..5cab52e59c3cdbd2a66e76cde39253e9d08523ec 100644 (file)
@@ -204,20 +204,6 @@ static void HandleMediaInstanceStateChanged(const libvlc_event_t * event, void *
     [self setDrawable: aVideoLayer];
 }
 
-- (void)setFullscreen:(BOOL)value
-{
-    libvlc_set_fullscreen(instance, value, NULL);
-}
-
-- (BOOL)fullscreen
-{
-    libvlc_exception_t ex;
-    libvlc_exception_init( &ex );
-    int result = libvlc_get_fullscreen( instance, &ex );
-    catch_exception( &ex );
-    return result;
-}
-
 - (void)setVideoAspectRatio:(char *)value
 {
     libvlc_video_set_aspect_ratio( instance, value, NULL );
index 34b6f7a7a01d3fd2afbcd540ec449b0a132e7b9d..f58c4edcd6204aa941ce27f50bd7a06cddd848a4 100644 (file)
 
 #import <QuartzCore/QuartzCore.h>
 
-/* Notifications */
-NSString * VLCVideoViewEnteredFullScreen    = @"VLCVideoViewEnteredFullScreen";
-NSString * VLCVideoViewLeftFullScreen       = @"VLCVideoViewLeftFullScreen";
-
 /******************************************************************************
  * Soon deprecated stuff 
  */
@@ -146,26 +142,6 @@ NSString * VLCVideoViewLeftFullScreen       = @"VLCVideoViewLeftFullScreen";
     [[self layer] setNeedsLayout];
 }
 
-- (BOOL)fullScreen
-{
-    return fullScreen;
-}
-
-- (void)setFullScreen:(BOOL)newFullScreen
-{
-    if( newFullScreen )
-    {
-        fullScreen = YES;
-        [self enterFullscreen];
-    }
-    else
-    {
-        fullScreen = NO;
-        [self leaveFullscreen];
-    }
-}
-
-
 - (id)initWithFrame:(NSRect)rect
 {
     if (self = [super initWithFrame:rect]) 
@@ -212,33 +188,6 @@ NSString * VLCVideoViewLeftFullScreen       = @"VLCVideoViewLeftFullScreen";
     return backColor;
 }
 
-/* This is a LibVLC notification that we're about to enter into full screen,
-   there is no other place where I can see where we can trap this event */
-- (void)enterFullscreen
-{
-    // Go ahead and send a notification to the world we're going into full screen
-    [[VLCEventManager sharedManager] callOnMainThreadDelegateOfObject:self 
-                                                   withDelegateMethod:nil 
-                                                 withNotificationName:VLCVideoViewEnteredFullScreen];
-    
-    [super enterFullScreenMode:[[self window] screen] withOptions:nil];
-    if( !self.fullScreen ) self.fullScreen = YES;
-}
-
-/* This is a LibVLC notification that we're about to enter leaving full screen,
-   there is no other place where I can see where we can trap this event */
-- (void)leaveFullscreen
-{
-    // Go ahead and send a notification to the world we're leaving full screen
-    [[VLCEventManager sharedManager] callOnMainThreadDelegateOfObject:self 
-                                                   withDelegateMethod:nil 
-                                                 withNotificationName:VLCVideoViewLeftFullScreen];
-    
-    // There is nothing else to do, as this object strictly displays the video feed
-    [super exitFullScreenModeWithOptions:nil];
-    if( self.fullScreen ) self.fullScreen = NO;
-}
-
 - (void)drawRect:(NSRect)aRect
 {
     [self lockFocus];
@@ -251,16 +200,6 @@ NSString * VLCVideoViewLeftFullScreen       = @"VLCVideoViewLeftFullScreen";
 {
     return YES;
 }
-
-- (void)mouseDown:(NSEvent *)theEvent
-{
-    if([theEvent clickCount] != 2)
-        return;
-    if(self.fullScreen)
-        [self leaveFullscreen];
-    else
-        [self enterFullscreen];
-}
 @end
 
 /******************************************************************************