cocoa_common: make fullscreen menubar/dock hiding conditional
[mplayer.git] / libvo / cocoa_common.m
blobb8fcfa168a4dbadac6ed9107f936cc6c6dd80a8a
1 /*
2  * Cocoa OpenGL Backend
3  *
4  * This file is part of mplayer2.
5  *
6  * mplayer2 is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * mplayer2 is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License along
17  * with mplayer2.  If not, see <http://www.gnu.org/licenses/>.
18  */
20 #import <Cocoa/Cocoa.h>
21 #import <OpenGL/OpenGL.h>
22 #import <QuartzCore/QuartzCore.h>
23 #import <CoreServices/CoreServices.h> // for CGDisplayHideCursor
24 #include <dlfcn.h>
26 #include "cocoa_common.h"
28 #include "options.h"
29 #include "video_out.h"
30 #include "aspect.h"
32 #include "mp_fifo.h"
33 #include "talloc.h"
35 #include "input/input.h"
36 #include "input/keycodes.h"
37 #include "osx_common.h"
38 #include "mp_msg.h"
40 #define NSLeftAlternateKeyMask (0x000020 | NSAlternateKeyMask)
41 #define NSRightAlternateKeyMask (0x000040 | NSAlternateKeyMask)
43 @interface GLMPlayerWindow : NSWindow <NSWindowDelegate>
44 - (BOOL) canBecomeKeyWindow;
45 - (BOOL) canBecomeMainWindow;
46 - (void) fullscreen;
47 - (void) mouseEvent:(NSEvent *)theEvent;
48 - (void) mulSize:(float)multiplier;
49 - (void) setContentSize:(NSSize)newSize keepCentered:(BOOL)keepCentered;
50 @end
52 @interface GLMPlayerOpenGLView : NSView
53 @end
55 struct vo_cocoa_state {
56     NSAutoreleasePool *pool;
57     GLMPlayerWindow *window;
58     NSOpenGLContext *glContext;
59     NSOpenGLPixelFormat *pixelFormat;
61     NSSize current_video_size;
62     NSSize previous_video_size;
64     NSRect screen_frame;
65     NSScreen *screen_handle;
66     NSArray *screen_array;
68     NSInteger windowed_mask;
69     NSInteger fullscreen_mask;
71     NSRect windowed_frame;
73     NSString *window_title;
75     NSInteger windowed_window_level;
76     NSInteger fullscreen_window_level;
78     int last_screensaver_update;
80     int display_cursor;
81     int cursor_timer;
82     int cursor_autohide_delay;
84     bool did_resize;
85     bool out_fs_resize;
88 struct vo_cocoa_state *s;
90 struct vo *l_vo;
92 // local function definitions
93 struct vo_cocoa_state *vo_cocoa_init_state(void);
94 void vo_set_level(int ontop);
95 void update_screen_info(void);
96 void resize_window(struct vo *vo);
97 void vo_cocoa_display_cursor(int requested_state);
98 void create_menu(void);
100 struct vo_cocoa_state *vo_cocoa_init_state(void)
102     struct vo_cocoa_state *s = talloc_ptrtype(NULL, s);
103     *s = (struct vo_cocoa_state){
104         .did_resize = NO,
105         .current_video_size = {0,0},
106         .previous_video_size = {0,0},
107         .windowed_mask = NSTitledWindowMask|NSClosableWindowMask|NSMiniaturizableWindowMask|NSResizableWindowMask,
108         .fullscreen_mask = NSBorderlessWindowMask,
109         .fullscreen_window_level = NSNormalWindowLevel + 1,
110         .windowed_frame = {{0,0},{0,0}},
111         .out_fs_resize = NO,
112         .display_cursor = 1,
113     };
114     return s;
117 bool vo_cocoa_gui_running(void)
119     return !!s;
122 void *vo_cocoa_glgetaddr(const char *s)
124     void *ret = NULL;
125     void *handle = dlopen(
126         "/System/Library/Frameworks/OpenGL.framework/OpenGL",
127         RTLD_LAZY | RTLD_LOCAL);
128     if (!handle)
129         return NULL;
130     ret = dlsym(handle, s);
131     dlclose(handle);
132     return ret;
135 int vo_cocoa_init(struct vo *vo)
137     s = vo_cocoa_init_state();
138     s->pool = [[NSAutoreleasePool alloc] init];
139     s->cursor_autohide_delay = vo->opts->cursor_autohide_delay;
140     NSApplicationLoad();
141     NSApp = [NSApplication sharedApplication];
142     [NSApp setActivationPolicy: NSApplicationActivationPolicyRegular];
144     return 1;
147 void vo_cocoa_uninit(struct vo *vo)
149     CGDisplayShowCursor(kCGDirectMainDisplay);
150     [NSApp setPresentationOptions:NSApplicationPresentationDefault];
152     [s->window release];
153     s->window = nil;
154     [s->glContext release];
155     s->glContext = nil;
156     [s->pool release];
157     s->pool = nil;
159     talloc_free(s);
160     s = nil;
163 static int current_screen_has_dock_or_menubar(void)
165     NSRect f  = s->screen_frame;
166     NSRect vf = [s->screen_handle visibleFrame];
167     return f.size.height > vf.size.height || f.size.width > vf.size.width;
170 void update_screen_info(void)
172     s->screen_array = [NSScreen screens];
173     if (xinerama_screen >= (int)[s->screen_array count]) {
174         mp_msg(MSGT_VO, MSGL_INFO, "[cocoa] Device ID %d does not exist, falling back to main device\n", xinerama_screen);
175         xinerama_screen = -1;
176     }
178     if (xinerama_screen < 0) { // default behaviour
179         if (! (s->screen_handle = [s->window screen]) )
180             s->screen_handle = [s->screen_array objectAtIndex:0];
181     } else {
182         s->screen_handle = [s->screen_array objectAtIndex:(xinerama_screen)];
183     }
185     s->screen_frame = [s->screen_handle frame];
188 void vo_cocoa_update_xinerama_info(struct vo *vo)
190     update_screen_info();
191     aspect_save_screenres(vo, s->screen_frame.size.width, s->screen_frame.size.height);
194 int vo_cocoa_change_attributes(struct vo *vo)
196     return 0;
199 void resize_window(struct vo *vo)
201     vo->dwidth = [[s->window contentView] frame].size.width;
202     vo->dheight = [[s->window contentView] frame].size.height;
203     [s->glContext update];
206 void vo_set_level(int ontop)
208     if (ontop) {
209         s->windowed_window_level = NSNormalWindowLevel + 1;
210     } else {
211         s->windowed_window_level = NSNormalWindowLevel;
212     }
214     if (!vo_fs)
215         [s->window setLevel:s->windowed_window_level];
218 void vo_cocoa_ontop(struct vo *vo)
220     struct MPOpts *opts = vo->opts;
221     opts->vo_ontop = !opts->vo_ontop;
222     vo_set_level(opts->vo_ontop);
225 int vo_cocoa_create_window(struct vo *vo, uint32_t d_width,
226                            uint32_t d_height, uint32_t flags)
228     struct MPOpts *opts = vo->opts;
229     if (s->current_video_size.width > 0 || s->current_video_size.height > 0)
230         s->previous_video_size = s->current_video_size;
231     s->current_video_size = NSMakeSize(d_width, d_height);
233     if (!(s->window || s->glContext)) { // keep using the same window
234         s->window = [[GLMPlayerWindow alloc] initWithContentRect:NSMakeRect(0, 0, d_width, d_height)
235                                              styleMask:s->windowed_mask
236                                              backing:NSBackingStoreBuffered defer:NO];
238         GLMPlayerOpenGLView *glView = [[GLMPlayerOpenGLView alloc] initWithFrame:NSMakeRect(0, 0, 100, 100)];
240         NSOpenGLPixelFormatAttribute attrs[] = {
241             NSOpenGLPFADoubleBuffer, // double buffered
242             NSOpenGLPFADepthSize, (NSOpenGLPixelFormatAttribute)16, // 16 bit depth buffer
243             (NSOpenGLPixelFormatAttribute)0
244         };
246         s->pixelFormat = [[[NSOpenGLPixelFormat alloc] initWithAttributes:attrs] autorelease];
247         s->glContext = [[NSOpenGLContext alloc] initWithFormat:s->pixelFormat shareContext:nil];
249         create_menu();
251         [s->window setContentView:glView];
252         [glView release];
253         [s->window setAcceptsMouseMovedEvents:YES];
254         [s->glContext setView:glView];
255         [s->glContext makeCurrentContext];
257         [NSApp setDelegate:s->window];
258         [s->window setDelegate:s->window];
259         [s->window setContentSize:s->current_video_size];
260         [s->window setContentAspectRatio:s->current_video_size];
261         [s->window center];
263         if (flags & VOFLAG_HIDDEN) {
264             [s->window orderOut:nil];
265         } else {
266             [s->window makeKeyAndOrderFront:nil];
267             [NSApp activateIgnoringOtherApps:YES];
268         }
270         if (flags & VOFLAG_FULLSCREEN)
271             vo_cocoa_fullscreen(vo);
273         vo_set_level(opts->vo_ontop);
274     } else {
275         if (s->current_video_size.width  != s->previous_video_size.width ||
276             s->current_video_size.height != s->previous_video_size.height) {
277             if (vo_fs) {
278                 // we will resize as soon as we get out of fullscreen
279                 s->out_fs_resize = YES;
280             } else {
281                 // only if we are not in fullscreen and the video size did change
282                 // we actually resize the window and set a new aspect ratio
283                 [s->window setContentSize:s->current_video_size keepCentered:YES];
284                 [s->window setContentAspectRatio:s->current_video_size];
285             }
286         }
287     }
289     resize_window(vo);
291     if (s->window_title)
292         [s->window_title release];
294     s->window_title = [[NSString alloc] initWithUTF8String:vo_get_window_title(vo)];
295     [s->window setTitle: s->window_title];
297     return 0;
300 void vo_cocoa_swap_buffers()
302     [s->glContext flushBuffer];
305 void vo_cocoa_display_cursor(int requested_state)
307     if (requested_state) {
308         if (!vo_fs || s->cursor_autohide_delay > -2) {
309             s->display_cursor = requested_state;
310             CGDisplayShowCursor(kCGDirectMainDisplay);
311         }
312     } else {
313         if (s->cursor_autohide_delay != -1) {
314             s->display_cursor = requested_state;
315             CGDisplayHideCursor(kCGDirectMainDisplay);
316         }
317     }
320 int vo_cocoa_check_events(struct vo *vo)
322     NSEvent *event;
323     float curTime = TickCount()/60;
324     int msCurTime = (int) (curTime * 1000);
326     // automatically hide mouse cursor
327     if (vo_fs && s->display_cursor &&
328         (msCurTime - s->cursor_timer >= s->cursor_autohide_delay)) {
329         vo_cocoa_display_cursor(0);
330         s->cursor_timer = msCurTime;
331     }
333     //update activity every 30 seconds to prevent
334     //screensaver from starting up.
335     if ((int)curTime - s->last_screensaver_update >= 30 || s->last_screensaver_update == 0)
336     {
337         UpdateSystemActivity(UsrActivity);
338         s->last_screensaver_update = (int)curTime;
339     }
341     event = [NSApp nextEventMatchingMask:NSAnyEventMask untilDate:nil
342                    inMode:NSEventTrackingRunLoopMode dequeue:YES];
343     if (event == nil)
344         return 0;
345     l_vo = vo;
346     [NSApp sendEvent:event];
347     l_vo = nil;
349     if (s->did_resize) {
350         s->did_resize = NO;
351         resize_window(vo);
352         return VO_EVENT_RESIZE;
353     }
354     // Without SDL's bootstrap code (include SDL.h in mplayer.c),
355     // on Leopard, we have trouble to get the play window automatically focused
356     // when the app is actived. The Following code fix this problem.
357 #ifndef CONFIG_SDL
358     if ([event type] == NSAppKitDefined
359             && [event subtype] == NSApplicationActivatedEventType) {
360         [s->window makeMainWindow];
361         [s->window makeKeyAndOrderFront:nil];
362     }
363 #endif
364     return 0;
367 void vo_cocoa_fullscreen(struct vo *vo)
369     [s->window fullscreen];
370     resize_window(vo);
373 int vo_cocoa_swap_interval(int enabled)
375     [s->glContext setValues:&enabled forParameter:NSOpenGLCPSwapInterval];
376     return 0;
379 void *vo_cocoa_cgl_context(void)
381     return [s->glContext CGLContextObj];
384 void *vo_cocoa_cgl_pixel_format(void)
386     return [s->pixelFormat CGLPixelFormatObj];
389 void create_menu()
391     NSMenu *menu;
392     NSMenuItem *menuItem;
394     menu = [[NSMenu new] autorelease];
395     menuItem = [[NSMenuItem new] autorelease];
396     [menu addItem: menuItem];
397     [NSApp setMainMenu: menu];
399     menu = [[NSMenu alloc] initWithTitle:@"Movie"];
400     menuItem = [[NSMenuItem alloc] initWithTitle:@"Half Size" action:@selector(halfSize) keyEquivalent:@"0"]; [menu addItem:menuItem];
401     menuItem = [[NSMenuItem alloc] initWithTitle:@"Normal Size" action:@selector(normalSize) keyEquivalent:@"1"]; [menu addItem:menuItem];
402     menuItem = [[NSMenuItem alloc] initWithTitle:@"Double Size" action:@selector(doubleSize) keyEquivalent:@"2"]; [menu addItem:menuItem];
404     menuItem = [[NSMenuItem alloc] initWithTitle:@"Movie" action:nil keyEquivalent:@""];
405     [menuItem setSubmenu:menu];
406     [[NSApp mainMenu] addItem:menuItem];
408     [menu release];
409     [menuItem release];
412 @implementation GLMPlayerWindow
414 - (void) windowDidResize:(NSNotification *) notification
416     if (l_vo)
417         s->did_resize = YES;
420 - (void) fullscreen
422     if (!vo_fs) {
423         update_screen_info();
424         if (current_screen_has_dock_or_menubar())
425             [NSApp setPresentationOptions:NSApplicationPresentationHideDock|NSApplicationPresentationHideMenuBar];
426         s->windowed_frame = [self frame];
427         [self setHasShadow:NO];
428         [self setStyleMask:s->fullscreen_mask];
429         [self setFrame:s->screen_frame display:YES animate:NO];
430         [self setLevel:s->fullscreen_window_level];
431         vo_fs = VO_TRUE;
432         vo_cocoa_display_cursor(0);
433         [self setMovableByWindowBackground: NO];
434     } else {
435         [NSApp setPresentationOptions:NSApplicationPresentationDefault];
436         [self setHasShadow:YES];
437         [self setStyleMask:s->windowed_mask];
438         [self setTitle:s->window_title];
439         [self setFrame:s->windowed_frame display:YES animate:NO];
440         if (s->out_fs_resize) {
441             [self setContentSize:s->current_video_size keepCentered:YES];
442             s->out_fs_resize = NO;
443         }
444         [self setContentAspectRatio:s->current_video_size];
445         [self setLevel:s->windowed_window_level];
446         vo_fs = VO_FALSE;
447         vo_cocoa_display_cursor(1);
448         [self setMovableByWindowBackground: YES];
449     }
452 - (BOOL) canBecomeMainWindow { return YES; }
453 - (BOOL) canBecomeKeyWindow { return YES; }
454 - (BOOL) acceptsFirstResponder { return YES; }
455 - (BOOL) becomeFirstResponder { return YES; }
456 - (BOOL) resignFirstResponder { return YES; }
457 - (BOOL) windowShouldClose:(id)sender
459     mplayer_put_key(l_vo->key_fifo, KEY_CLOSE_WIN);
460     // We have to wait for MPlayer to handle this,
461     // otherwise we are in trouble if the
462     // KEY_CLOSE_WIN handler is disabled
463     return NO;
466 - (BOOL) isMovableByWindowBackground
468     // this is only valid as a starting value. it will be rewritten in the -fullscreen method.
469     return !vo_fs;
472 - (void) handleQuitEvent:(NSAppleEventDescriptor*)e withReplyEvent:(NSAppleEventDescriptor*)r
474     mplayer_put_key(l_vo->key_fifo, KEY_CLOSE_WIN);
477 - (void) keyDown:(NSEvent *)theEvent
479     unsigned char charcode;
480     if (([theEvent modifierFlags] & NSRightAlternateKeyMask) == NSRightAlternateKeyMask)
481         charcode = *[[theEvent characters] UTF8String];
482     else
483         charcode = [[theEvent charactersIgnoringModifiers] characterAtIndex:0];
485     int key = convert_key([theEvent keyCode], charcode);
487     if (key > -1) {
488         if ([theEvent modifierFlags] & NSShiftKeyMask)
489             key |= KEY_MODIFIER_SHIFT;
490         if ([theEvent modifierFlags] & NSControlKeyMask)
491             key |= KEY_MODIFIER_CTRL;
492         if (([theEvent modifierFlags] & NSLeftAlternateKeyMask) == NSLeftAlternateKeyMask)
493             key |= KEY_MODIFIER_ALT;
494         if ([theEvent modifierFlags] & NSCommandKeyMask)
495             key |= KEY_MODIFIER_META;
496         mplayer_put_key(l_vo->key_fifo, key);
497     }
500 - (void) mouseMoved: (NSEvent *) theEvent
502     if (vo_fs)
503         vo_cocoa_display_cursor(1);
506 - (void) mouseDragged:(NSEvent *)theEvent
508     [self mouseEvent: theEvent];
511 - (void) mouseDown:(NSEvent *)theEvent
513     [self mouseEvent: theEvent];
516 - (void) mouseUp:(NSEvent *)theEvent
518     [self mouseEvent: theEvent];
521 - (void) rightMouseDown:(NSEvent *)theEvent
523     [self mouseEvent: theEvent];
526 - (void) rightMouseUp:(NSEvent *)theEvent
528     [self mouseEvent: theEvent];
531 - (void) otherMouseDown:(NSEvent *)theEvent
533     [self mouseEvent: theEvent];
536 - (void) otherMouseUp:(NSEvent *)theEvent
538     [self mouseEvent: theEvent];
541 - (void) scrollWheel:(NSEvent *)theEvent
543     if ([theEvent deltaY] > 0)
544         mplayer_put_key(l_vo->key_fifo, MOUSE_BTN3);
545     else
546         mplayer_put_key(l_vo->key_fifo, MOUSE_BTN4);
549 - (void) mouseEvent:(NSEvent *)theEvent
551     if ([theEvent buttonNumber] >= 0 && [theEvent buttonNumber] <= 9) {
552         int buttonNumber = [theEvent buttonNumber];
553         // Fix to mplayer defined button order: left, middle, right
554         if (buttonNumber == 1)  buttonNumber = 2;
555         else if (buttonNumber == 2) buttonNumber = 1;
556         switch ([theEvent type]) {
557             case NSLeftMouseDown:
558             case NSRightMouseDown:
559             case NSOtherMouseDown:
560                 mplayer_put_key(l_vo->key_fifo, (MOUSE_BTN0 + buttonNumber) | MP_KEY_DOWN);
561                 // Looks like Cocoa doesn't create MouseUp events when we are
562                 // doing the second click in a double click. Put in the key_fifo
563                 // the key that would be put from the MouseUp handling code.
564                 if([theEvent clickCount] == 2)
565                    mplayer_put_key(l_vo->key_fifo, MOUSE_BTN0 + buttonNumber);
566                 break;
567             case NSLeftMouseUp:
568             case NSRightMouseUp:
569             case NSOtherMouseUp:
570                 mplayer_put_key(l_vo->key_fifo, MOUSE_BTN0 + buttonNumber);
571                 break;
572         }
573     }
576 - (void) applicationWillBecomeActive:(NSNotification *)aNotification
578     if (vo_fs) {
579         [s->window makeKeyAndOrderFront:s->window];
580         [s->window setLevel:s->fullscreen_window_level];
581         [NSApp setPresentationOptions:NSApplicationPresentationHideDock|
582                                       NSApplicationPresentationHideMenuBar];
583     }
586 - (void) applicationWillResignActive:(NSNotification *)aNotification
588     if (vo_fs) {
589         [NSApp setPresentationOptions:NSApplicationPresentationDefault];
590         [s->window setLevel:s->windowed_window_level];
591         [s->window orderBack:s->window];
592     }
595 - (void) applicationDidFinishLaunching:(NSNotification*)notification
597     // Install an event handler so the Quit menu entry works
598     // The proper way using NSApp setDelegate: and
599     // applicationShouldTerminate: does not work,
600     // probably NSApplication never installs its handler.
601     [[NSAppleEventManager sharedAppleEventManager]
602         setEventHandler:self
603         andSelector:@selector(handleQuitEvent:withReplyEvent:)
604         forEventClass:kCoreEventClass
605         andEventID:kAEQuitApplication];
608 - (void) normalSize
610     if (!vo_fs)
611       [self setContentSize:s->current_video_size keepCentered:YES];
614 - (void) halfSize { [self mulSize:0.5f];}
616 - (void) doubleSize { [self mulSize:2.0f];}
618 - (void) mulSize:(float)multiplier
620     if (!vo_fs) {
621         NSSize size = [[self contentView] frame].size;
622         size.width  = s->current_video_size.width  * (multiplier);
623         size.height = s->current_video_size.height * (multiplier);
624         [self setContentSize:size keepCentered:YES];
625     }
628 - (void) setContentSize:(NSSize)ns keepCentered:(BOOL)keepCentered
630     if (keepCentered) {
631         NSRect nf = [self frame];
632         NSRect vf = [[self screen] visibleFrame];
633         int title_height = nf.size.height - [[self contentView] bounds].size.height;
634         double ratio = (double)ns.width / (double)ns.height;
636         // clip the new size to the visibleFrame's size if needed
637         if (ns.width > vf.size.width || ns.height + title_height > vf.size.height) {
638             ns = vf.size;
639             ns.height -= title_height; // make space for the title bar
641             if (ns.width > ns.height) {
642                 ns.height = ((double)ns.width * 1/ratio + 0.5);
643             } else {
644                 ns.width = ((double)ns.height * ratio + 0.5);
645             }
646         }
648         int dw = nf.size.width - ns.width;
649         int dh = nf.size.height - ns.height - title_height;
651         nf.origin.x += dw / 2;
652         nf.origin.y += dh / 2;
654         [self setFrame: NSMakeRect(nf.origin.x, nf.origin.y, ns.width, ns.height + title_height) display:YES animate:NO];
655     } else {
656         [self setContentSize:ns];
657     }
659 @end
661 @implementation GLMPlayerOpenGLView
662 - (void) drawRect: (NSRect)rect
664     [[NSColor clearColor] set];
665     NSRectFill([self bounds]);
667 @end