]> git.sesse.net Git - vlc/blob - modules/gui/macosx/vout.h
* Added a Close Window and a close box to our QuickTime video output.
[vlc] / modules / gui / macosx / vout.h
1 /*****************************************************************************
2  * vout.h: MacOS X interface plugin
3  *****************************************************************************
4  * Copyright (C) 2001, 2002 VideoLAN
5  * $Id: vout.h,v 1.4 2003/01/05 01:55:07 massiot 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  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  * 
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
24  *****************************************************************************/
25
26 /*****************************************************************************
27  * VLCWindow interface
28  *****************************************************************************/
29 @interface VLCWindow : NSWindow
30 {
31     vout_thread_t * p_vout;
32 }
33
34 - (void)setVout:(vout_thread_t *)_p_vout;
35 - (vout_thread_t *)getVout;
36
37 - (void)toggleFullscreen;
38 - (BOOL)isFullscreen;
39
40 - (BOOL)windowShouldClose:(id)sender;
41
42 @end
43
44 /*****************************************************************************
45  * VLCView interface
46  *****************************************************************************/
47 @interface VLCView : NSQuickDrawView
48 {
49 }
50
51 @end
52
53 /*****************************************************************************
54  * VLCVout interface
55  *****************************************************************************/
56 @interface VLCVout : NSObject
57 {
58 }
59
60 - (void)createWindow:(NSValue *)o_value;
61 - (void)destroyWindow:(NSValue *)o_value;
62
63 @end
64
65 /*****************************************************************************
66  * vout_sys_t: MacOS X video output method descriptor
67  *****************************************************************************/
68 struct vout_sys_t
69 {
70     NSConditionLock * o_lock;
71
72     NSRect s_rect;
73     int b_pos_saved;
74     VLCWindow * o_window;
75
76     vlc_bool_t b_mouse_moved;
77     vlc_bool_t b_mouse_pointer_visible;
78     mtime_t i_time_mouse_last_moved;
79
80 #ifdef __QUICKTIME__
81     CodecType i_codec;
82     CGrafPtr p_qdport;
83     ImageSequence i_seq;
84     MatrixRecordPtr p_matrix;
85     DecompressorComponent img_dc;
86     ImageDescriptionHandle h_img_descr;
87     Ptr p_fullscreen_state;
88 #endif
89 };