]> git.sesse.net Git - vlc/blob - modules/gui/macosx/vout.h
macosx/vout* : OpenGL VRAM texturing finaly works correctly now.
[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.22 2004/02/03 13:00:27 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             b_init_done;
64     unsigned long   i_texture;
65     float           f_x;
66     float           f_y;
67 }
68
69 - (id) initWithFrame: (NSRect) frame vout: (vout_thread_t*) p_vout;
70 - (void) initTextures;
71 - (void) reloadTexture;
72
73 @end
74
75 /*****************************************************************************
76  * VLCVout interface
77  *****************************************************************************/
78 @interface VLCVout : NSObject
79 {
80 }
81
82 - (void)createWindow:(NSValue *)o_value;
83 - (void)destroyWindow:(NSValue *)o_value;
84
85 @end
86
87 /*****************************************************************************
88  * vout_sys_t: MacOS X video output method descriptor
89  *****************************************************************************/
90 struct vout_sys_t
91 {
92     int i_opengl;
93     
94     NSRect s_rect;
95     int b_pos_saved;
96     VLCWindow * o_window;
97
98     vlc_bool_t b_mouse_moved;
99     mtime_t i_time_mouse_last_moved;
100
101 #ifdef __QUICKTIME__
102     CodecType i_codec;
103     CGrafPtr p_qdport;
104     ImageSequence i_seq;
105     MatrixRecordPtr p_matrix;
106     DecompressorComponent img_dc;
107     ImageDescriptionHandle h_img_descr;
108     Ptr p_fullscreen_state;
109 #endif
110
111     VLCGLView * o_glview;
112 };