]> git.sesse.net Git - vlc/blob - modules/video_output/macosx.m
Qt: remove menus language selection. (fix #8201)
[vlc] / modules / video_output / macosx.m
1 /*****************************************************************************
2  * macosx.m: MacOS X OpenGL provider
3  *****************************************************************************
4  * Copyright (C) 2001-2013 VLC authors and VideoLAN
5  * $Id$
6  *
7  * Authors: Derk-Jan Hartman <hartman at videolan dot org>
8  *          Eric Petit <titer@m0k.org>
9  *          Benjamin Pracht <bigben at videolan dot org>
10  *          Damien Fouilleul <damienf at videolan dot org>
11  *          Pierre d'Herbemont <pdherbemont at videolan dot org>
12  *          Felix Paul Kühne <fkuehne at videolan dot org>
13  *          David Fuhrmann <david dot fuhrmann at googlemail dot com>
14  *          Rémi Denis-Courmont
15  *          Juho Vähä-Herttua <juhovh at iki dot fi>
16  *          Laurent Aimar <fenrir _AT_ videolan _DOT_ org>
17  *
18  * This program is free software; you can redistribute it and/or modify it
19  * under the terms of the GNU Lesser General Public License as published by
20  * the Free Software Foundation; either version 2.1 of the License, or
21  * (at your option) any later version.
22  *
23  * This program is distributed in the hope that it will be useful,
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26  * GNU Lesser General Public License for more details.
27  *
28  * You should have received a copy of the GNU Lesser General Public License
29  * along with this program; if not, write to the Free Software Foundation,
30  * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
31  *****************************************************************************/
32
33 /*****************************************************************************
34  * Preamble
35  *****************************************************************************/
36
37 #import <Cocoa/Cocoa.h>
38 #import <OpenGL/OpenGL.h>
39 #import <dlfcn.h>
40
41 #ifdef HAVE_CONFIG_H
42 # include "config.h"
43 #endif
44
45 #include <vlc_common.h>
46 #include <vlc_plugin.h>
47 #include <vlc_vout_display.h>
48 #include <vlc_opengl.h>
49 #include <vlc_dialog.h>
50 #include "opengl.h"
51
52 /* compilation support for 10.5 and 10.6 */
53 #define OSX_LION NSAppKitVersionNumber >= 1115.2
54 #ifndef MAC_OS_X_VERSION_10_7
55
56 @interface NSView (IntroducedInLion)
57 - (NSRect)convertRectToBacking:(NSRect)aRect;
58 - (void)setWantsBestResolutionOpenGLSurface:(BOOL)aBool;
59 @end
60
61 #endif
62
63 /**
64  * Forward declarations
65  */
66 static int Open (vlc_object_t *);
67 static void Close (vlc_object_t *);
68
69 static picture_pool_t *Pool (vout_display_t *vd, unsigned requested_count);
70 static void PictureRender (vout_display_t *vd, picture_t *pic, subpicture_t *subpicture);
71 static void PictureDisplay (vout_display_t *vd, picture_t *pic, subpicture_t *subpicture);
72 static int Control (vout_display_t *vd, int query, va_list ap);
73
74 static void *OurGetProcAddress(vlc_gl_t *, const char *);
75
76 static int OpenglLock (vlc_gl_t *gl);
77 static void OpenglUnlock (vlc_gl_t *gl);
78 static void OpenglSwap (vlc_gl_t *gl);
79
80 /**
81  * Module declaration
82  */
83 vlc_module_begin ()
84     /* Will be loaded even without interface module. see voutgl.m */
85     set_shortname ("Mac OS X")
86     set_description (N_("Mac OS X OpenGL video output (requires drawable-nsobject)"))
87     set_category (CAT_VIDEO)
88     set_subcategory (SUBCAT_VIDEO_VOUT)
89     set_capability ("vout display", 300)
90     set_callbacks (Open, Close)
91
92     add_shortcut ("macosx", "vout_macosx")
93 vlc_module_end ()
94
95 /**
96  * Obj-C protocol declaration that drawable-nsobject should follow
97  */
98 @protocol VLCOpenGLVideoViewEmbedding <NSObject>
99 - (void)addVoutSubview:(NSView *)view;
100 - (void)removeVoutSubview:(NSView *)view;
101 @end
102
103 @interface VLCOpenGLVideoView : NSOpenGLView
104 {
105     vout_display_t *vd;
106     BOOL _hasPendingReshape;
107 }
108 - (void)setVoutDisplay:(vout_display_t *)vd;
109 - (void)setVoutFlushing:(BOOL)flushing;
110 @end
111
112
113 struct vout_display_sys_t
114 {
115     VLCOpenGLVideoView *glView;
116     id<VLCOpenGLVideoViewEmbedding> container;
117
118     vout_window_t *embed;
119     vlc_gl_t gl;
120     vout_display_opengl_t *vgl;
121
122     picture_pool_t *pool;
123     picture_t *current;
124     bool has_first_frame;
125
126     vout_display_place_t place;
127 };
128
129
130 static void *OurGetProcAddress(vlc_gl_t *gl, const char *name)
131 {
132     VLC_UNUSED(gl);
133
134     return dlsym(RTLD_DEFAULT, name);
135 }
136
137 static int Open (vlc_object_t *this)
138 {
139     vout_display_t *vd = (vout_display_t *)this;
140     vout_display_sys_t *sys = calloc (1, sizeof(*sys));
141     NSAutoreleasePool *nsPool = nil;
142
143     if (!sys)
144         return VLC_ENOMEM;
145
146     if (!CGDisplayUsesOpenGLAcceleration (kCGDirectMainDisplay)) {
147         msg_Err (this, "no OpenGL hardware acceleration found. this can lead to slow output and unexpected results");
148         dialog_Fatal (this, _("OpenGL acceleration is not supported on your Mac"), _("Your Mac lacks Quartz Extreme acceleration, which is required for video output. It will still work, but much slower and with possibly unexpected results."));
149     } else
150         msg_Dbg (this, "Quartz Extreme acceleration is active");
151
152     vd->sys = sys;
153     sys->pool = NULL;
154     sys->gl.sys = NULL;
155     sys->embed = NULL;
156
157     /* Get the drawable object */
158     id container = var_CreateGetAddress (vd, "drawable-nsobject");
159     if (container)
160         vout_display_DeleteWindow (vd, NULL);
161     else {
162         vout_window_cfg_t wnd_cfg;
163
164         memset (&wnd_cfg, 0, sizeof (wnd_cfg));
165         wnd_cfg.type = VOUT_WINDOW_TYPE_NSOBJECT;
166         wnd_cfg.x = var_InheritInteger (vd, "video-x");
167         wnd_cfg.y = var_InheritInteger (vd, "video-y");
168         wnd_cfg.width  = vd->cfg->display.width;
169         wnd_cfg.height = vd->cfg->display.height;
170
171         sys->embed = vout_display_NewWindow (vd, &wnd_cfg);
172         if (sys->embed)
173             container = sys->embed->handle.nsobject;
174
175         if (!container) {
176             msg_Dbg(vd, "No drawable-nsobject nor vout_window_t found, passing over.");
177             goto error;
178         }
179     }
180
181     /* This will be released in Close(), on
182      * main thread, after we are done using it. */
183     sys->container = [container retain];
184
185     /* Get our main view*/
186     nsPool = [[NSAutoreleasePool alloc] init];
187
188     [VLCOpenGLVideoView performSelectorOnMainThread:@selector(getNewView:) withObject:[NSValue valueWithPointer:&sys->glView] waitUntilDone:YES];
189     if (!sys->glView)
190         goto error;
191
192     [sys->glView setVoutDisplay:vd];
193
194     /* We don't wait, that means that we'll have to be careful about releasing
195      * container.
196      * That's why we'll release on main thread in Close(). */
197     if ([(id)container respondsToSelector:@selector(addVoutSubview:)])
198         [(id)container performSelectorOnMainThread:@selector(addVoutSubview:) withObject:sys->glView waitUntilDone:NO];
199     else if ([container isKindOfClass:[NSView class]]) {
200         NSView *parentView = container;
201         [parentView performSelectorOnMainThread:@selector(addSubview:) withObject:sys->glView waitUntilDone:NO];
202         [sys->glView performSelectorOnMainThread:@selector(setFrameToBoundsOfView:) withObject:[NSValue valueWithPointer:parentView] waitUntilDone:NO];
203     } else {
204         msg_Err(vd, "Invalid drawable-nsobject object. drawable-nsobject must either be an NSView or comply to the @protocol VLCOpenGLVideoViewEmbedding.");
205         goto error;
206     }
207
208
209     [nsPool release];
210     nsPool = nil;
211
212     /* Initialize common OpenGL video display */
213     sys->gl.lock = OpenglLock;
214     sys->gl.unlock = OpenglUnlock;
215     sys->gl.swap = OpenglSwap;
216     sys->gl.getProcAddress = OurGetProcAddress;
217     sys->gl.sys = sys;
218     const vlc_fourcc_t *subpicture_chromas;
219     video_format_t fmt = vd->fmt;
220
221     sys->vgl = vout_display_opengl_New (&vd->fmt, &subpicture_chromas, &sys->gl);
222     if (!sys->vgl) {
223         sys->gl.sys = NULL;
224         goto error;
225     }
226
227     /* */
228     vout_display_info_t info = vd->info;
229     info.has_pictures_invalid = false;
230     info.has_event_thread = true;
231     info.subpicture_chromas = subpicture_chromas;
232     info.has_hide_mouse = true;
233
234     /* Setup vout_display_t once everything is fine */
235     vd->info = info;
236
237     vd->pool = Pool;
238     vd->prepare = PictureRender;
239     vd->display = PictureDisplay;
240     vd->control = Control;
241
242     /* */
243     vout_display_SendEventDisplaySize (vd, vd->source.i_visible_width, vd->source.i_visible_height, false);
244
245     return VLC_SUCCESS;
246
247 error:
248     [nsPool release];
249     Close(this);
250     return VLC_EGENERIC;
251 }
252
253 void Close (vlc_object_t *this)
254 {
255     vout_display_t *vd = (vout_display_t *)this;
256     vout_display_sys_t *sys = vd->sys;
257
258     [sys->glView setVoutDisplay:nil];
259
260     var_Destroy (vd, "drawable-nsobject");
261     if ([(id)sys->container respondsToSelector:@selector(removeVoutSubview:)])
262         /* This will retain sys->glView */
263         [(id)sys->container performSelectorOnMainThread:@selector(removeVoutSubview:) withObject:sys->glView waitUntilDone:NO];
264
265     /* release on main thread as explained in Open() */
266     [(id)sys->container performSelectorOnMainThread:@selector(release) withObject:nil waitUntilDone:NO];
267     [sys->glView performSelectorOnMainThread:@selector(removeFromSuperview) withObject:nil waitUntilDone:NO];
268
269     if (sys->gl.sys != NULL)
270         vout_display_opengl_Delete (sys->vgl);
271
272     [sys->glView release];
273
274     if (sys->embed)
275         vout_display_DeleteWindow (vd, sys->embed);
276     free (sys);
277 }
278
279 /*****************************************************************************
280  * vout display callbacks
281  *****************************************************************************/
282
283 static picture_pool_t *Pool (vout_display_t *vd, unsigned requested_count)
284 {
285     vout_display_sys_t *sys = vd->sys;
286
287     if (!sys->pool)
288         sys->pool = vout_display_opengl_GetPool (sys->vgl, requested_count);
289     assert(sys->pool);
290     return sys->pool;
291 }
292
293 static void PictureRender (vout_display_t *vd, picture_t *pic, subpicture_t *subpicture)
294 {
295
296     vout_display_sys_t *sys = vd->sys;
297
298     vout_display_opengl_Prepare (sys->vgl, pic, subpicture);
299 }
300
301 static void PictureDisplay (vout_display_t *vd, picture_t *pic, subpicture_t *subpicture)
302 {
303     vout_display_sys_t *sys = vd->sys;
304     [sys->glView setVoutFlushing:YES];
305     vout_display_opengl_Display (sys->vgl, &vd->source);
306     [sys->glView setVoutFlushing:NO];
307     picture_Release (pic);
308     sys->has_first_frame = true;
309
310     if (subpicture)
311         subpicture_Delete(subpicture);
312 }
313
314 static int Control (vout_display_t *vd, int query, va_list ap)
315 {
316     vout_display_sys_t *sys = vd->sys;
317
318     switch (query)
319     {
320         case VOUT_DISPLAY_CHANGE_FULLSCREEN:
321         {
322             const vout_display_cfg_t *cfg = va_arg (ap, const vout_display_cfg_t *);
323             if (vout_window_SetFullScreen (sys->embed, cfg->is_fullscreen))
324                 return VLC_EGENERIC;
325
326             return VLC_SUCCESS;
327         }
328         case VOUT_DISPLAY_CHANGE_WINDOW_STATE:
329         {
330             unsigned state = va_arg (ap, unsigned);
331             return vout_window_SetState (sys->embed, state);            
332         }
333         case VOUT_DISPLAY_CHANGE_DISPLAY_FILLED:
334         case VOUT_DISPLAY_CHANGE_ZOOM:
335         case VOUT_DISPLAY_CHANGE_SOURCE_ASPECT:
336         case VOUT_DISPLAY_CHANGE_SOURCE_CROP:
337         case VOUT_DISPLAY_CHANGE_DISPLAY_SIZE:
338         {
339             if (!vd->sys)
340                 return VLC_EGENERIC;
341
342             NSAutoreleasePool * o_pool = [[NSAutoreleasePool alloc] init];
343
344             id o_window = [sys->glView window];
345             if (!o_window)
346                 return VLC_SUCCESS; // this is okay, since the event will occur again when we have a window
347
348             NSSize windowMinSize = [o_window minSize];
349
350             const vout_display_cfg_t *cfg;
351             const video_format_t *source;
352             bool is_forced = false;
353
354             if (query == VOUT_DISPLAY_CHANGE_SOURCE_ASPECT || query == VOUT_DISPLAY_CHANGE_SOURCE_CROP) {
355                 source = (const video_format_t *)va_arg (ap, const video_format_t *);
356                 cfg = vd->cfg;
357             } else {
358                 source = &vd->source;
359                 cfg = (const vout_display_cfg_t*)va_arg (ap, const vout_display_cfg_t *);
360                 if (query == VOUT_DISPLAY_CHANGE_DISPLAY_SIZE)
361                     is_forced = (bool)va_arg (ap, int);
362             }
363
364             if (query == VOUT_DISPLAY_CHANGE_DISPLAY_SIZE && is_forced
365                 && (cfg->display.width != vd->cfg->display.width
366                     || cfg->display.height != vd->cfg->display.height)
367                 && vout_window_SetSize (sys->embed, cfg->display.width, cfg->display.height))
368                 return VLC_EGENERIC;
369  
370             /* we always use our current frame here, because we have some size constraints 
371                in the ui vout provider */
372             vout_display_cfg_t cfg_tmp = *cfg;
373             NSRect bounds;
374             /* on HiDPI displays, the point bounds don't equal the actual pixel based bounds */
375             if (OSX_LION)
376                 bounds = [sys->glView convertRectToBacking:[sys->glView bounds]];
377             else
378                 bounds = [sys->glView bounds];
379             cfg_tmp.display.width = bounds.size.width;
380             cfg_tmp.display.height = bounds.size.height;
381
382             vout_display_place_t place;
383             vout_display_PlacePicture (&place, source, &cfg_tmp, false);
384             @synchronized (sys->glView) {
385                 sys->place = place;
386             }
387
388             /* For resize, we call glViewport in reshape and not here.
389                This has the positive side effect that we avoid erratic sizing as we animate every resize. */
390             if (query != VOUT_DISPLAY_CHANGE_DISPLAY_SIZE)
391                 // x / y are top left corner, but we need the lower left one
392                 glViewport (place.x, cfg_tmp.display.height - (place.y + place.height), place.width, place.height);
393
394
395             [o_pool release];
396             return VLC_SUCCESS;
397         }
398
399         case VOUT_DISPLAY_HIDE_MOUSE:
400         {
401             [NSCursor setHiddenUntilMouseMoves: YES];
402             return VLC_SUCCESS;
403         }
404
405         case VOUT_DISPLAY_GET_OPENGL:
406         {
407             vlc_gl_t **gl = va_arg (ap, vlc_gl_t **);
408             *gl = &sys->gl;
409             return VLC_SUCCESS;
410         }
411
412         case VOUT_DISPLAY_RESET_PICTURES:
413             assert (0);
414         default:
415             msg_Err (vd, "Unknown request in Mac OS X vout display");
416             return VLC_EGENERIC;
417     }
418 }
419
420 /*****************************************************************************
421  * vout opengl callbacks
422  *****************************************************************************/
423 static int OpenglLock (vlc_gl_t *gl)
424 {
425     vout_display_sys_t *sys = (vout_display_sys_t *)gl->sys;
426     if (!sys->glView || ![sys->glView respondsToSelector:@selector(openGLContext)])
427         return 1;
428
429     NSOpenGLContext *context = [sys->glView openGLContext];
430     CGLError err = CGLLockContext ([context CGLContextObj]);
431     if (kCGLNoError == err) {
432         [context makeCurrentContext];
433         return 0;
434     }
435     return 1;
436 }
437
438 static void OpenglUnlock (vlc_gl_t *gl)
439 {
440     vout_display_sys_t *sys = (vout_display_sys_t *)gl->sys;
441     CGLUnlockContext ([[sys->glView openGLContext] CGLContextObj]);
442 }
443
444 static void OpenglSwap (vlc_gl_t *gl)
445 {
446     vout_display_sys_t *sys = (vout_display_sys_t *)gl->sys;
447     [[sys->glView openGLContext] flushBuffer];
448 }
449
450 /*****************************************************************************
451  * Our NSView object
452  *****************************************************************************/
453 @implementation VLCOpenGLVideoView
454
455 #define VLCAssertMainThread() assert([[NSThread currentThread] isMainThread])
456
457
458 + (void)getNewView:(NSValue *)value
459 {
460     id *ret = [value pointerValue];
461     *ret = [[self alloc] init];
462 }
463
464 /**
465  * Gets called by the Open() method.
466  */
467 - (id)init
468 {
469     VLCAssertMainThread();
470
471     /* Warning - this may be called on non main thread */
472
473     NSOpenGLPixelFormatAttribute attribs[] =
474     {
475         NSOpenGLPFADoubleBuffer,
476         NSOpenGLPFAAccelerated,
477         NSOpenGLPFANoRecovery,
478         NSOpenGLPFAColorSize, 24,
479         NSOpenGLPFAAlphaSize, 8,
480         NSOpenGLPFADepthSize, 24,
481         NSOpenGLPFAWindow,
482         0
483     };
484
485     NSOpenGLPixelFormat *fmt = [[NSOpenGLPixelFormat alloc] initWithAttributes:attribs];
486
487     if (!fmt)
488         return nil;
489
490     self = [super initWithFrame:NSMakeRect(0,0,10,10) pixelFormat:fmt];
491     [fmt release];
492
493     if (!self)
494         return nil;
495
496     /* enable HiDPI support on OS X 10.7 and later */
497     if (OSX_LION)
498         [self setWantsBestResolutionOpenGLSurface:YES];
499
500     /* Swap buffers only during the vertical retrace of the monitor.
501      http://developer.apple.com/documentation/GraphicsImaging/
502      Conceptual/OpenGL/chap5/chapter_5_section_44.html */
503     GLint params[] = { 1 };
504     CGLSetParameter ([[self openGLContext] CGLContextObj], kCGLCPSwapInterval, params);
505
506     [self setAutoresizingMask:NSViewWidthSizable | NSViewHeightSizable];
507     return self;
508 }
509
510 /**
511  * Gets called by the Open() method.
512  */
513 - (void)setFrameToBoundsOfView:(NSValue *)value
514 {
515     NSView *parentView = [value pointerValue];
516     [self setFrame:[parentView bounds]];
517 }
518
519 /**
520  * Gets called by the Close and Open methods.
521  * (Non main thread).
522  */
523 - (void)setVoutDisplay:(vout_display_t *)aVd
524 {
525     @synchronized(self) {
526         vd = aVd;
527     }
528 }
529
530 /**
531  * Gets called when the vout will aquire the lock and flush.
532  * (Non main thread).
533  */
534 - (void)setVoutFlushing:(BOOL)flushing
535 {
536     if (!flushing)
537         return;
538     @synchronized(self) {
539         _hasPendingReshape = NO;
540     }
541 }
542
543 /**
544  * Can -drawRect skip rendering?.
545  */
546 - (BOOL)canSkipRendering
547 {
548     VLCAssertMainThread();
549
550     @synchronized(self) {
551         BOOL hasFirstFrame = vd && vd->sys->has_first_frame;
552         return !_hasPendingReshape && hasFirstFrame;
553     }
554 }
555
556
557 /**
558  * Local method that locks the gl context.
559  */
560 - (BOOL)lockgl
561 {
562     VLCAssertMainThread();
563     NSOpenGLContext *context = [self openGLContext];
564     CGLError err = CGLLockContext ([context CGLContextObj]);
565     if (err == kCGLNoError)
566         [context makeCurrentContext];
567     return err == kCGLNoError;
568 }
569
570 /**
571  * Local method that unlocks the gl context.
572  */
573 - (void)unlockgl
574 {
575     VLCAssertMainThread();
576     CGLUnlockContext ([[self openGLContext] CGLContextObj]);
577 }
578
579 /**
580  * Local method that force a rendering of a frame.
581  * This will get called if Cocoa forces us to redraw (via -drawRect).
582  */
583 - (void)render
584 {
585     VLCAssertMainThread();
586
587     // We may have taken some times to take the opengl Lock.
588     // Check here to see if we can just skip the frame as well.
589     if ([self canSkipRendering])
590         return;
591
592     BOOL hasFirstFrame;
593     @synchronized(self) { // vd can be accessed from multiple threads
594         hasFirstFrame = vd && vd->sys->has_first_frame;
595     }
596
597     if (hasFirstFrame)
598         // This will lock gl.
599         vout_display_opengl_Display (vd->sys->vgl, &vd->source);
600     else
601         glClear (GL_COLOR_BUFFER_BIT);
602 }
603
604 /**
605  * Method called by Cocoa when the view is resized.
606  */
607 - (void)reshape
608 {
609     VLCAssertMainThread();
610
611     NSRect bounds;
612     /* on HiDPI displays, the point bounds don't equal the actual pixel based bounds */
613     if (OSX_LION)
614         bounds = [self convertRectToBacking:[self bounds]];
615     else
616         bounds = [self bounds];
617     vout_display_place_t place;
618     
619     @synchronized(self) {
620         if (vd) {
621             vout_display_cfg_t cfg_tmp = *(vd->cfg);
622             cfg_tmp.display.width  = bounds.size.width;
623             cfg_tmp.display.height = bounds.size.height;
624
625             vout_display_PlacePicture (&place, &vd->source, &cfg_tmp, false);
626             vd->sys->place = place;
627             vout_display_SendEventDisplaySize (vd, bounds.size.width, bounds.size.height, vd->cfg->is_fullscreen);
628         }
629     }
630
631     if ([self lockgl]) {
632         // x / y are top left corner, but we need the lower left one
633         glViewport (place.x, bounds.size.height - (place.y + place.height), place.width, place.height);
634
635         @synchronized(self) {
636             // This may be cleared before -drawRect is being called,
637             // in this case we'll skip the rendering.
638             // This will save us for rendering two frames (or more) for nothing
639             // (one by the vout, one (or more) by drawRect)
640             _hasPendingReshape = YES;
641         }
642
643         [self unlockgl];
644
645         [super reshape];
646     }
647 }
648
649 /**
650  * Method called by Cocoa when the view is resized or the location has changed.
651  * We just need to make sure we are locking here.
652  */
653 - (void)update
654 {
655     VLCAssertMainThread();
656     BOOL success = [self lockgl];
657     if (!success)
658         return;
659
660     [super update];
661
662     [self unlockgl];
663 }
664
665 /**
666  * Method called by Cocoa to force redraw.
667  */
668 - (void)drawRect:(NSRect) rect
669 {
670     VLCAssertMainThread();
671
672     if ([self canSkipRendering])
673         return;
674
675     BOOL success = [self lockgl];
676     if (!success)
677         return;
678
679     [self render];
680
681     [self unlockgl];
682 }
683
684 - (void)renewGState
685 {
686     NSWindow *window = [self window];
687
688     // Remove flashes with splitter view.
689     if ([window respondsToSelector:@selector(disableScreenUpdatesUntilFlush)])
690         [window disableScreenUpdatesUntilFlush];
691
692     [super renewGState];
693 }
694
695 - (BOOL)isOpaque
696 {
697     return YES;
698 }
699
700 #pragma mark -
701 #pragma mark Mouse handling
702
703 - (void)mouseDown:(NSEvent *)o_event
704 {
705     @synchronized (self) {
706         if (vd) {
707             if ([o_event type] == NSLeftMouseDown && !([o_event modifierFlags] &  NSControlKeyMask)) {
708                 if ([o_event clickCount] <= 1)
709                     vout_display_SendEventMousePressed (vd, MOUSE_BUTTON_LEFT);
710             }
711         }
712     }
713
714     [super mouseDown:o_event];
715 }
716
717 - (void)otherMouseDown:(NSEvent *)o_event
718 {
719     @synchronized (self) {
720         if (vd)
721             vout_display_SendEventMousePressed (vd, MOUSE_BUTTON_CENTER);
722     }
723
724     [super otherMouseDown: o_event];
725 }
726
727 - (void)mouseUp:(NSEvent *)o_event
728 {
729     @synchronized (self) {
730         if (vd) {
731             if ([o_event type] == NSLeftMouseUp)
732                 vout_display_SendEventMouseReleased (vd, MOUSE_BUTTON_LEFT);
733         }
734     }
735
736     [super mouseUp: o_event];
737 }
738
739 - (void)otherMouseUp:(NSEvent *)o_event
740 {
741     @synchronized (self) {
742         if (vd)
743             vout_display_SendEventMouseReleased (vd, MOUSE_BUTTON_CENTER);
744     }
745
746     [super otherMouseUp: o_event];
747 }
748
749 - (void)mouseMoved:(NSEvent *)o_event
750 {
751     NSPoint ml;
752     NSRect s_rect;
753     BOOL b_inside;
754
755     /* on HiDPI displays, the point bounds don't equal the actual pixel based bounds */
756     if (OSX_LION)
757         s_rect = [self convertRectToBacking:[self bounds]];
758     else
759         s_rect = [self bounds];
760     ml = [self convertPoint: [o_event locationInWindow] fromView: nil];
761     b_inside = [self mouse: ml inRect: s_rect];
762     
763     if (b_inside) {
764         @synchronized (self) {
765             if (vd) {
766                 vout_display_place_t place = vd->sys->place;
767
768                 if (place.width > 0 && place.height > 0) {
769                     const int x = vd->source.i_x_offset +
770                     (int64_t)(ml.x - place.x) * vd->source.i_visible_width / place.width;
771                     const int y = vd->source.i_y_offset +
772                     (int64_t)((int)s_rect.size.height - (int)ml.y - place.y) * vd->source.i_visible_height / place.height;
773
774                     vout_display_SendEventMouseMoved (vd, x, y);
775                 }
776             }
777         }
778     }
779
780     [super mouseMoved: o_event];
781 }
782
783 - (void)mouseDragged:(NSEvent *)o_event
784 {
785     [self mouseMoved: o_event];
786     [super mouseDragged: o_event];
787 }
788
789 - (void)otherMouseDragged:(NSEvent *)o_event
790 {
791     [self mouseMoved: o_event];
792     [super otherMouseDragged: o_event];
793 }
794
795 - (void)rightMouseDragged:(NSEvent *)o_event
796 {
797     [self mouseMoved: o_event];
798     [super rightMouseDragged: o_event];
799 }
800
801 - (BOOL)acceptsFirstResponder
802 {
803     return YES;
804 }
805
806 - (BOOL)mouseDownCanMoveWindow
807 {
808     return YES;
809 }
810
811 @end