osxvideosink: clear rectangle structures before use
[platform/upstream/gst-plugins-good.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., 51 Franklin St, Fifth Floor,
18  * Boston, MA 02110-1301, 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 #import <gst/video/navigation.h>
33
34 struct _GstOSXImage;
35
36 @interface GstGLView : NSOpenGLView
37 {
38     int i_effect;
39     unsigned int pi_texture;
40     float f_x;
41     float f_y;
42     int initDone;
43     char* data;
44     int width, height;
45     BOOL fullscreen;
46     BOOL keepAspectRatio;
47     NSOpenGLContext* fullScreenContext; 
48     NSOpenGLContext* actualContext;
49     NSTrackingArea *trackingArea;
50     GstNavigation *navigation;
51     NSRect drawingBounds;
52     NSThread *mainThread;
53     NSUInteger savedModifierFlags;
54 }
55 - (void) drawQuad;
56 - (void) drawRect: (NSRect) rect;
57 - (id) initWithFrame: (NSRect) frame;
58 - (void) initTextures;
59 - (void) reloadTexture;
60 - (void) cleanUp;
61 - (void) displayTexture;
62 - (char*) getTextureBuffer;
63 - (void) setFullScreen: (BOOL) flag;
64 - (void) setKeepAspectRatio: (BOOL) flag;
65 - (void) reshape;
66 - (void) setVideoSize:(int)w : (int)h;
67 - (NSRect) getDrawingBounds;
68 - (BOOL) haveSuperview;
69 - (void) haveSuperviewReal: (NSMutableArray *)closure;
70 - (void) addToSuperview: (NSView *)superview;
71 - (void) removeFromSuperview: (id)unused;
72 - (void) setNavigation: (GstNavigation *) nav;
73 - (void) setMainThread: (NSThread *) thread;
74
75 @end
76
77 @interface GstOSXVideoSinkWindow: NSWindow {
78    int width, height;
79    GstGLView *gstview;
80 }
81
82 - (void) setContentSize: (NSSize) size;
83 - (GstGLView *) gstView;
84 - (id)initWithContentNSRect:(NSRect)contentRect styleMask:(unsigned int)styleMask backing:(NSBackingStoreType)bufferingType defer:(BOOL)flag screen:(NSScreen *)aScreen;
85 @end