summaryrefslogtreecommitdiff
path: root/src/video_out/macosx/video_window.h
diff options
context:
space:
mode:
authorAndre Pang <athp@users.sourceforge.net>2004-06-19 15:33:20 +0000
committerAndre Pang <athp@users.sourceforge.net>2004-06-19 15:33:20 +0000
commit08218a933e133f0b87b595f3d58ea8e4cb9f74aa (patch)
tree65e8bd204f56568509fec34f95352b69d17d8413 /src/video_out/macosx/video_window.h
parentf44a5b7a414ecc1e1d07d95f63cafab3bf110a46 (diff)
downloadxine-lib-08218a933e133f0b87b595f3d58ea8e4cb9f74aa.tar.gz
xine-lib-08218a933e133f0b87b595f3d58ea8e4cb9f74aa.tar.bz2
Mac OS X's XineVideoWindow:
Renamed openGLView field to xineView Renamed getGLView to xineView: putting 'get' in front of an accessor method in Cocoa implies that the method gives you a _copy_ of the field, e.g. see NSString's cString method vs its getCString method. Removed displayTexture method, since XineOpenGLView has it CVS patchset: 6707 CVS date: 2004/06/19 15:33:20
Diffstat (limited to 'src/video_out/macosx/video_window.h')
-rw-r--r--src/video_out/macosx/video_window.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/video_out/macosx/video_window.h b/src/video_out/macosx/video_window.h
index 54250a971..61602c498 100644
--- a/src/video_out/macosx/video_window.h
+++ b/src/video_out/macosx/video_window.h
@@ -67,12 +67,11 @@ typedef enum {
@interface XineVideoWindow : NSWindow {
int width, height;
BOOL keepAspectRatio;
- XineOpenGLView *openGLView;
+ XineOpenGLView *xineView;
}
- (void) setContentSize: (NSSize) size;
-- (void) displayTexture;
-- (XineOpenGLView *) getGLView;
+- (XineOpenGLView *) xineView;
- (void) fitToScreen;
- (void) setKeepsAspectRatio: (BOOL) i;
- (int) keepsAspectRatio;