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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * embeddedwindow.h: MacOS X interface module
  3.  *****************************************************************************
  4.  * Copyright (C) 2005-2007 the VideoLAN team
  5.  * $Id: 5c20d1b02b63beba68ffdbebc784069fb3515835 $
  6.  *
  7.  * Authors: Benjamin Pracht <bigben at videolan dot 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.  * VLCEmbeddedWindow interface
  25.  *****************************************************************************/
  26. #import "misc.h"
  27. @interface VLCEmbeddedWindow : NSWindow
  28. {
  29.     IBOutlet id o_btn_backward;
  30.     IBOutlet id o_btn_forward;
  31.     IBOutlet id o_btn_fullscreen;
  32.     IBOutlet id o_btn_play;
  33.     IBOutlet id o_slider;
  34.     IBOutlet id o_time;
  35.     IBOutlet id o_view;
  36.     NSImage * o_img_play;
  37.     NSImage * o_img_play_pressed;
  38.     NSImage * o_img_pause;
  39.     NSImage * o_img_pause_pressed;
  40.     VLCWindow       * o_fullscreen_window;
  41.     NSViewAnimation * o_fullscreen_anim1;
  42.     NSViewAnimation * o_fullscreen_anim2;
  43.     NSViewAnimation * o_makekey_anim;
  44.     NSView          * o_temp_view;
  45.     /* set to yes if we are fullscreen and all animations are over */
  46.     BOOL              b_fullscreen;
  47.     NSRecursiveLock * o_animation_lock;
  48.     BOOL              b_window_is_invisible;
  49.     NSSize videoRatio;
  50.     int originalLevel;
  51. }
  52. - (void)controlTintChanged;
  53. - (void)setTime: (NSString *)o_arg_ime position: (float)f_position;
  54. - (void)playStatusUpdated: (int)i_status;
  55. - (void)setSeekable: (BOOL)b_seekable;
  56. - (void)setVideoRatio:(NSSize)ratio;
  57. - (NSView *)mainView;
  58. - (BOOL)isFullscreen;
  59. - (void)lockFullscreenAnimation;
  60. - (void)unlockFullscreenAnimation;
  61. - (void)enterFullscreen;
  62. - (void)leaveFullscreen;
  63. /* Allows to leave fullscreen by simply fading out the display */
  64. - (void)leaveFullscreenAndFadeOut: (BOOL)fadeout;
  65. /* private */
  66. - (void)hasEndedFullscreen;
  67. - (void)hasBecomeFullscreen;
  68. - (void)setFrameOnMainThread:(NSData*)packedargs;
  69. @end