]> git.sesse.net Git - vlc/blob - modules/gui/macosx/vout.h
macosx/vout* : fixed OpenGL fullscreen (still needs some cleaning)
[vlc] / modules / gui / macosx / vout.h
1 /*****************************************************************************
2  * vout.h: MacOS X interface module
3  *****************************************************************************
4  * Copyright (C) 2001-2003 VideoLAN
5  * $Id: vout.h,v 1.24 2004/02/25 19:27:23 titer Exp $
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  *
12  * This program is free software; you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation; either version 2 of the License, or
15  * (at your option) any later version.
16  * 
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
25  *****************************************************************************/
26
27 /*****************************************************************************
28  * VLCWindow interface
29  *****************************************************************************/
30 @interface VLCWindow : NSWindow
31 {
32     vout_thread_t * p_vout;
33 }
34
35 - (void)setVout:(vout_thread_t *)_p_vout;
36 - (vout_thread_t *)getVout;
37
38 - (void)scaleWindowWithFactor: (float)factor;
39 - (void)toggleFloatOnTop;
40 - (void)toggleFullscreen;
41 - (BOOL)isFullscreen;
42 - (void)updateTitle;
43
44 - (BOOL)windowShouldClose:(id)sender;
45
46 @end
47
48 /*****************************************************************************
49  * VLCView interface
50  *****************************************************************************/
51 @interface VLCQTView : NSQuickDrawView
52 {
53 }
54
55 @end
56
57 /*****************************************************************************
58  * VLCView interface
59  *****************************************************************************/
60 @interface VLCGLView : NSOpenGLView
61 {
62     vout_thread_t   * p_vout;
63     int               i_effect;
64     int               b_init_done;
65     unsigned long     i_texture;
66     float             f_x;
67     float             f_y;
68     NSOpenGLContext * fullScreenContext;
69     NSOpenGLContext * currentContext;
70 }
71
72 - (id) initWithFrame: (NSRect) frame vout: (vout_thread_t*) p_vout;
73 - (void) initTextures;
74 - (void) reloadTexture;
75 - (void) goFullScreen;
76 - (void) exitFullScreen;
77
78 @end
79
80 /*****************************************************************************
81  * VLCVout interface
82  *****************************************************************************/
83 @interface VLCVout : NSObject
84 {
85 }
86
87 - (void)createWindow:(NSValue *)o_value;
88 - (void)destroyWindow:(NSValue *)o_value;
89
90 @end
91
92 /*****************************************************************************
93  * vout_sys_t: MacOS X video output method descriptor
94  *****************************************************************************/
95 struct vout_sys_t
96 {
97     int i_opengl;
98     
99     NSRect s_rect;
100     int b_pos_saved;
101     VLCWindow * o_window;
102
103     vlc_bool_t b_mouse_moved;
104     mtime_t i_time_mouse_last_moved;
105
106 #ifdef __QUICKTIME__
107     CodecType i_codec;
108     CGrafPtr p_qdport;
109     ImageSequence i_seq;
110     MatrixRecordPtr p_matrix;
111     DecompressorComponent img_dc;
112     ImageDescriptionHandle h_img_descr;
113     Ptr p_fullscreen_state;
114 #endif
115
116     VLCGLView * o_glview;
117 };