summaryrefslogtreecommitdiffstats
path: root/libvo/vo_macosx.h
diff options
context:
space:
mode:
authornplourde <nplourde@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-06-02 14:10:52 +0000
committernplourde <nplourde@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-06-02 14:10:52 +0000
commitc4d2a1e479e41d6929d914ca7723738d7362d997 (patch)
tree4c60d898e8b729cc7eb6e6b58944405783a5b219 /libvo/vo_macosx.h
parent994a2b2479f1a1b89ca901559ccd28e8f4813953 (diff)
downloadmpv-c4d2a1e479e41d6929d914ca7723738d7362d997.tar.bz2
mpv-c4d2a1e479e41d6929d914ca7723738d7362d997.tar.xz
Function name cleanup
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@15612 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo/vo_macosx.h')
-rw-r--r--libvo/vo_macosx.h12
1 files changed, 8 insertions, 4 deletions
diff --git a/libvo/vo_macosx.h b/libvo/vo_macosx.h
index 046cdf1b60..fc57dd1937 100644
--- a/libvo/vo_macosx.h
+++ b/libvo/vo_macosx.h
@@ -12,7 +12,7 @@
#import <QuartzCore/QuartzCore.h>
#import <QuickTime/QuickTime.h>
-@interface CustomOpenGLView : NSOpenGLView
+@interface MPlayerOpenGLView : NSOpenGLView
{
//Cocoa
NSWindow *window;
@@ -49,19 +49,23 @@
- (BOOL) resignFirstResponder;
//window & rendering
-- (void) initOpenGLView;
-- (void) initMenu;
-- (void) menuAction:(id)sender;
+- (void) initView;
- (void) prepareOpenGL;
- (void) render;
- (void) reshape;
- (void) setCurrentTexture;
- (void) drawRect: (NSRect *) bounds;
+
+//vo control
- (void) fullscreen: (BOOL) animate;
- (void) ontop;
- (void) panscan;
- (void) rootwin;
+//menu
+- (void) initMenu;
+- (void) menuAction:(id)sender;
+
//event
- (void) keyDown: (NSEvent *) theEvent;
- (void) mouseMoved: (NSEvent *) theEvent;