]> git.sesse.net Git - vlc/blob - modules/gui/macosx/embeddedwindow.h
e9964b84f13e9613b4c2bdfeb1955bccd0dd3b1a
[vlc] / modules / gui / macosx / embeddedwindow.h
1 /*****************************************************************************
2  * embeddedwindow.h: MacOS X interface module
3  *****************************************************************************
4  * Copyright (C) 2005-2006 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     NSRect o_saved_frame;
46
47     VLCWindow       * o_fullscreen_window;
48     NSViewAnimation * o_fullscreen_anim1;
49     NSViewAnimation * o_fullscreen_anim2;
50     NSView          * o_temp_view;
51 }
52
53 - (void)setTime:(NSString *)o_arg_ime position:(float)f_position;
54 - (void)playStatusUpdated:(int)i_status;
55 - (void)setSeekable:(BOOL)b_seekable;
56
57 - (void)enterFullscreen;
58 - (void)leaveFullscreen;
59
60 /* private */
61 - (void)hasEndedFullscreen;
62 - (void)hasBecomeFullscreen;
63 @end
64