1 /*****************************************************************************
2 * embeddedwindow.h: MacOS X interface module
3 *****************************************************************************
4 * Copyright (C) 2005-2006 the VideoLAN team
7 * Authors: Benjamin Pracht <bigben at videolan dot org>
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.
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.
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 *****************************************************************************/
24 /*****************************************************************************
25 * VLCEmbeddedWindow interface
26 *****************************************************************************/
30 @interface VLCEmbeddedWindow : NSWindow
32 IBOutlet id o_btn_backward;
33 IBOutlet id o_btn_forward;
34 IBOutlet id o_btn_fullscreen;
35 IBOutlet id o_btn_play;
41 NSImage * o_img_play_pressed;
42 NSImage * o_img_pause;
43 NSImage * o_img_pause_pressed;
45 VLCWindow * o_fullscreen_window;
46 NSViewAnimation * o_fullscreen_anim1;
47 NSViewAnimation * o_fullscreen_anim2;
49 /* set to yes if we are fullscreen and all animations are over */
51 BOOL b_animation_lock_alreadylocked;
52 NSRecursiveLock * o_animation_lock;
55 - (void)setTime:(NSString *)o_arg_ime position:(float)f_position;
56 - (void)playStatusUpdated:(int)i_status;
57 - (void)setSeekable:(BOOL)b_seekable;
63 - (void)lockFullscreenAnimation;
64 - (void)unlockFullscreenAnimation;
66 - (void)enterFullscreen;
67 - (void)leaveFullscreen;
68 /* Allows to leave fullscreen by simply fading out the display */
69 - (void)leaveFullscreenAndFadeOut: (BOOL)fadeout;
72 - (void)hasEndedFullscreen;
73 - (void)hasBecomeFullscreen;
75 - (void)setFrameOnMainThread:(NSData*)packedargs;