]> git.sesse.net Git - vlc/blob - modules/gui/macosx/vout.m
* also forward the mouse events to super if no vout is present
[vlc] / modules / gui / macosx / vout.m
1 /*****************************************************************************
2  * vout.m: MacOS X video output module
3  *****************************************************************************
4  * Copyright (C) 2001-2006 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Colin Delacroix <colin@zoy.org>
8  *          Florian G. Pflug <fgp@phlo.org>
9  *          Jon Lech Johansen <jon-vl@nanocrew.net>
10  *          Derk-Jan Hartman <hartman at videolan dot org>
11  *          Eric Petit <titer@m0k.org>
12  *          Benjamin Pracht <bigben at videolan dot org>
13  *          Felix K\9fhne <fkuehne at videolan dot org>
14  *
15  * This program is free software; you can redistribute it and/or modify
16  * it under the terms of the GNU General Public License as published by
17  * the Free Software Foundation; either version 2 of the License, or
18  * (at your option) any later version.
19  *
20  * This program is distributed in the hope that it will be useful,
21  * but WITHOUT ANY WARRANTY; without even the implied warranty of
22  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23  * GNU General Public License for more details.
24  *
25  * You should have received a copy of the GNU General Public License
26  * along with this program; if not, write to the Free Software
27  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
28  *****************************************************************************/
29
30 /*****************************************************************************
31  * Preamble
32  *****************************************************************************/
33 #include <errno.h>                                                 /* ENOMEM */
34 #include <stdlib.h>                                                /* free() */
35 #include <string.h>                                            /* strerror() */
36
37 /* BeginFullScreen, EndFullScreen */
38 #include <QuickTime/QuickTime.h>
39
40 #include <vlc_keys.h>
41
42 #include "intf.h"
43 #include "vout.h"
44
45 /*****************************************************************************
46  * DeviceCallback: Callback triggered when the video-device variable is changed
47  *****************************************************************************/
48 int DeviceCallback( vlc_object_t *p_this, const char *psz_variable,
49                      vlc_value_t old_val, vlc_value_t new_val, void *param )
50 {
51     vlc_value_t val;
52     vout_thread_t *p_vout = (vout_thread_t *)p_this;
53
54     msg_Dbg( p_vout, "set %d", new_val.i_int );
55     var_Create( p_vout->p_vlc, "video-device", VLC_VAR_INTEGER );
56     var_Set( p_vout->p_vlc, "video-device", new_val );
57
58     val.b_bool = VLC_TRUE;
59     var_Set( p_vout, "intf-change", val );
60     return VLC_SUCCESS;
61 }
62
63
64 /*****************************************************************************
65  * VLCEmbeddedList implementation
66  *****************************************************************************/
67 @implementation VLCEmbeddedList
68
69 - (id)init
70 {
71     [super init];
72     o_embedded_array = [NSMutableArray array];
73     return self;
74 }
75
76 - (id)getEmbeddedVout
77 {
78     unsigned int i;
79
80     for( i = 0; i < [o_embedded_array count]; i++ )
81     {
82         id o_vout_view = [o_embedded_array objectAtIndex: i];
83         if( ![o_vout_view isUsed] )
84         {
85             [o_vout_view setUsed: YES];
86             return o_vout_view;
87         }
88     }
89     return nil;
90 }
91
92 - (void)releaseEmbeddedVout: (id)o_vout_view
93 {
94     if( [o_embedded_array containsObject: o_vout_view] )
95     {
96         [o_vout_view setUsed: NO];
97     }
98     else
99     {
100         msg_Warn( VLCIntf, "cannot find Video Output");
101     }
102 }
103
104 - (void)addEmbeddedVout: (id)o_vout_view
105 {
106     if( ![o_embedded_array containsObject: o_vout_view] )
107     {
108         [o_embedded_array addObject: o_vout_view];
109     }
110 }
111
112 - (BOOL)windowContainsEmbedded: (id)o_window
113 {
114 /*    if( ![[o_window className] isEqualToString: @"VLCWindow"] )
115     {
116         NSLog( @"We were not given a VLCWindow" );
117     }*/
118     return ([self getViewForWindow: o_window] == nil ? NO : YES );
119 }
120
121 - (id)getViewForWindow: (id)o_window
122 {
123     id o_enumerator = [o_embedded_array objectEnumerator];
124     id o_current_embedded;
125
126     while( (o_current_embedded = [o_enumerator nextObject]) )
127     {
128         if( [o_current_embedded getWindow] == o_window )
129         {
130             return o_current_embedded;
131         }
132     }
133     return nil;
134 }
135
136 @end
137
138 /*****************************************************************************
139  * VLCVoutView implementation
140  *****************************************************************************/
141 @implementation VLCVoutView
142
143 - (id)initWithFrame:(NSRect)frameRect
144 {
145     [super initWithFrame: frameRect];
146     p_vout = NULL;
147     o_view = nil;
148     s_frame = &frameRect;
149
150     p_real_vout = NULL;
151     o_window = nil;
152     return self;
153 }
154
155 - (BOOL)setVout: (vout_thread_t *) vout subView: (NSView *) view
156                      frame: (NSRect *) frame
157 {
158     int i_device;
159     NSAutoreleasePool *o_pool = [[NSAutoreleasePool alloc] init];
160     NSArray *o_screens = [NSScreen screens];
161
162     p_vout  = vout;
163     o_view  = view;
164     s_frame = frame;
165
166     if( [o_screens count] <= 0 )
167     {
168         msg_Err( p_vout, "no OSX screens available" );
169         return NO;
170     }
171
172     p_real_vout = [VLCVoutView getRealVout: p_vout];
173
174     /* Get the pref value when this is the first time, otherwise retrieve the device from the top level video-device var */
175     if( var_Type( p_real_vout->p_vlc, "video-device" ) == 0 )
176     {
177         i_device = var_GetInteger( p_vout, "macosx-vdev" );
178     }
179     else
180     {
181         i_device = var_GetInteger( p_real_vout->p_vlc, "video-device" );
182     }
183
184     /* Setup the menuitem for the multiple displays. */
185     if( var_Type( p_real_vout, "video-device" ) == 0 )
186     {
187         int i = 1;
188         vlc_value_t val2, text;
189         NSScreen * o_screen;
190
191         var_Create( p_real_vout, "video-device", VLC_VAR_INTEGER |
192                                             VLC_VAR_HASCHOICE );
193         text.psz_string = _("Video Device");
194         var_Change( p_real_vout, "video-device", VLC_VAR_SETTEXT, &text, NULL );
195
196         NSEnumerator * o_enumerator = [o_screens objectEnumerator];
197
198         val2.i_int = 0;
199         text.psz_string = _("Default");
200         var_Change( p_real_vout, "video-device",
201                         VLC_VAR_ADDCHOICE, &val2, &text );
202         var_Set( p_real_vout, "video-device", val2 );
203
204         while( (o_screen = [o_enumerator nextObject]) != NULL )
205         {
206             char psz_temp[255];
207             NSRect s_rect = [o_screen frame];
208
209             snprintf( psz_temp, sizeof(psz_temp)/sizeof(psz_temp[0])-1,
210                       "%s %d (%dx%d)", _("Screen"), i,
211                       (int)s_rect.size.width, (int)s_rect.size.height );
212
213             text.psz_string = psz_temp;
214             val2.i_int = i;
215             var_Change( p_real_vout, "video-device",
216                         VLC_VAR_ADDCHOICE, &val2, &text );
217             if( i == i_device )
218             {
219                 var_Set( p_real_vout, "video-device", val2 );
220             }
221             i++;
222         }
223
224         var_AddCallback( p_real_vout, "video-device", DeviceCallback,
225                          NULL );
226
227         val2.b_bool = VLC_TRUE;
228         var_Set( p_real_vout, "intf-change", val2 );
229     }
230
231     /* Add the view. It's automatically resized to fit the window */
232     [self addSubview: o_view];
233     [self setAutoresizesSubviews: YES];
234     [o_pool release];
235
236     return YES;
237 }
238
239 - (void)resizeSubviewsWithOldSize:(NSSize)oldBoundsSize
240 {
241     [super resizeSubviewsWithOldSize: oldBoundsSize];
242     [o_view setFrameSize: [self frame].size];
243 }
244
245 - (void)closeVout
246 {
247     [o_view removeFromSuperview];
248     o_view = nil;
249     p_vout = NULL;
250     s_frame = nil;
251     o_window = nil;
252     p_real_vout = NULL;
253 }
254
255 - (void)updateTitle
256 {
257     NSMutableString * o_title = nil, * o_mrl = nil;
258     input_thread_t * p_input;
259
260     if( p_vout == NULL )
261     {
262         return;
263     }
264
265     p_input = vlc_object_find( p_vout, VLC_OBJECT_INPUT, FIND_PARENT );
266
267     if( p_input == NULL )
268     {
269         return;
270     }
271
272     if( p_input->input.p_item->psz_name != NULL )
273         o_title = [NSMutableString stringWithUTF8String:
274             p_input->input.p_item->psz_name];
275     if( p_input->input.p_item->psz_uri != NULL )
276         o_mrl = [NSMutableString stringWithUTF8String:
277             p_input->input.p_item->psz_uri];
278     if( o_title == nil )
279         o_title = o_mrl;
280
281     if( o_mrl != nil )
282     {
283         if( p_input->input.p_access && !strcmp( p_input->input.p_access->p_module->psz_shortname, "File" ) )
284         {
285             NSRange prefix_range = [o_mrl rangeOfString: @"file:"];
286             if( prefix_range.location != NSNotFound )
287                 [o_mrl deleteCharactersInRange: prefix_range];
288             [o_window setRepresentedFilename: o_mrl];
289         }
290         [o_window setTitle: o_title];
291     }
292     else
293     {
294         [o_window setTitle: [NSString stringWithCString: VOUT_TITLE]];
295     }
296     vlc_object_release( p_input );
297 }
298
299
300 - (void)setOnTop:(BOOL)b_on_top
301 {
302     if( b_on_top )
303     {
304         [o_window setLevel: NSStatusWindowLevel];
305     }
306     else
307     {
308         [o_window setLevel: NSNormalWindowLevel];
309     }
310 }
311
312 - (void)scaleWindowWithFactor: (float)factor
313 {
314     NSSize newsize;
315     int i_corrected_height, i_corrected_width;
316     NSPoint topleftbase;
317     NSPoint topleftscreen;
318
319     if ( !p_vout->b_fullscreen )
320     {
321         NSRect new_frame;
322         topleftbase.x = 0;
323         topleftbase.y = [o_window frame].size.height;
324         topleftscreen = [o_window convertBaseToScreen: topleftbase];
325
326         if( p_vout->render.i_height * p_vout->render.i_aspect >
327                         p_vout->render.i_width * VOUT_ASPECT_FACTOR )
328         {
329             i_corrected_width = p_vout->render.i_height * p_vout->render.i_aspect /
330                                             VOUT_ASPECT_FACTOR;
331             newsize.width = (int) ( i_corrected_width * factor );
332             newsize.height = (int) ( p_vout->render.i_height * factor );
333         }
334         else
335         {
336             i_corrected_height = p_vout->render.i_width * VOUT_ASPECT_FACTOR /
337                                             p_vout->render.i_aspect;
338             newsize.width = (int) ( p_vout->render.i_width * factor );
339             newsize.height = (int) ( i_corrected_height * factor );
340         }
341
342         /* Calculate the window's new size */
343         new_frame.size.width = [o_window frame].size.width -
344                                     [self frame].size.width + newsize.width;
345         new_frame.size.height = [o_window frame].size.height -
346                                     [self frame].size.height + newsize.height;
347
348         new_frame.origin.x = topleftscreen.x;
349         new_frame.origin.y = topleftscreen.y - new_frame.size.height;
350
351         [o_window setFrame: new_frame display: YES];
352
353         p_vout->i_changes |= VOUT_SIZE_CHANGE;
354     }
355 }
356
357 - (void)toggleFloatOnTop
358 {
359     vlc_value_t val;
360
361     if( !p_real_vout ) return;
362     if( var_Get( p_real_vout, "video-on-top", &val )>=0 && val.b_bool)
363     {
364         val.b_bool = VLC_FALSE;
365     }
366     else
367     {
368         val.b_bool = VLC_TRUE;
369     }
370     var_Set( p_real_vout, "video-on-top", val );
371 }
372
373 - (void)toggleFullscreen
374 {
375     vlc_value_t val;
376     if( !p_real_vout ) return;
377     var_Get( p_real_vout, "fullscreen", &val );
378     val.b_bool = !val.b_bool;
379     var_Set( p_real_vout, "fullscreen", val );
380 }
381
382 - (BOOL)isFullscreen
383 {
384     vlc_value_t val;
385     var_Get( p_real_vout, "fullscreen", &val );
386     return( val.b_bool );
387 }
388
389 - (void)snapshot
390 {
391     vout_Control( p_real_vout, VOUT_SNAPSHOT );
392 }
393
394 - (void)manage
395 {
396     /* Disable Screensaver */
397     UpdateSystemActivity( UsrActivity );
398 }
399
400 - (id)getWindow
401 {
402     return o_window;
403 }
404
405 - (void)keyDown:(NSEvent *)o_event
406 {
407     unichar key = 0;
408     vlc_value_t val;
409     unsigned int i_pressed_modifiers = 0;
410     val.i_int = 0;
411
412     i_pressed_modifiers = [o_event modifierFlags];
413
414     if( i_pressed_modifiers & NSShiftKeyMask )
415         val.i_int |= KEY_MODIFIER_SHIFT;
416     if( i_pressed_modifiers & NSControlKeyMask )
417         val.i_int |= KEY_MODIFIER_CTRL;
418     if( i_pressed_modifiers & NSAlternateKeyMask )
419         val.i_int |= KEY_MODIFIER_ALT;
420     if( i_pressed_modifiers & NSCommandKeyMask )
421         val.i_int |= KEY_MODIFIER_COMMAND;
422
423     key = [[o_event charactersIgnoringModifiers] characterAtIndex: 0];
424
425     if( key )
426     {
427         /* Escape should always get you out of fullscreen */
428         if( key == (unichar) 0x1b )
429         {
430              if( p_real_vout && [self isFullscreen] )
431              {
432                  [self toggleFullscreen];
433              }
434         }
435         else if ( key == ' ' )
436         {
437             vlc_value_t val;
438             val.i_int = config_GetInt( p_vout, "key-play-pause" );
439             var_Set( p_vout->p_vlc, "key-pressed", val );
440         }
441         else
442         {
443             val.i_int |= CocoaKeyToVLC( key );
444             var_Set( p_vout->p_vlc, "key-pressed", val );
445         }
446     }
447     else
448     {
449         [super keyDown: o_event];
450     }
451 }
452
453 - (void)mouseDown:(NSEvent *)o_event
454 {
455     vlc_value_t val;
456
457     if( p_vout )
458     {
459         if( ( [o_event type] == NSLeftMouseDown ) &&
460           ( ! ( [o_event modifierFlags] &  NSControlKeyMask ) ) )
461         {
462             if( [o_event clickCount] <= 1 )
463             {
464                 /* single clicking */
465                 var_Get( p_vout, "mouse-button-down", &val );
466                 val.i_int |= 1;
467                 var_Set( p_vout, "mouse-button-down", val );
468             }
469             else
470             {
471                 /* multiple clicking */
472                 [self toggleFullscreen];
473             }
474         }
475         else if( ( [o_event type] == NSRightMouseDown ) ||
476                ( ( [o_event type] == NSLeftMouseDown ) &&
477                  ( [o_event modifierFlags] &  NSControlKeyMask ) ) )
478         {
479             msg_Dbg( p_vout, "received NSRightMouseDown (generic method) or Ctrl clic" );
480             [NSMenu popUpContextMenu: [[VLCMain sharedInstance] getVoutMenu] withEvent: o_event forView: [[[VLCMain sharedInstance] getControls] getVoutView]];
481         }
482     }
483
484     [super mouseDown: o_event];
485 }
486
487 - (void)otherMouseDown:(NSEvent *)o_event
488 {
489     vlc_value_t val;
490
491     if( p_vout && [o_event type] == NSOtherMouseDown )
492     {
493         var_Get( p_vout, "mouse-button-down", &val );
494         val.i_int |= 2;
495         var_Set( p_vout, "mouse-button-down", val );
496     }
497
498     [super mouseDown: o_event];
499 }
500
501 - (void)rightMouseDown:(NSEvent *)o_event
502 {
503     if( p_vout && [o_event type] == NSRightMouseDown )
504     {
505         msg_Dbg( p_vout, "received NSRightMouseDown (specific method)" );
506         [NSMenu popUpContextMenu: [[VLCMain sharedInstance] getVoutMenu] withEvent: o_event forView: [[[VLCMain sharedInstance] getControls] getVoutView]];
507     }
508
509     [super mouseDown: o_event];
510 }
511
512 - (void)mouseUp:(NSEvent *)o_event
513 {
514     vlc_value_t val;
515
516     if( p_vout && [o_event type] == NSLeftMouseUp )
517     {
518         vlc_value_t b_val;
519         b_val.b_bool = VLC_TRUE;
520         var_Set( p_vout, "mouse-clicked", b_val );
521
522         var_Get( p_vout, "mouse-button-down", &val );
523         val.i_int &= ~1;
524         var_Set( p_vout, "mouse-button-down", val );
525     }
526
527     [super mouseUp: o_event];
528 }
529
530 - (void)otherMouseUp:(NSEvent *)o_event
531 {
532     vlc_value_t val;
533
534     if( p_vout && [o_event type] == NSOtherMouseUp )
535     {
536         var_Get( p_vout, "mouse-button-down", &val );
537         val.i_int &= ~2;
538         var_Set( p_vout, "mouse-button-down", val );
539     }
540
541     [super mouseUp: o_event];
542 }
543
544 - (void)rightMouseUp:(NSEvent *)o_event
545 {
546     if( p_vout && [o_event type] == NSRightMouseUp )
547     {
548         /* FIXME: this isn't the appropriate place, but we can't receive
549          * NSRightMouseDown some how */
550         msg_Dbg( p_vout, "received NSRightMouseUp" ); 
551         [NSMenu popUpContextMenu: [[VLCMain sharedInstance] getVoutMenu] withEvent: o_event forView: [[[VLCMain sharedInstance] getControls] getVoutView]];
552     }
553
554     [super mouseUp: o_event];
555 }
556
557 - (void)mouseDragged:(NSEvent *)o_event
558 {
559     [self mouseMoved: o_event];
560 }
561
562 - (void)otherMouseDragged:(NSEvent *)o_event
563 {
564     [self mouseMoved: o_event];
565 }
566
567 - (void)rightMouseDragged:(NSEvent *)o_event
568 {
569     [self mouseMoved: o_event];
570 }
571
572 - (void)mouseMoved:(NSEvent *)o_event
573 {
574     NSPoint ml;
575     NSRect s_rect;
576     BOOL b_inside;
577
578     if( p_vout )
579     {
580         s_rect = [o_view bounds];
581         ml = [o_view convertPoint: [o_event locationInWindow] fromView: nil];
582         b_inside = [o_view mouse: ml inRect: s_rect];
583
584         if( b_inside )
585         {
586             vlc_value_t val;
587             unsigned int i_width, i_height, i_x, i_y;
588
589             vout_PlacePicture( p_vout, (unsigned int)s_rect.size.width,
590                                        (unsigned int)s_rect.size.height,
591                                        &i_x, &i_y, &i_width, &i_height );
592
593             val.i_int = ( ((int)ml.x) - i_x ) *
594                         p_vout->render.i_width / i_width;
595             var_Set( p_vout, "mouse-x", val );
596
597             if( [[o_view className] isEqualToString: @"VLCGLView"] )
598             {
599                 val.i_int = ( ((int)(s_rect.size.height - ml.y)) - i_y ) *
600                             p_vout->render.i_height / i_height;
601             }
602             else
603             {
604                 val.i_int = ( ((int)ml.y) - i_y ) *
605                             p_vout->render.i_height / i_height;
606             }
607             var_Set( p_vout, "mouse-y", val );
608
609             val.b_bool = VLC_TRUE;
610             var_Set( p_vout, "mouse-moved", val );
611         }
612     }
613
614     [super mouseMoved: o_event];
615 }
616
617 - (BOOL)acceptsFirstResponder
618 {
619     return YES;
620 }
621
622 - (BOOL)becomeFirstResponder
623 {
624     return YES;
625 }
626
627 - (BOOL)resignFirstResponder
628 {
629     /* We need to stay the first responder or we'll miss some
630        events */
631     return NO;
632 }
633
634 /* Class methods used by the different vout modules */
635
636 + (vout_thread_t *)getRealVout: (vout_thread_t *)p_vout
637 {
638     /* p_real_vout: the vout we have to use to check for video-on-top
639        and a few other things. If we are the QuickTime output, it's us.
640        It we are the OpenGL provider, it is our parent. */
641     if( p_vout->i_object_type == VLC_OBJECT_OPENGL )
642     {
643         return (vout_thread_t *) p_vout->p_parent;
644     }
645     else
646     {
647         return p_vout;
648     }
649
650 }
651
652 + (id)getVoutView: (vout_thread_t *)p_vout subView: (NSView *)view
653                                     frame: (NSRect *)s_frame
654 {
655     vlc_value_t value_drawable;
656     int i_timeout;
657     id o_return = nil;
658     vout_thread_t * p_real_vout = [VLCVoutView getRealVout: p_vout];
659
660     var_Get( p_vout->p_vlc, "drawable", &value_drawable );
661
662     var_Create( p_vout, "macosx-vdev", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
663     var_Create( p_vout, "macosx-fill", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
664     var_Create( p_vout, "macosx-stretch", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
665     var_Create( p_vout, "macosx-opaqueness", VLC_VAR_FLOAT | VLC_VAR_DOINHERIT );
666     var_Create( p_vout, "macosx-background", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
667     var_Create( p_vout, "macosx-black", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
668     var_Create( p_vout, "macosx-embedded", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
669
670
671     /* We only wait for NSApp to initialise if we're not embedded (as in the
672      * case of the Mozilla plugin).  We can tell whether we're embedded or not
673      * by examining the "drawable" value: if it's zero, we're running in the
674      * main Mac intf; if it's non-zero, we're embedded. */
675     if( value_drawable.i_int == 0 )
676     {
677         /* Wait for a MacOS X interface to appear. Timeout is 2 seconds. */
678         for( i_timeout = 20 ; i_timeout-- ; )
679         {
680             if( NSApp == NULL )
681             {
682                 msleep( INTF_IDLE_SLEEP );
683             }
684         }
685
686         if( NSApp == NULL )
687         {
688             /* No MacOS X intf, unable to communicate with MT */
689             msg_Err( p_vout, "no MacOS X interface present" );
690             return nil;
691         }
692         else
693         {
694             if ( VLCIntf && !(p_vout->b_fullscreen) &&
695                         !(var_GetBool( p_real_vout, "macosx-background" )) &&
696                         var_GetBool( p_vout, "macosx-embedded") )
697             {
698                 o_return = [[[VLCMain sharedInstance] getEmbeddedList]
699                                                             getEmbeddedVout];
700             }
701         }
702     }
703
704     /* No embedded vout is available */
705     if( o_return == nil )
706     {
707         NSRect null_rect;
708         bzero( &null_rect, sizeof( NSRect ) );
709         o_return = [[VLCDetachedVoutView alloc] initWithFrame: null_rect ];
710     }
711     [o_return setVout: p_vout subView: view frame: s_frame];
712     return o_return;
713 }
714
715 @end
716
717 /*****************************************************************************
718  * VLCDetachedVoutView implementation
719  *****************************************************************************/
720 @implementation VLCDetachedVoutView
721
722 - (id)initWithFrame: (NSRect)frameRect
723 {
724     [super initWithFrame: frameRect];
725     i_time_mouse_last_moved = 0;
726     return self;
727 }
728
729 - (bool)setVout: (vout_thread_t *) p_arg_vout subView: (NSView *) view
730                      frame: (NSRect *) s_arg_frame
731 {
732     BOOL b_return = [super setVout: p_arg_vout subView: view frame:s_arg_frame];
733     i_time_mouse_last_moved = mdate();
734     o_window = [[VLCWindow alloc] initWithVout: p_arg_vout view: self
735                                                     frame: s_arg_frame];
736     [self updateTitle];
737     [view setFrame: [self frame]];
738
739     if( var_GetBool( p_real_vout, "video-on-top" ) )
740     {
741         [o_window setLevel: NSStatusWindowLevel];
742     }
743
744
745     [o_window setAcceptsMouseMovedEvents: TRUE];
746     return b_return;
747 }
748
749 - (void)closeVout
750 {
751     [o_window closeWindow];
752     [o_window setAcceptsMouseMovedEvents: NO];
753     i_time_mouse_last_moved = 0;
754     [super closeVout];
755 }
756
757 - (void)mouseMoved:(NSEvent *)o_event
758 {
759     i_time_mouse_last_moved = mdate();
760     [super mouseMoved: o_event];
761 }
762
763 - (void)hideMouse:(BOOL)b_hide
764 {
765     BOOL b_inside;
766     NSPoint ml;
767     NSView *o_contents = [o_window contentView];
768
769     ml = [o_window convertScreenToBase:[NSEvent mouseLocation]];
770     ml = [o_contents convertPoint:ml fromView:nil];
771     b_inside = [o_contents mouse: ml inRect: [o_contents bounds]];
772
773     if( b_hide && b_inside )
774     {
775         [NSCursor setHiddenUntilMouseMoves: YES];
776     }
777     else if( !b_hide )
778     {
779         [NSCursor setHiddenUntilMouseMoves: NO];
780     }
781 }
782
783 - (void)manage
784 {
785     [super manage];
786     if( p_vout->b_fullscreen )
787     {
788         if( mdate() - i_time_mouse_last_moved > 3000000 )
789         {
790             [self hideMouse: YES];
791         }
792     }
793     else
794     {
795         [self hideMouse: NO];
796     }
797 }
798
799 @end
800
801 /*****************************************************************************
802  * VLCEmbeddedVoutView implementation
803  *****************************************************************************/
804
805 @implementation VLCEmbeddedVoutView
806
807 - (id)initWithFrame: (NSRect)frameRect
808 {
809     [super initWithFrame: frameRect];
810     b_used = NO;
811     [[[VLCMain sharedInstance] getEmbeddedList] addEmbeddedVout: self];
812     return self;
813 }
814
815 - (BOOL)setVout: (vout_thread_t *) p_arg_vout subView: (NSView *) view
816                      frame: (NSRect *) s_arg_frame
817
818 {
819     BOOL b_return;
820     b_return = [super setVout: p_arg_vout subView: view frame: s_arg_frame];
821     if( b_return )
822     {
823         o_window = [self window];
824         [o_window makeKeyAndOrderFront: self];
825         [o_window setAcceptsMouseMovedEvents: TRUE];
826
827         if( var_GetBool( p_real_vout, "video-on-top" ) )
828         {
829             [o_window setLevel: NSStatusWindowLevel];
830         }
831
832         [view setFrameSize: [self frame].size];
833     }
834     return b_return;
835 }
836
837 - (void)setUsed: (BOOL)b_new_used
838 {
839     b_used = b_new_used;
840 }
841
842 - (BOOL)isUsed
843 {
844     return b_used;
845 }
846
847 - (void)closeVout
848 {
849     [super closeVout];
850     [o_window setAcceptsMouseMovedEvents: NO];
851     [[[VLCMain sharedInstance] getEmbeddedList] releaseEmbeddedVout: self];
852 }
853
854
855 @end
856
857 @implementation VLCDetachedEmbeddedVoutView
858
859 - (BOOL)setVout: (vout_thread_t *) p_arg_vout subView: (NSView *) view
860                      frame: (NSRect *) s_arg_frame
861 {
862     BOOL b_return = [super setVout: p_arg_vout subView: view frame: s_arg_frame];
863
864     if( b_return )
865     {
866         [o_window setAlphaValue: var_GetFloat( p_vout, "macosx-opaqueness" )];
867         [self updateTitle];
868         [self scaleWindowWithFactor: 1.0];
869         [o_window makeKeyAndOrderFront: self];
870     }
871     return b_return;
872 }
873
874 - (void)closeVout
875 {
876     [o_window orderOut: self];
877     [super closeVout];
878 }
879
880 @end
881
882 /*****************************************************************************
883  * VLCWindow implementation
884  *****************************************************************************/
885 @implementation VLCWindow
886
887 - (id) initWithVout: (vout_thread_t *) vout view: (VLCVoutView *) view
888                      frame: (NSRect *) frame
889 {
890     p_vout  = vout;
891     o_view  = view;
892     s_frame = frame;
893
894     [self performSelectorOnMainThread: @selector(initReal:)
895         withObject: NULL waitUntilDone: YES];
896
897     if( !b_init_ok )
898     {
899         return NULL;
900     }
901
902     return self;
903 }
904
905 - (id)initReal: (id) sender
906 {
907     NSAutoreleasePool *o_pool = [[NSAutoreleasePool alloc] init];
908     NSArray *o_screens = [NSScreen screens];
909     NSScreen *o_screen;
910     vlc_bool_t b_menubar_screen = VLC_FALSE;
911     int i_device;
912
913     b_init_ok = VLC_FALSE;
914
915     p_real_vout = [VLCVoutView getRealVout: p_vout];
916     i_device = var_GetInteger( p_real_vout->p_vlc, "video-device" );
917     b_black = var_GetBool( p_real_vout->p_vlc, "macosx-black" );
918
919     /* Find out on which screen to open the window */
920     if( i_device <= 0 || i_device > (int)[o_screens count] )
921     {
922          /* No preference specified. Use the main screen */
923         o_screen = [NSScreen mainScreen];
924         i_device = [o_screens indexOfObject: o_screen];
925         if( o_screen == [o_screens objectAtIndex: 0] )
926             b_menubar_screen = VLC_TRUE;
927     }
928     else
929     {
930         i_device--;
931         o_screen = [o_screens objectAtIndex: i_device];
932         b_menubar_screen = ( i_device == 0 );
933     }
934
935     if( p_vout->b_fullscreen )
936     {
937         CGDisplayFadeReservationToken token;
938         NSRect screen_rect = [o_screen frame];
939         screen_rect.origin.x = screen_rect.origin.y = 0;
940
941         /* Creates a window with size: screen_rect on o_screen */
942         [self initWithContentRect: screen_rect
943               styleMask: NSBorderlessWindowMask
944               backing: NSBackingStoreBuffered
945               defer: YES screen: o_screen];
946
947         if( var_GetBool( p_real_vout, "macosx-black" ) )
948         if( b_black == VLC_TRUE )
949         {
950             CGAcquireDisplayFadeReservation(kCGMaxDisplayReservationInterval, &token);
951             CGDisplayFade( token, 0.5, kCGDisplayBlendNormal, kCGDisplayBlendSolidColor, 0, 0, 0, true );
952             CGReleaseDisplayFadeReservation( token );
953             unsigned int i;
954             for( i = 0 ; i < [o_screens count]; i++)
955             {
956                 struct
957                 {
958                     CGDirectDisplayID displayID;
959                     CGGammaValue redMin, redMax, redGamma,
960                                  greenMin, greenMax, greenGamma,
961                                  blueMin, blueMax, blueGamma;
962                 } dispSettings;
963                 CGDisplayCount dspyCnt;
964                 CGPoint gPoint;
965
966                 if( i == (unsigned int)i_device ) continue;
967
968                 screen_rect = [[o_screens objectAtIndex: i] frame];
969
970                 gPoint.x = screen_rect.origin.x;
971                 gPoint.y = screen_rect.origin.y;
972                 CGGetDisplaysWithPoint( gPoint, 1, &(dispSettings.displayID), &dspyCnt);
973                 CGGetDisplayTransferByFormula(
974                     dispSettings.displayID,
975                     &dispSettings.redMin, &dispSettings.redMax, &dispSettings.redGamma,
976                     &dispSettings.greenMin, &dispSettings.greenMax, &dispSettings.greenGamma,
977                     &dispSettings.blueMin, &dispSettings.blueMax, &dispSettings.blueGamma );
978                 CGSetDisplayTransferByFormula(
979                     dispSettings.displayID,
980                     dispSettings.redMin,   0, dispSettings.redGamma,
981                     dispSettings.greenMin, 0, dispSettings.greenGamma,
982                     dispSettings.blueMin,  0, dispSettings.blueGamma );
983             }
984         }
985         if( b_menubar_screen )
986         {
987             SetSystemUIMode( kUIModeAllHidden, kUIOptionAutoShowMenuBar);
988         }
989         if( b_black == VLC_TRUE )
990         {
991             CGAcquireDisplayFadeReservation(kCGMaxDisplayReservationInterval, &token);
992             CGDisplayFade( token, 2 , kCGDisplayBlendSolidColor, kCGDisplayBlendNormal, 0, 0, 0, false );
993             CGReleaseDisplayFadeReservation( token);
994         }
995     }
996     else if( var_GetBool( p_real_vout, "macosx-background" ) )
997     {
998         NSRect screen_rect = [o_screen frame];
999         screen_rect.origin.x = screen_rect.origin.y = 0;
1000
1001         /* Creates a window with size: screen_rect on o_screen */
1002         [self initWithContentRect: screen_rect
1003               styleMask: NSBorderlessWindowMask
1004               backing: NSBackingStoreBuffered
1005               defer: YES screen: o_screen];
1006
1007         [self setLevel: CGWindowLevelForKey(kCGDesktopWindowLevelKey)];
1008     }
1009     else
1010     {
1011         unsigned int i_stylemask = NSTitledWindowMask |
1012                                    NSMiniaturizableWindowMask |
1013                                    NSClosableWindowMask |
1014                                    NSResizableWindowMask;
1015
1016         NSRect s_rect;
1017         if( !s_frame )
1018         {
1019             s_rect.size.width  = p_vout->i_window_width;
1020             s_rect.size.height = p_vout->i_window_height;
1021         }
1022         else
1023         {
1024             s_rect = *s_frame;
1025         }
1026
1027         [self initWithContentRect: s_rect
1028               styleMask: i_stylemask
1029               backing: NSBackingStoreBuffered
1030               defer: YES screen: o_screen];
1031
1032         [self setAlphaValue: var_GetFloat( p_vout, "macosx-opaqueness" )];
1033
1034         if( !s_frame )
1035         {
1036             [self center];
1037         }
1038     }
1039
1040     [self makeKeyAndOrderFront: nil];
1041     [self setReleasedWhenClosed: YES];
1042
1043     /* We'll catch mouse events */
1044     [self makeFirstResponder: o_view];
1045
1046     /* Add the view. It's automatically resized to fit the window */
1047     [self setContentView: o_view];
1048
1049     [o_pool release];
1050
1051     b_init_ok = VLC_TRUE;
1052     return self;
1053 }
1054
1055 - (void)close
1056 {
1057     [o_view closeVout];
1058 }
1059
1060 - (void) closeWindow
1061 {
1062     /* XXX waitUntilDone = NO to avoid a possible deadlock when hitting
1063        Command-Q */
1064     [self setContentView: NULL];
1065     [self performSelectorOnMainThread: @selector(closeReal:)
1066         withObject: NULL waitUntilDone: NO];
1067 }
1068
1069 - (id) closeReal: (id) sender
1070 {
1071     if( b_black == VLC_TRUE )
1072     {
1073         CGDisplayFadeReservationToken token;
1074         CGAcquireDisplayFadeReservation(kCGMaxDisplayReservationInterval, &token);
1075         CGDisplayFade( token, 2, kCGDisplayBlendSolidColor, kCGDisplayBlendNormal, 0, 0, 0, false );
1076         CGReleaseDisplayFadeReservation( token);
1077         CGDisplayRestoreColorSyncSettings();
1078     }
1079     SetSystemUIMode( kUIModeNormal, 0);
1080     [super close];
1081     return NULL;
1082 }
1083
1084 - (id)getVoutView
1085 {
1086     return o_view;
1087 }
1088
1089 - (BOOL)canBecomeKeyWindow
1090 {
1091     return YES;
1092 }
1093
1094 /* Sometimes crashes VLC....
1095 - (BOOL)performKeyEquivalent:(NSEvent *)o_event
1096 {
1097         return [[VLCMain sharedInstance] hasDefinedShortcutKey:o_event];
1098 }*/
1099
1100 /* This is actually the same as VLCControls::stop. */
1101
1102 - (BOOL)windowShouldClose:(id)sender
1103 {
1104     playlist_t * p_playlist = vlc_object_find( p_vout, VLC_OBJECT_PLAYLIST,
1105                                                        FIND_ANYWHERE );
1106     if( p_playlist == NULL )
1107     {
1108         return NO;
1109     }
1110
1111     playlist_Stop( p_playlist );
1112     vlc_object_release( p_playlist );
1113
1114     /* The window will be closed by the intf later. */
1115     return NO;
1116 }
1117
1118
1119 @end