]> git.sesse.net Git - vlc/blob - modules/gui/macosx/vout.h
* More code cleanup for OSX vout. Man what a mess this is :)
[vlc] / modules / gui / macosx / vout.h
1 /*****************************************************************************
2  * vout.h: MacOS X interface module
3  *****************************************************************************
4  * Copyright (C) 2001-2003 VideoLAN
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  *
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     unsigned long     pi_textures[2];
65     float             f_x;
66     float             f_y;
67     int               initDone;
68 }
69
70 - (id)   initWithFrame: (NSRect) frame vout: (vout_thread_t*) p_vout;
71 - (void) initTextures;
72 - (void) reloadTexture: (int) index;
73 - (void) cleanUp;
74
75 @end
76
77 /*****************************************************************************
78  * vout_sys_t: MacOS X video output method descriptor
79  *****************************************************************************/
80 struct vout_sys_t
81 {
82     NSAutoreleasePool *o_pool;
83     NSRect s_rect;
84     VLCWindow * o_window;
85     VLCQTView * o_qtview;
86
87     int i_opengl;
88     int b_pos_saved;
89     
90     vlc_bool_t b_mouse_moved;
91     mtime_t i_time_mouse_last_moved;
92
93 #ifdef __QUICKTIME__
94     CodecType i_codec;
95     CGrafPtr p_qdport;
96     ImageSequence i_seq;
97     MatrixRecordPtr p_matrix;
98     DecompressorComponent img_dc;
99     ImageDescriptionHandle h_img_descr;
100     Ptr p_fullscreen_state;
101 #endif
102
103     /* OpenGL */
104     VLCGLView * o_glview;
105     uint8_t   * p_data[2];
106     uint8_t   * p_data_orig[2];
107     int         i_cur_pic;
108 };