Tizen 2.0 Release
[framework/multimedia/gst-plugins-good0.10.git] / sys / osxvideo / cocoawindow.h
1 /* GStreamer
2  * Copyright (C) 2004 Zaheer Abbas Merali <zaheerabbas at merali dot org>
3  * Copyright (C) 2007 Pioneers of the Inevitable <songbird@songbirdnest.com>
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Library General Public License for more details.
14  *
15  * You should have received a copy of the GNU Library General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  *
20  * The development of this code was made possible due to the involvement of Pioneers 
21  * of the Inevitable, the creators of the Songbird Music player
22  * 
23  */
24
25 /* inspiration gained from looking at source of osx video out of xine and vlc 
26  * and is reflected in the code
27  */
28
29 #import <Cocoa/Cocoa.h>
30 #import <QuickTime/QuickTime.h>
31 #import <glib.h>
32
33 struct _GstOSXImage;
34
35 @interface GstGLView : NSOpenGLView
36 {
37     int i_effect;
38     unsigned int pi_texture;
39     float f_x;
40     float f_y;
41     int initDone;
42     char* data;
43     int width, height;
44     BOOL fullscreen;
45     NSOpenGLContext* fullScreenContext; 
46     NSOpenGLContext* actualContext;
47 }
48 - (void) drawQuad;
49 - (void) drawRect: (NSRect) rect;
50 - (id) initWithFrame: (NSRect) frame;
51 - (void) initTextures;
52 - (void) reloadTexture;
53 - (void) cleanUp;
54 - (void) displayTexture;
55 - (char*) getTextureBuffer;
56 - (void) setFullScreen: (BOOL) flag;
57 - (void) reshape;
58 - (void) setVideoSize: (int) w: (int) h;
59 - (BOOL) haveSuperview;
60 - (void) haveSuperviewReal: (NSMutableArray *)closure;
61 - (void) addToSuperview: (NSView *)superview;
62 - (void) removeFromSuperview: (id)unused;
63
64 @end
65
66 @interface GstOSXVideoSinkWindow: NSWindow {
67    int width, height;
68    GstGLView *gstview;
69 }
70
71 - (void) setContentSize: (NSSize) size;
72 - (GstGLView *) gstView;
73 - (id)initWithContentRect:(NSRect)contentRect styleMask:(unsigned int)styleMask backing:(NSBackingStoreType)bufferingType defer:(BOOL)flag screen:(NSScreen *)aScreen;
74 @end