VLCMinimalVoutWindow.m
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:3k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * VLCMinimalVoutWindow.m: MacOS X Minimal interface window
  3.  *****************************************************************************
  4.  * Copyright (C) 2007 the VideoLAN team
  5.  * $Id: f3357e0adc43d90c602cd45d74481a054a9a2f8c $
  6.  *
  7.  * Authors: Pierre d'Herbemont <pdherbemont # videolan.org>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  22.  *****************************************************************************/
  23. /*****************************************************************************
  24.  * Preamble
  25.  *****************************************************************************/
  26. #include "intf.h"
  27. #include "voutgl.h"
  28. #include "VLCOpenGLVoutView.h"
  29. #include "VLCMinimalVoutWindow.h"
  30. #import <Cocoa/Cocoa.h>
  31. /* SetSystemUIMode, ... */
  32. #import <Carbon/Carbon.h>
  33. @implementation VLCMinimalVoutWindow
  34. - (id)initWithContentRect:(NSRect)contentRect
  35. {
  36.     if( self = [super initWithContentRect:contentRect styleMask:NSBorderlessWindowMask backing:NSBackingStoreBuffered defer:NO])
  37.     {
  38.         initialFrame = contentRect;
  39.         fullscreen = NO;
  40.         [self setBackgroundColor:[NSColor blackColor]];
  41.         [self setHasShadow:YES];
  42.         [self setMovableByWindowBackground: YES];
  43.         [self center];
  44.     }
  45.     return self;
  46. }
  47. /* @protocol VLCOpenGLVoutEmbedding */
  48. - (void)addVoutSubview:(NSView *)view
  49. {
  50.     [view setAutoresizingMask:NSViewHeightSizable|NSViewWidthSizable];
  51.     [[self contentView] addSubview:view];
  52.     [view setFrame:[[self contentView] bounds]];
  53. }
  54. - (void)removeVoutSubview:(NSView *)view
  55. {
  56.     [self close];
  57.     [self release];
  58. }
  59. - (void)enterFullscreen
  60. {
  61.     fullscreen = YES;
  62.     initialFrame = [self frame];
  63.     SetSystemUIMode( kUIModeAllHidden, kUIOptionAutoShowMenuBar);
  64.     [self setFrame:[[self screen] frame] display:YES animate:YES];
  65. }
  66. - (void)leaveFullscreen
  67. {
  68.     fullscreen = NO;
  69.     SetSystemUIMode( kUIModeNormal, kUIOptionAutoShowMenuBar);
  70.     [self setFrame:initialFrame display:YES animate:YES];
  71. }
  72. - (BOOL)stretchesVideo
  73. {
  74.     return NO;
  75. }
  76. - (void)setOnTop: (BOOL)ontop
  77. {
  78. }
  79. @end