diff libvo/vo_macosx.h @ 15611:2f77a2da1d82

Function name cleanup
author nplourde
date Thu, 02 Jun 2005 14:10:52 +0000
parents f197f4a60b20
children 25ee208c6da9
line wrap: on
line diff
--- a/libvo/vo_macosx.h	Thu Jun 02 12:03:26 2005 +0000
+++ b/libvo/vo_macosx.h	Thu Jun 02 14:10:52 2005 +0000
@@ -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;