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