]> git.sesse.net Git - vlc/blob - modules/gui/macosx/vout.h
* Apply changed made to the 0.8.5 branch to trunk.
[vlc] / modules / gui / macosx / vout.h
1 /*****************************************************************************
2  * vout.h: MacOS X interface module
3  *****************************************************************************
4  * Copyright (C) 2001-2005 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Colin Delacroix <colin@zoy.org>
8  *          Florian G. Pflug <fgp@phlo.org>
9  *          Jon Lech Johansen <jon-vl@nanocrew.net>
10  *          Eric Petit <titer@m0k.org>
11  *          Benjamin Pracht <bigben at videolan dot org>
12  *
13  * This program is free software; you can redistribute it and/or modify
14  * it under the terms of the GNU General Public License as published by
15  * the Free Software Foundation; either version 2 of the License, or
16  * (at your option) any later version.
17  * 
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program; if not, write to the Free Software
25  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
26  *****************************************************************************/
27
28 /*****************************************************************************
29  * VLCEmbeddedList interface
30  *****************************************************************************/
31 @interface VLCEmbeddedList : NSObject
32 {
33     NSMutableArray * o_embedded_array;
34 }
35
36 - (id)getEmbeddedVout;
37 - (void)releaseEmbeddedVout: (id)o_vout_view;
38 - (void)addEmbeddedVout: (id)o_vout_view;
39 - (BOOL)windowContainsEmbedded: (id)o_window;
40 - (id)getViewForWindow: (id)o_window;
41
42 @end
43
44 /*****************************************************************************
45  * VLCVoutView interface
46  *****************************************************************************/
47 @interface VLCVoutView : NSView
48 {
49     vout_thread_t * p_vout;
50     NSView        * o_view;
51     NSRect        * s_frame;
52
53     vout_thread_t * p_real_vout;
54     id              o_window;
55 }
56 - (BOOL)setVout: (vout_thread_t *) p_arg_vout subView: (NSView *) view
57                      frame: (NSRect *) s_arg_frame;
58 - (void)closeVout;
59 - (void)manage;
60 - (void)scaleWindowWithFactor: (float)factor;
61 - (void)setOnTop:(BOOL)b_on_top;
62 - (void)toggleFloatOnTop;
63 - (void)toggleFullscreen;
64 - (BOOL)isFullscreen;
65 - (void)snapshot;
66 - (id)getWindow;
67
68 + (id)getVoutView: (vout_thread_t *)p_vout subView: (NSView *) view
69                             frame: (NSRect *) s_frame;
70 + (vout_thread_t *)getRealVout: (vout_thread_t *)p_vout;
71
72 @end
73
74 /*****************************************************************************
75  * VLCVoutDetachedView interface
76  *****************************************************************************/
77
78 @interface VLCDetachedVoutView : VLCVoutView
79 {
80     mtime_t i_time_mouse_last_moved;
81 }
82
83 - (void)hideMouse: (BOOL)b_hide;
84
85 @end
86
87 /*****************************************************************************
88  * VLCEmbeddedView interface
89  *****************************************************************************/
90
91 @interface VLCEmbeddedVoutView : VLCVoutView
92 {
93     BOOL b_used;
94 }
95
96 - (void)setUsed: (BOOL)b_new_used;
97 - (BOOL)isUsed;
98
99 @end
100
101 /*****************************************************************************
102  * VLCWindow interface
103  *****************************************************************************/
104 @interface VLCWindow : NSWindow
105 {
106     vout_thread_t * p_vout;
107     VLCVoutView   * o_view;
108     NSRect        * s_frame;
109
110     vout_thread_t * p_real_vout;
111     Ptr             p_fullscreen_state;
112     vlc_bool_t      b_init_ok;
113 }
114
115 - (id) initWithVout: (vout_thread_t *) p_vout view: (VLCVoutView *) view
116                      frame: (NSRect *) s_frame;
117 - (id)initReal: (id) sender;
118 - (void)close;
119 - (void)closeWindow;
120 - (id)closeReal: (id) sender;
121 - (id)getVoutView;
122 - (void)updateTitle;
123
124 - (BOOL)windowShouldClose:(id)sender;
125
126 @end