Fix vf_tcdump's compilation
[mplayer/kovensky.git] / libvo / vo_corevideo.h
blob691ebe65374d416340909cc776a67d56b6901de4
1 /*
2 * CoreVideo video output driver
4 * Copyright (c) 2005 Nicolas Plourde <nicolasplourde@gmail.com>
6 * This file is part of MPlayer.
8 * MPlayer is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * MPlayer is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License along
19 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 #import <Cocoa/Cocoa.h>
24 #import <QuartzCore/QuartzCore.h>
25 #import <Carbon/Carbon.h>
27 // MPlayer OS X VO Protocol
28 @protocol MPlayerOSXVOProto
29 - (int) startWithWidth: (bycopy int)width
30 withHeight: (bycopy int)height
31 withBytes: (bycopy int)bytes
32 withAspect: (bycopy int)aspect;
33 - (void) stop;
34 - (void) render;
35 - (void) toggleFullscreen;
36 - (void) ontop;
37 @end
39 @interface MPlayerOpenGLView : NSOpenGLView
41 //Cocoa
42 NSWindow *window;
43 NSEvent *event;
45 //CoreVideo
46 CVPixelBufferRef frameBuffers[2];
47 CVOpenGLTextureCacheRef textureCache;
48 CVOpenGLTextureRef texture;
49 NSRect textureFrame;
51 GLfloat lowerLeft[2];
52 GLfloat lowerRight[2];
53 GLfloat upperRight[2];
54 GLfloat upperLeft[2];
56 BOOL mouseHide;
58 //menu command id
59 NSMenuItem *kQuitCmd;
60 NSMenuItem *kHalfScreenCmd;
61 NSMenuItem *kNormalScreenCmd;
62 NSMenuItem *kDoubleScreenCmd;
63 NSMenuItem *kFullScreenCmd;
64 NSMenuItem *kKeepAspectCmd;
65 NSMenuItem *kAspectOrgCmd;
66 NSMenuItem *kAspectFullCmd;
67 NSMenuItem *kAspectWideCmd;
68 NSMenuItem *kPanScanCmd;
70 //timestamps for disabling screensaver and mouse hiding
71 int lastMouseHide;
72 int lastScreensaverUpdate;
73 @public
74 float winSizeMult;
77 - (BOOL) acceptsFirstResponder;
78 - (BOOL) becomeFirstResponder;
79 - (BOOL) resignFirstResponder;
81 //window & rendering
82 - (void) preinit;
83 - (void) config;
84 - (void) prepareOpenGL;
85 - (void) render;
86 - (void) reshape;
87 - (void) setCurrentTexture;
88 - (void) drawRect: (NSRect *) bounds;
90 //vo control
91 - (void) fullscreen: (BOOL) animate;
92 - (void) ontop;
93 - (void) panscan;
94 - (void) rootwin;
96 //menu
97 - (void) initMenu;
98 - (void) menuAction:(id)sender;
100 //event
101 - (void) keyDown: (NSEvent *) theEvent;
102 - (void) mouseMoved: (NSEvent *) theEvent;
103 - (void) mouseDown: (NSEvent *) theEvent;
104 - (void) mouseUp: (NSEvent *) theEvent;
105 - (void) rightMouseDown: (NSEvent *) theEvent;
106 - (void) rightMouseUp: (NSEvent *) theEvent;
107 - (void) otherMouseDown: (NSEvent *) theEvent;
108 - (void) otherMouseUp: (NSEvent *) theEvent;
109 - (void) scrollWheel: (NSEvent *) theEvent;
110 - (void) mouseEvent: (NSEvent *) theEvent;
111 - (void) check_events;
112 @end