]> git.sesse.net Git - vlc/blob - modules/gui/macosx/embeddedwindow.h
* Add an controls to the vout (using the embedded vout framework)
[vlc] / modules / gui / macosx / embeddedwindow.h
1 /*****************************************************************************
2  * embeddedwindow.h: MacOS X interface module
3  *****************************************************************************
4  * Copyright (C) 2002-2004 the VideoLAN team
5  * $Id: playlistinfo.h 11664 2005-07-09 06:17:09Z courmisch $
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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * VLCEmbeddedWindow interface
26  *****************************************************************************/
27
28
29 @interface VLCEmbeddedWindow : NSObject
30 {
31     IBOutlet id o_btn_backward;
32     IBOutlet id o_btn_forward;
33     IBOutlet id o_btn_fullscreen;
34     IBOutlet id o_btn_play;
35     IBOutlet id o_slider;
36     IBOutlet id o_time;
37     IBOutlet id o_window;
38
39     NSImage * o_img_play;
40     NSImage * o_img_play_pressed;
41     NSImage * o_img_pause;
42     NSImage * o_img_pause_pressed;
43 }
44
45 - (void)setTime:(NSString *)o_arg_ime position:(float)f_position;
46 - (void)playStatusUpdated:(int)i_status;
47 - (void)setSeekable:(BOOL)b_seekable;
48 - (void)setFullscreen:(BOOL)b_fullscreen;
49
50 @end
51