]> git.sesse.net Git - vlc/blob - modules/gui/macosx/intf.m
* added a version check of the current Mac OS X version, as we require 10.4.x or...
[vlc] / modules / gui / macosx / intf.m
1 /*****************************************************************************
2  * intf.m: MacOS X interface module
3  *****************************************************************************
4  * Copyright (C) 2002-2007 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
8  *          Christophe Massiot <massiot@via.ecp.fr>
9  *          Derk-Jan Hartman <hartman at videolan.org>
10  *          Felix K\9fhne <fkuehne at videolan dot org>
11  *
12  * This program is free software; you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation; either version 2 of the License, or
15  * (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
25  *****************************************************************************/
26
27 /*****************************************************************************
28  * Preamble
29  *****************************************************************************/
30 #include <stdlib.h>                                      /* malloc(), free() */
31 #include <sys/param.h>                                    /* for MAXPATHLEN */
32 #include <string.h>
33 #include <vlc_keys.h>
34
35 #import "intf.h"
36 #import "fspanel.h"
37 #import "vout.h"
38 #import "prefs.h"
39 #import "playlist.h"
40 #import "controls.h"
41 #import "about.h"
42 #import "open.h"
43 #import "wizard.h"
44 #import "extended.h"
45 #import "bookmarks.h"
46 #import "sfilters.h"
47 #import "interaction.h"
48 #import "embeddedwindow.h"
49 #import "update.h"
50 #import "AppleRemote.h"
51 #import "eyetv.h"
52
53 #import <vlc_input.h>
54
55 /*****************************************************************************
56  * Local prototypes.
57  *****************************************************************************/
58 static void Run ( intf_thread_t *p_intf );
59
60 /* Quick hack */
61 /*****************************************************************************
62  * VLCApplication implementation (this hack is really disgusting now,
63  *                                feel free to fix.)
64  *****************************************************************************/
65 @interface VLCApplication : NSApplication
66 {
67    libvlc_int_t *o_libvlc;
68 }
69 - (void)setVLC: (libvlc_int_t *)p_libvlc;
70 @end
71
72
73 @implementation VLCApplication
74 - (void)setVLC: (libvlc_int_t *) p_libvlc
75 {
76     o_libvlc = p_libvlc;
77 }
78 - (void)terminate: (id)sender
79 {
80     vlc_object_kill( o_libvlc );
81     [super terminate: sender];
82 }
83 @end
84
85 /*****************************************************************************
86  * OpenIntf: initialize interface
87  *****************************************************************************/
88 int E_(OpenIntf) ( vlc_object_t *p_this )
89 {
90     intf_thread_t *p_intf = (intf_thread_t*) p_this;
91
92     p_intf->p_sys = malloc( sizeof( intf_sys_t ) );
93     if( p_intf->p_sys == NULL )
94     {
95         return( 1 );
96     }
97
98     memset( p_intf->p_sys, 0, sizeof( *p_intf->p_sys ) );
99
100     p_intf->p_sys->o_pool = [[NSAutoreleasePool alloc] init];
101
102     p_intf->p_sys->o_sendport = [[NSPort port] retain];
103     p_intf->p_sys->p_sub = msg_Subscribe( p_intf, MSG_QUEUE_NORMAL );
104     p_intf->b_play = VLC_TRUE;
105     p_intf->pf_run = Run;
106     p_intf->b_should_run_on_first_thread = VLC_TRUE;
107
108     return( 0 );
109 }
110
111 /*****************************************************************************
112  * CloseIntf: destroy interface
113  *****************************************************************************/
114 void E_(CloseIntf) ( vlc_object_t *p_this )
115 {
116     intf_thread_t *p_intf = (intf_thread_t*) p_this;
117
118     msg_Unsubscribe( p_intf, p_intf->p_sys->p_sub );
119
120     [p_intf->p_sys->o_sendport release];
121     [p_intf->p_sys->o_pool release];
122
123     free( p_intf->p_sys );
124 }
125
126 /*****************************************************************************
127  * Run: main loop
128  *****************************************************************************/
129 jmp_buf jmpbuffer;
130
131 static void Run( intf_thread_t *p_intf )
132 {
133     sigset_t set;
134
135     /* Do it again - for some unknown reason, vlc_thread_create() often
136      * fails to go to real-time priority with the first launched thread
137      * (???) --Meuuh */
138     vlc_thread_set_priority( p_intf, VLC_THREAD_PRIORITY_LOW );
139
140     /* Make sure the "force quit" menu item does quit instantly.
141      * VLC overrides SIGTERM which is sent by the "force quit"
142      * menu item to make sure deamon mode quits gracefully, so
143      * we un-override SIGTERM here. */
144     sigemptyset( &set );
145     sigaddset( &set, SIGTERM );
146     pthread_sigmask( SIG_UNBLOCK, &set, NULL );
147
148     NSAutoreleasePool * o_pool = [[NSAutoreleasePool alloc] init];
149
150     /* Install a jmpbuffer to where we can go back before the NSApp exit
151      * see applicationWillTerminate: */
152     /* We need that code to run on main thread */
153     [VLCApplication sharedApplication];
154     [NSApp setVLC: p_intf->p_libvlc];
155
156     [[VLCMain sharedInstance] setIntf: p_intf];
157     [NSBundle loadNibNamed: @"MainMenu" owner: NSApp];
158
159     /* Install a jmpbuffer to where we can go back before the NSApp exit
160      * see applicationWillTerminate: */
161     if(setjmp(jmpbuffer) == 0)
162         [NSApp run];
163
164     [o_pool release];
165 }
166
167 int ExecuteOnMainThread( id target, SEL sel, void * p_arg )
168 {
169     int i_ret = 0;
170
171     //NSAutoreleasePool * o_pool = [[NSAutoreleasePool alloc] init];
172
173     if( [target respondsToSelector: @selector(performSelectorOnMainThread:
174                                              withObject:waitUntilDone:)] )
175     {
176         [target performSelectorOnMainThread: sel
177                 withObject: [NSValue valueWithPointer: p_arg]
178                 waitUntilDone: NO];
179     }
180     else if( NSApp != nil && [[VLCMain sharedInstance] respondsToSelector: @selector(getIntf)] )
181     {
182         NSValue * o_v1;
183         NSValue * o_v2;
184         NSArray * o_array;
185         NSPort * o_recv_port;
186         NSInvocation * o_inv;
187         NSPortMessage * o_msg;
188         intf_thread_t * p_intf;
189         NSConditionLock * o_lock;
190         NSMethodSignature * o_sig;
191
192         id * val[] = { &o_lock, &o_v2 };
193
194         p_intf = (intf_thread_t *)VLCIntf;
195
196         o_recv_port = [[NSPort port] retain];
197         o_v1 = [NSValue valueWithPointer: val];
198         o_v2 = [NSValue valueWithPointer: p_arg];
199
200         o_sig = [target methodSignatureForSelector: sel];
201         o_inv = [NSInvocation invocationWithMethodSignature: o_sig];
202         [o_inv setArgument: &o_v1 atIndex: 2];
203         [o_inv setTarget: target];
204         [o_inv setSelector: sel];
205
206         o_array = [NSArray arrayWithObject:
207             [NSData dataWithBytes: &o_inv length: sizeof(o_inv)]];
208         o_msg = [[NSPortMessage alloc]
209             initWithSendPort: p_intf->p_sys->o_sendport
210             receivePort: o_recv_port components: o_array];
211
212         o_lock = [[NSConditionLock alloc] initWithCondition: 0];
213         [o_msg sendBeforeDate: [NSDate distantPast]];
214         [o_lock lockWhenCondition: 1];
215         [o_lock unlock];
216         [o_lock release];
217
218         [o_msg release];
219         [o_recv_port release];
220     }
221     else
222     {
223         i_ret = 1;
224     }
225
226     //[o_pool release];
227
228     return( i_ret );
229 }
230
231 /*****************************************************************************
232  * playlistChanged: Callback triggered by the intf-change playlist
233  * variable, to let the intf update the playlist.
234  *****************************************************************************/
235 static int PlaylistChanged( vlc_object_t *p_this, const char *psz_variable,
236                      vlc_value_t old_val, vlc_value_t new_val, void *param )
237 {
238     intf_thread_t * p_intf = VLCIntf;
239     p_intf->p_sys->b_playlist_update = VLC_TRUE;
240     p_intf->p_sys->b_intf_update = VLC_TRUE;
241     p_intf->p_sys->b_playmode_update = VLC_TRUE;
242     p_intf->p_sys->b_current_title_update = VLC_TRUE;
243     return VLC_SUCCESS;
244 }
245
246 /*****************************************************************************
247  * ShowController: Callback triggered by the show-intf playlist variable
248  * through the ShowIntf-control-intf, to let us show the controller-win;
249  * usually when in fullscreen-mode
250  *****************************************************************************/
251 static int ShowController( vlc_object_t *p_this, const char *psz_variable,
252                      vlc_value_t old_val, vlc_value_t new_val, void *param )
253 {
254     intf_thread_t * p_intf = VLCIntf;
255     p_intf->p_sys->b_intf_show = VLC_TRUE;
256     return VLC_SUCCESS;
257 }
258
259 /*****************************************************************************
260  * FullscreenChanged: Callback triggered by the fullscreen-change playlist
261  * variable, to let the intf update the controller.
262  *****************************************************************************/
263 static int FullscreenChanged( vlc_object_t *p_this, const char *psz_variable,
264                      vlc_value_t old_val, vlc_value_t new_val, void *param )
265 {
266     intf_thread_t * p_intf = VLCIntf;
267     p_intf->p_sys->b_fullscreen_update = VLC_TRUE;
268     return VLC_SUCCESS;
269 }
270
271 /*****************************************************************************
272  * InteractCallback: Callback triggered by the interaction
273  * variable, to let the intf display error and interaction dialogs
274  *****************************************************************************/
275 static int InteractCallback( vlc_object_t *p_this, const char *psz_variable,
276                      vlc_value_t old_val, vlc_value_t new_val, void *param )
277 {
278     NSAutoreleasePool * o_pool = [[NSAutoreleasePool alloc] init];
279     VLCMain *interface = (VLCMain *)param;
280     interaction_dialog_t *p_dialog = (interaction_dialog_t *)(new_val.p_address);
281     NSValue *o_value = [NSValue valueWithPointer:p_dialog];
282  
283     [[NSNotificationCenter defaultCenter] postNotificationName: @"VLCNewInteractionEventNotification" object:[interface getInteractionList]
284      userInfo:[NSDictionary dictionaryWithObject:o_value forKey:@"VLCDialogPointer"]];
285  
286     [o_pool release];
287     return VLC_SUCCESS;
288 }
289
290 static struct
291 {
292     unichar i_nskey;
293     unsigned int i_vlckey;
294 } nskeys_to_vlckeys[] =
295 {
296     { NSUpArrowFunctionKey, KEY_UP },
297     { NSDownArrowFunctionKey, KEY_DOWN },
298     { NSLeftArrowFunctionKey, KEY_LEFT },
299     { NSRightArrowFunctionKey, KEY_RIGHT },
300     { NSF1FunctionKey, KEY_F1 },
301     { NSF2FunctionKey, KEY_F2 },
302     { NSF3FunctionKey, KEY_F3 },
303     { NSF4FunctionKey, KEY_F4 },
304     { NSF5FunctionKey, KEY_F5 },
305     { NSF6FunctionKey, KEY_F6 },
306     { NSF7FunctionKey, KEY_F7 },
307     { NSF8FunctionKey, KEY_F8 },
308     { NSF9FunctionKey, KEY_F9 },
309     { NSF10FunctionKey, KEY_F10 },
310     { NSF11FunctionKey, KEY_F11 },
311     { NSF12FunctionKey, KEY_F12 },
312     { NSHomeFunctionKey, KEY_HOME },
313     { NSEndFunctionKey, KEY_END },
314     { NSPageUpFunctionKey, KEY_PAGEUP },
315     { NSPageDownFunctionKey, KEY_PAGEDOWN },
316     { NSTabCharacter, KEY_TAB },
317     { NSCarriageReturnCharacter, KEY_ENTER },
318     { NSEnterCharacter, KEY_ENTER },
319     { NSBackspaceCharacter, KEY_BACKSPACE },
320     { (unichar) ' ', KEY_SPACE },
321     { (unichar) 0x1b, KEY_ESC },
322     {0,0}
323 };
324
325 unichar VLCKeyToCocoa( unsigned int i_key )
326 {
327     unsigned int i;
328
329     for( i = 0; nskeys_to_vlckeys[i].i_vlckey != 0; i++ )
330     {
331         if( nskeys_to_vlckeys[i].i_vlckey == (i_key & ~KEY_MODIFIER) )
332         {
333             return nskeys_to_vlckeys[i].i_nskey;
334         }
335     }
336     return (unichar)(i_key & ~KEY_MODIFIER);
337 }
338
339 unsigned int CocoaKeyToVLC( unichar i_key )
340 {
341     unsigned int i;
342
343     for( i = 0; nskeys_to_vlckeys[i].i_nskey != 0; i++ )
344     {
345         if( nskeys_to_vlckeys[i].i_nskey == i_key )
346         {
347             return nskeys_to_vlckeys[i].i_vlckey;
348         }
349     }
350     return (unsigned int)i_key;
351 }
352
353 unsigned int VLCModifiersToCocoa( unsigned int i_key )
354 {
355     unsigned int new = 0;
356     if( i_key & KEY_MODIFIER_COMMAND )
357         new |= NSCommandKeyMask;
358     if( i_key & KEY_MODIFIER_ALT )
359         new |= NSAlternateKeyMask;
360     if( i_key & KEY_MODIFIER_SHIFT )
361         new |= NSShiftKeyMask;
362     if( i_key & KEY_MODIFIER_CTRL )
363         new |= NSControlKeyMask;
364     return new;
365 }
366
367 /*****************************************************************************
368  * VLCMain implementation
369  *****************************************************************************/
370 @implementation VLCMain
371
372 static VLCMain *_o_sharedMainInstance = nil;
373
374 + (VLCMain *)sharedInstance
375 {
376     return _o_sharedMainInstance ? _o_sharedMainInstance : [[self alloc] init];
377 }
378
379 - (id)init
380 {
381     if( _o_sharedMainInstance) {
382         [self dealloc];
383     } else {
384         _o_sharedMainInstance = [super init];
385     }
386
387     o_about = [[VLAboutBox alloc] init];
388     o_prefs = nil;
389     o_open = [[VLCOpen alloc] init];
390     o_wizard = [[VLCWizard alloc] init];
391     o_extended = nil;
392     o_bookmarks = [[VLCBookmarks alloc] init];
393     o_embedded_list = [[VLCEmbeddedList alloc] init];
394     o_interaction_list = [[VLCInteractionList alloc] init];
395     o_sfilters = nil;
396     o_update = [[VLCUpdate alloc] init];
397
398     i_lastShownVolume = -1;
399
400     o_remote = [[AppleRemote alloc] init];
401     [o_remote setClickCountEnabledButtons: kRemoteButtonPlay];
402     [o_remote setDelegate: _o_sharedMainInstance];
403
404     o_eyetv = [[VLCEyeTVController alloc] init];
405
406     /* announce our launch to a potential eyetv plugin */
407     [[NSDistributedNotificationCenter defaultCenter] postNotificationName: @"VLCOSXGUIInit"
408                                                                    object: @"VLCEyeTVSupport"
409                                                                  userInfo: NULL
410                                                        deliverImmediately: YES];
411
412     return _o_sharedMainInstance;
413 }
414
415 - (void)setIntf: (intf_thread_t *)p_mainintf {
416     p_intf = p_mainintf;
417 }
418
419 - (intf_thread_t *)getIntf {
420     return p_intf;
421 }
422
423 - (void)awakeFromNib
424 {
425     unsigned int i_key = 0;
426     playlist_t *p_playlist;
427     vlc_value_t val;
428
429     /* Check if we already did this once. Opening the other nibs calls it too, because VLCMain is the owner */
430     if( nib_main_loaded ) return;
431
432     [self initStrings];
433     [o_window setExcludedFromWindowsMenu: TRUE];
434     [o_msgs_panel setExcludedFromWindowsMenu: TRUE];
435     [o_msgs_panel setDelegate: self];
436
437     i_key = config_GetInt( p_intf, "key-quit" );
438     [o_mi_quit setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
439     [o_mi_quit setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
440     i_key = config_GetInt( p_intf, "key-play-pause" );
441     [o_mi_play setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
442     [o_mi_play setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
443     i_key = config_GetInt( p_intf, "key-stop" );
444     [o_mi_stop setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
445     [o_mi_stop setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
446     i_key = config_GetInt( p_intf, "key-faster" );
447     [o_mi_faster setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
448     [o_mi_faster setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
449     i_key = config_GetInt( p_intf, "key-slower" );
450     [o_mi_slower setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
451     [o_mi_slower setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
452     i_key = config_GetInt( p_intf, "key-prev" );
453     [o_mi_previous setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
454     [o_mi_previous setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
455     i_key = config_GetInt( p_intf, "key-next" );
456     [o_mi_next setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
457     [o_mi_next setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
458     i_key = config_GetInt( p_intf, "key-jump+short" );
459     [o_mi_fwd setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
460     [o_mi_fwd setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
461     i_key = config_GetInt( p_intf, "key-jump-short" );
462     [o_mi_bwd setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
463     [o_mi_bwd setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
464     i_key = config_GetInt( p_intf, "key-jump+medium" );
465     [o_mi_fwd1m setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
466     [o_mi_fwd1m setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
467     i_key = config_GetInt( p_intf, "key-jump-medium" );
468     [o_mi_bwd1m setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
469     [o_mi_bwd1m setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
470     i_key = config_GetInt( p_intf, "key-jump+long" );
471     [o_mi_fwd5m setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
472     [o_mi_fwd5m setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
473     i_key = config_GetInt( p_intf, "key-jump-long" );
474     [o_mi_bwd5m setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
475     [o_mi_bwd5m setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
476     i_key = config_GetInt( p_intf, "key-vol-up" );
477     [o_mi_vol_up setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
478     [o_mi_vol_up setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
479     i_key = config_GetInt( p_intf, "key-vol-down" );
480     [o_mi_vol_down setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
481     [o_mi_vol_down setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
482     i_key = config_GetInt( p_intf, "key-vol-mute" );
483     [o_mi_mute setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
484     [o_mi_mute setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
485     i_key = config_GetInt( p_intf, "key-fullscreen" );
486     [o_mi_fullscreen setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
487     [o_mi_fullscreen setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
488     i_key = config_GetInt( p_intf, "key-snapshot" );
489     [o_mi_snapshot setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
490     [o_mi_snapshot setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
491
492     var_Create( p_intf, "intf-change", VLC_VAR_BOOL );
493
494     [self setSubmenusEnabled: FALSE];
495     [self manageVolumeSlider];
496     [o_window setDelegate: self];
497  
498     b_restore_size = false;
499     if( [o_window frame].size.height <= 200 )
500     {
501         b_small_window = YES;
502         [o_window setFrame: NSMakeRect( [o_window frame].origin.x,
503             [o_window frame].origin.y, [o_window frame].size.width,
504             [o_window minSize].height ) display: YES animate:YES];
505         [o_playlist_view setAutoresizesSubviews: NO];
506     }
507     else
508     {
509         b_small_window = NO;
510         [o_playlist_view setFrame: NSMakeRect( 10, 10, [o_window frame].size.width - 20, [o_window frame].size.height - 105 )];
511         [o_playlist_view setNeedsDisplay:YES];
512         [o_playlist_view setAutoresizesSubviews: YES];
513         [[o_window contentView] addSubview: o_playlist_view];
514     }
515     [self updateTogglePlaylistState];
516
517     o_size_with_playlist = [o_window frame].size;
518
519     p_playlist = pl_Yield( p_intf );
520
521     /* Check if we need to start playing */
522     if( p_intf->b_play )
523     {
524         playlist_Control( p_playlist, PLAYLIST_AUTOPLAY, VLC_FALSE );
525     }
526     var_Create( p_playlist, "fullscreen", VLC_VAR_BOOL | VLC_VAR_DOINHERIT);
527     val.b_bool = VLC_FALSE;
528
529     var_AddCallback( p_playlist, "fullscreen", FullscreenChanged, self);
530     var_AddCallback( p_playlist, "intf-show", ShowController, self);
531
532     vlc_object_release( p_playlist );
533  
534     var_Create( p_intf, "interaction", VLC_VAR_ADDRESS );
535     var_AddCallback( p_intf, "interaction", InteractCallback, self );
536     p_intf->b_interaction = VLC_TRUE;
537
538     /* update the playmode stuff */
539     p_intf->p_sys->b_playmode_update = VLC_TRUE;
540
541     [[NSNotificationCenter defaultCenter] addObserver: self
542                                              selector: @selector(refreshVoutDeviceMenu:)
543                                                  name: NSApplicationDidChangeScreenParametersNotification
544                                                object: nil];
545  
546     nib_main_loaded = TRUE;
547 }
548
549 - (void)initStrings
550 {
551     [o_window setTitle: _NS("VLC - Controller")];
552     [self setScrollField:_NS("VLC media player") stopAfter:-1];
553
554     /* button controls */
555     [o_btn_prev setToolTip: _NS("Previous")];
556     [o_btn_rewind setToolTip: _NS("Rewind")];
557     [o_btn_play setToolTip: _NS("Play")];
558     [o_btn_stop setToolTip: _NS("Stop")];
559     [o_btn_ff setToolTip: _NS("Fast Forward")];
560     [o_btn_next setToolTip: _NS("Next")];
561     [o_btn_fullscreen setToolTip: _NS("Fullscreen")];
562     [o_volumeslider setToolTip: _NS("Volume")];
563     [o_timeslider setToolTip: _NS("Position")];
564     [o_btn_playlist setToolTip: _NS("Playlist")];
565
566     /* messages panel */
567     [o_msgs_panel setTitle: _NS("Messages")];
568     [o_msgs_btn_crashlog setTitle: _NS("Open CrashLog...")];
569
570     /* main menu */
571     [o_mi_about setTitle: [_NS("About VLC media player") \
572         stringByAppendingString: @"..."]];
573     [o_mi_checkForUpdate setTitle: _NS("Check for Update...")];
574     [o_mi_prefs setTitle: _NS("Preferences...")];
575     [o_mi_add_intf setTitle: _NS("Add Interface")];
576     [o_mu_add_intf setTitle: _NS("Add Interface")];
577     [o_mi_services setTitle: _NS("Services")];
578     [o_mi_hide setTitle: _NS("Hide VLC")];
579     [o_mi_hide_others setTitle: _NS("Hide Others")];
580     [o_mi_show_all setTitle: _NS("Show All")];
581     [o_mi_quit setTitle: _NS("Quit VLC")];
582
583     [o_mu_file setTitle: _ANS("1:File")];
584     [o_mi_open_generic setTitle: _NS("Open File...")];
585     [o_mi_open_file setTitle: _NS("Quick Open File...")];
586     [o_mi_open_disc setTitle: _NS("Open Disc...")];
587     [o_mi_open_net setTitle: _NS("Open Network...")];
588     [o_mi_open_recent setTitle: _NS("Open Recent")];
589     [o_mi_open_recent_cm setTitle: _NS("Clear Menu")];
590     [o_mi_open_wizard setTitle: _NS("Streaming/Exporting Wizard...")];
591
592     [o_mu_edit setTitle: _NS("Edit")];
593     [o_mi_cut setTitle: _NS("Cut")];
594     [o_mi_copy setTitle: _NS("Copy")];
595     [o_mi_paste setTitle: _NS("Paste")];
596     [o_mi_clear setTitle: _NS("Clear")];
597     [o_mi_select_all setTitle: _NS("Select All")];
598
599     [o_mu_controls setTitle: _NS("Playback")];
600     [o_mi_play setTitle: _NS("Play")];
601     [o_mi_stop setTitle: _NS("Stop")];
602     [o_mi_faster setTitle: _NS("Faster")];
603     [o_mi_slower setTitle: _NS("Slower")];
604     [o_mi_previous setTitle: _NS("Previous")];
605     [o_mi_next setTitle: _NS("Next")];
606     [o_mi_random setTitle: _NS("Random")];
607     [o_mi_repeat setTitle: _NS("Repeat One")];
608     [o_mi_loop setTitle: _NS("Repeat All")];
609     [o_mi_fwd setTitle: _NS("Step Forward")];
610     [o_mi_bwd setTitle: _NS("Step Backward")];
611
612     [o_mi_program setTitle: _NS("Program")];
613     [o_mu_program setTitle: _NS("Program")];
614     [o_mi_title setTitle: _NS("Title")];
615     [o_mu_title setTitle: _NS("Title")];
616     [o_mi_chapter setTitle: _NS("Chapter")];
617     [o_mu_chapter setTitle: _NS("Chapter")];
618
619     [o_mu_audio setTitle: _NS("Audio")];
620     [o_mi_vol_up setTitle: _NS("Volume Up")];
621     [o_mi_vol_down setTitle: _NS("Volume Down")];
622     [o_mi_mute setTitle: _NS("Mute")];
623     [o_mi_audiotrack setTitle: _NS("Audio Track")];
624     [o_mu_audiotrack setTitle: _NS("Audio Track")];
625     [o_mi_channels setTitle: _NS("Audio Channels")];
626     [o_mu_channels setTitle: _NS("Audio Channels")];
627     [o_mi_device setTitle: _NS("Audio Device")];
628     [o_mu_device setTitle: _NS("Audio Device")];
629     [o_mi_visual setTitle: _NS("Visualizations")];
630     [o_mu_visual setTitle: _NS("Visualizations")];
631
632     [o_mu_video setTitle: _NS("Video")];
633     [o_mi_half_window setTitle: _NS("Half Size")];
634     [o_mi_normal_window setTitle: _NS("Normal Size")];
635     [o_mi_double_window setTitle: _NS("Double Size")];
636     [o_mi_fittoscreen setTitle: _NS("Fit to Screen")];
637     [o_mi_fullscreen setTitle: _NS("Fullscreen")];
638     [o_mi_floatontop setTitle: _NS("Float on Top")];
639     [o_mi_snapshot setTitle: _NS("Snapshot")];
640     [o_mi_videotrack setTitle: _NS("Video Track")];
641     [o_mu_videotrack setTitle: _NS("Video Track")];
642     [o_mi_aspect_ratio setTitle: _NS("Aspect-ratio")];
643     [o_mu_aspect_ratio setTitle: _NS("Aspect-ratio")];
644     [o_mi_crop setTitle: _NS("Crop")];
645     [o_mu_crop setTitle: _NS("Crop")];
646     [o_mi_screen setTitle: _NS("Video Device")];
647     [o_mu_screen setTitle: _NS("Video Device")];
648     [o_mi_subtitle setTitle: _NS("Subtitles Track")];
649     [o_mu_subtitle setTitle: _NS("Subtitles Track")];
650     [o_mi_deinterlace setTitle: _NS("Deinterlace")];
651     [o_mu_deinterlace setTitle: _NS("Deinterlace")];
652     [o_mi_ffmpeg_pp setTitle: _NS("Post processing")];
653     [o_mu_ffmpeg_pp setTitle: _NS("Post processing")];
654
655     [o_mu_window setTitle: _NS("Window")];
656     [o_mi_minimize setTitle: _NS("Minimize Window")];
657     [o_mi_close_window setTitle: _NS("Close Window")];
658     [o_mi_controller setTitle: _NS("Controller...")];
659     [o_mi_equalizer setTitle: _NS("Equalizer...")];
660     [o_mi_extended setTitle: _NS("Extended Controls...")];
661     [o_mi_bookmarks setTitle: _NS("Bookmarks...")];
662     [o_mi_playlist setTitle: _NS("Playlist...")];
663     [o_mi_info setTitle: _NS("Media Information...")];
664     [o_mi_messages setTitle: _NS("Messages...")];
665     [o_mi_errorsAndWarnings setTitle: _NS("Errors and Warnings...")];
666
667     [o_mi_bring_atf setTitle: _NS("Bring All to Front")];
668
669     [o_mu_help setTitle: _NS("Help")];
670     [o_mi_help setTitle: _NS("VLC media player Help...")];
671     [o_mi_readme setTitle: _NS("ReadMe / FAQ...")];
672     [o_mi_documentation setTitle: _NS("Online Documentation...")];
673     [o_mi_website setTitle: _NS("VideoLAN Website...")];
674     [o_mi_donation setTitle: _NS("Make a donation...")];
675     [o_mi_forum setTitle: _NS("Online Forum...")];
676
677     /* dock menu */
678     [o_dmi_play setTitle: _NS("Play")];
679     [o_dmi_stop setTitle: _NS("Stop")];
680     [o_dmi_next setTitle: _NS("Next")];
681     [o_dmi_previous setTitle: _NS("Previous")];
682     [o_dmi_mute setTitle: _NS("Mute")];
683  
684     /* vout menu */
685     [o_vmi_play setTitle: _NS("Play")];
686     [o_vmi_stop setTitle: _NS("Stop")];
687     [o_vmi_prev setTitle: _NS("Previous")];
688     [o_vmi_next setTitle: _NS("Next")];
689     [o_vmi_volup setTitle: _NS("Volume Up")];
690     [o_vmi_voldown setTitle: _NS("Volume Down")];
691     [o_vmi_mute setTitle: _NS("Mute")];
692     [o_vmi_fullscreen setTitle: _NS("Fullscreen")];
693     [o_vmi_snapshot setTitle: _NS("Snapshot")];
694
695     [o_info_window setTitle: _NS("Media Information")];
696 }
697
698 - (void)applicationWillFinishLaunching:(NSNotification *)o_notification
699 {
700     o_msg_lock = [[NSLock alloc] init];
701     o_msg_arr = [[NSMutableArray arrayWithCapacity: 200] retain];
702
703     o_img_play = [[NSImage imageNamed: @"play"] retain];
704     o_img_play_pressed = [[NSImage imageNamed: @"play_blue"] retain];
705     o_img_pause = [[NSImage imageNamed: @"pause"] retain];
706     o_img_pause_pressed = [[NSImage imageNamed: @"pause_blue"] retain];
707
708     [p_intf->p_sys->o_sendport setDelegate: self];
709     [[NSRunLoop currentRunLoop]
710         addPort: p_intf->p_sys->o_sendport
711         forMode: NSDefaultRunLoopMode];
712
713     [NSTimer scheduledTimerWithTimeInterval: 0.5
714         target: self selector: @selector(manageIntf:)
715         userInfo: nil repeats: FALSE];
716
717     [NSThread detachNewThreadSelector: @selector(manage)
718         toTarget: self withObject: nil];
719
720     [o_controls setupVarMenuItem: o_mi_add_intf target: (vlc_object_t *)p_intf
721         var: "intf-add" selector: @selector(toggleVar:)];
722
723     /* check whether the user runs a valid version of OSX; alert is auto-released */
724     if( MACOS_VERSION < 10.5f )
725     {
726         NSAlert *ourAlert;
727         int i_returnValue;
728         ourAlert = [NSAlert alertWithMessageText: _NS("Your version of Mac OS X is not supported")
729                         defaultButton: _NS("Quit")
730                       alternateButton: NULL
731                           otherButton: NULL
732             informativeTextWithFormat: _NS("VLC media player requires Mac OS X 10.4 or higher.")];
733         [ourAlert setAlertStyle: NSCriticalAlertStyle];
734         i_returnValue = [ourAlert runModal];
735         [NSApp terminate: self];
736     }
737
738     vlc_thread_set_priority( p_intf, VLC_THREAD_PRIORITY_LOW );
739 }
740
741 - (BOOL)application:(NSApplication *)o_app openFile:(NSString *)o_filename
742 {
743     BOOL b_autoplay = config_GetInt( VLCIntf, "macosx-autoplay" );
744     NSDictionary *o_dic = [NSDictionary dictionaryWithObjectsAndKeys: o_filename, @"ITEM_URL", nil];
745     if( b_autoplay )
746         [o_playlist appendArray: [NSArray arrayWithObject: o_dic] atPos: -1 enqueue: NO];
747     else
748         [o_playlist appendArray: [NSArray arrayWithObject: o_dic] atPos: -1 enqueue: YES];
749
750     return( TRUE );
751 }
752
753 - (NSString *)localizedString:(char *)psz
754 {
755     NSString * o_str = nil;
756
757     if( psz != NULL )
758     {
759         o_str = [[[NSString alloc] initWithUTF8String: psz] autorelease];
760
761         if ( o_str == NULL )
762         {
763             msg_Err( VLCIntf, "could not translate: %s", psz );
764             return( @"" );
765         }
766     }
767     else
768     {
769         msg_Warn( VLCIntf, "can't translate empty strings" );
770         return( @"" );
771     }
772
773     return( o_str );
774 }
775
776 /* When user click in the Dock icon our double click in the finder */
777 - (BOOL)applicationShouldHandleReopen:(NSApplication *)theApplication hasVisibleWindows:(BOOL)hasVisibleWindows
778 {    
779     if (!hasVisibleWindows)
780         [o_window makeKeyAndOrderFront:self];
781
782     return YES;
783 }
784
785 - (void)applicationDidFinishLaunching:(NSNotification *)aNotification
786 {
787     /* Check for update silently on startup */
788     if ( !nib_update_loaded )
789         nib_update_loaded = [NSBundle loadNibNamed:@"Update" owner:self];
790
791     if([o_update shouldCheckForUpdate])
792         [NSThread detachNewThreadSelector:@selector(checkForUpdate) toTarget:o_update withObject:NULL];
793  
794     /* Handle sleep notification */
795     [[[NSWorkspace sharedWorkspace] notificationCenter] addObserver:self selector:@selector(computerWillSleep:)
796            name:NSWorkspaceWillSleepNotification object:nil];
797 }
798
799 /* Listen to the remote in exclusive mode, only when VLC is the active
800    application */
801 - (void)applicationDidBecomeActive:(NSNotification *)aNotification
802 {
803     [o_remote startListening: self];
804 }
805 - (void)applicationDidResignActive:(NSNotification *)aNotification
806 {
807     [o_remote stopListening: self];
808 }
809
810 /* Triggered when the computer goes to sleep */
811 - (void)computerWillSleep: (NSNotification *)notification
812 {
813     /* Pause */
814     if ( p_intf->p_sys->i_play_status == PLAYING_S )
815     {
816         vlc_value_t val;
817         val.i_int = config_GetInt( p_intf, "key-play-pause" );
818         var_Set( p_intf->p_libvlc, "key-pressed", val );
819     }
820 }
821
822 /* Helper method for the remote control interface in order to trigger forward/backward and volume
823    increase/decrease as long as the user holds the left/right, plus/minus button */
824 - (void) executeHoldActionForRemoteButton: (NSNumber*) buttonIdentifierNumber
825 {
826     if (b_remote_button_hold)
827     {
828         switch([buttonIdentifierNumber intValue])
829         {
830             case kRemoteButtonRight_Hold:
831                   [o_controls forward: self];
832             break;
833             case kRemoteButtonLeft_Hold:
834                   [o_controls backward: self];
835             break;
836             case kRemoteButtonVolume_Plus_Hold:
837                 [o_controls volumeUp: self];
838             break;
839             case kRemoteButtonVolume_Minus_Hold:
840                 [o_controls volumeDown: self];
841             break;
842         }
843         if (b_remote_button_hold)
844         {
845             /* trigger event */
846             [self performSelector:@selector(executeHoldActionForRemoteButton:)
847                          withObject:buttonIdentifierNumber
848                          afterDelay:0.25];
849         }
850     }
851 }
852
853 /* Apple Remote callback */
854 - (void) appleRemoteButton: (AppleRemoteEventIdentifier)buttonIdentifier
855                pressedDown: (BOOL) pressedDown
856                 clickCount: (unsigned int) count
857 {
858     switch( buttonIdentifier )
859     {
860         case kRemoteButtonPlay:
861             if (count >= 2) {
862                 [o_controls toogleFullscreen:self];
863             } else {
864                 [o_controls play: self];
865             }
866             break;
867         case kRemoteButtonVolume_Plus:
868             [o_controls volumeUp: self];
869             break;
870         case kRemoteButtonVolume_Minus:
871             [o_controls volumeDown: self];
872             break;
873         case kRemoteButtonRight:
874             [o_controls next: self];
875             break;
876         case kRemoteButtonLeft:
877             [o_controls prev: self];
878             break;
879         case kRemoteButtonRight_Hold:
880         case kRemoteButtonLeft_Hold:
881         case kRemoteButtonVolume_Plus_Hold:
882         case kRemoteButtonVolume_Minus_Hold:
883             /* simulate an event as long as the user holds the button */
884             b_remote_button_hold = pressedDown;
885             if( pressedDown )
886             {
887                 NSNumber* buttonIdentifierNumber = [NSNumber numberWithInt: buttonIdentifier];
888                 [self performSelector:@selector(executeHoldActionForRemoteButton:)
889                            withObject:buttonIdentifierNumber];
890             }
891             break;
892         case kRemoteButtonMenu:
893             [o_controls showPosition: self];
894             break;
895         default:
896             /* Add here whatever you want other buttons to do */
897             break;
898     }
899 }
900
901 - (char *)delocalizeString:(NSString *)id
902 {
903     NSData * o_data = [id dataUsingEncoding: NSUTF8StringEncoding
904                           allowLossyConversion: NO];
905     char * psz_string;
906
907     if ( o_data == nil )
908     {
909         o_data = [id dataUsingEncoding: NSUTF8StringEncoding
910                      allowLossyConversion: YES];
911         psz_string = malloc( [o_data length] + 1 );
912         [o_data getBytes: psz_string];
913         psz_string[ [o_data length] ] = '\0';
914         msg_Err( VLCIntf, "cannot convert to the requested encoding: %s",
915                  psz_string );
916     }
917     else
918     {
919         psz_string = malloc( [o_data length] + 1 );
920         [o_data getBytes: psz_string];
921         psz_string[ [o_data length] ] = '\0';
922     }
923
924     return psz_string;
925 }
926
927 /* i_width is in pixels */
928 - (NSString *)wrapString: (NSString *)o_in_string toWidth: (int) i_width
929 {
930     NSMutableString *o_wrapped;
931     NSString *o_out_string;
932     NSRange glyphRange, effectiveRange, charRange;
933     NSRect lineFragmentRect;
934     unsigned glyphIndex, breaksInserted = 0;
935
936     NSTextStorage *o_storage = [[NSTextStorage alloc] initWithString: o_in_string
937         attributes: [NSDictionary dictionaryWithObjectsAndKeys:
938         [NSFont labelFontOfSize: 0.0], NSFontAttributeName, nil]];
939     NSLayoutManager *o_layout_manager = [[NSLayoutManager alloc] init];
940     NSTextContainer *o_container = [[NSTextContainer alloc]
941         initWithContainerSize: NSMakeSize(i_width, 2000)];
942
943     [o_layout_manager addTextContainer: o_container];
944     [o_container release];
945     [o_storage addLayoutManager: o_layout_manager];
946     [o_layout_manager release];
947
948     o_wrapped = [o_in_string mutableCopy];
949     glyphRange = [o_layout_manager glyphRangeForTextContainer: o_container];
950
951     for( glyphIndex = glyphRange.location ; glyphIndex < NSMaxRange(glyphRange) ;
952             glyphIndex += effectiveRange.length) {
953         lineFragmentRect = [o_layout_manager lineFragmentRectForGlyphAtIndex: glyphIndex
954                                             effectiveRange: &effectiveRange];
955         charRange = [o_layout_manager characterRangeForGlyphRange: effectiveRange
956                                     actualGlyphRange: &effectiveRange];
957         if ([o_wrapped lineRangeForRange:
958                 NSMakeRange(charRange.location + breaksInserted, charRange.length)].length > charRange.length) {
959             [o_wrapped insertString: @"\n" atIndex: NSMaxRange(charRange) + breaksInserted];
960             breaksInserted++;
961         }
962     }
963     o_out_string = [NSString stringWithString: o_wrapped];
964     [o_wrapped release];
965     [o_storage release];
966
967     return o_out_string;
968 }
969
970
971 /*****************************************************************************
972  * hasDefinedShortcutKey: Check to see if the key press is a defined VLC
973  * shortcut key.  If it is, pass it off to VLC for handling and return YES,
974  * otherwise ignore it and return NO (where it will get handled by Cocoa).
975  *****************************************************************************/
976 - (BOOL)hasDefinedShortcutKey:(NSEvent *)o_event
977 {
978     unichar key = 0;
979     vlc_value_t val;
980     unsigned int i_pressed_modifiers = 0;
981     struct hotkey *p_hotkeys;
982     int i;
983
984     val.i_int = 0;
985     p_hotkeys = p_intf->p_libvlc->p_hotkeys;
986
987     i_pressed_modifiers = [o_event modifierFlags];
988
989     if( i_pressed_modifiers & NSShiftKeyMask )
990         val.i_int |= KEY_MODIFIER_SHIFT;
991     if( i_pressed_modifiers & NSControlKeyMask )
992         val.i_int |= KEY_MODIFIER_CTRL;
993     if( i_pressed_modifiers & NSAlternateKeyMask )
994         val.i_int |= KEY_MODIFIER_ALT;
995     if( i_pressed_modifiers & NSCommandKeyMask )
996         val.i_int |= KEY_MODIFIER_COMMAND;
997
998     key = [[o_event charactersIgnoringModifiers] characterAtIndex: 0];
999
1000     switch( key )
1001     {
1002         case NSDeleteCharacter:
1003         case NSDeleteFunctionKey:
1004         case NSDeleteCharFunctionKey:
1005         case NSBackspaceCharacter:
1006         case NSUpArrowFunctionKey:
1007         case NSDownArrowFunctionKey:
1008         case NSRightArrowFunctionKey:
1009         case NSLeftArrowFunctionKey:
1010         case NSEnterCharacter:
1011         case NSCarriageReturnCharacter:
1012             return NO;
1013     }
1014
1015     val.i_int |= CocoaKeyToVLC( key );
1016
1017     for( i = 0; p_hotkeys[i].psz_action != NULL; i++ )
1018     {
1019         if( p_hotkeys[i].i_key == val.i_int )
1020         {
1021             var_Set( p_intf->p_libvlc, "key-pressed", val );
1022             return YES;
1023         }
1024     }
1025
1026     return NO;
1027 }
1028
1029 - (id)getControls
1030 {
1031     if ( o_controls )
1032     {
1033         return o_controls;
1034     }
1035     return nil;
1036 }
1037
1038 - (id)getPlaylist
1039 {
1040     if( o_playlist )
1041         return o_playlist;
1042     return nil;
1043 }
1044
1045 - (id)getInfo
1046 {
1047     if ( o_info )
1048     {
1049         return o_info;
1050     }
1051     return nil;
1052 }
1053
1054 - (id)getWizard
1055 {
1056     if ( o_wizard )
1057     {
1058         return o_wizard;
1059     }
1060     return nil;
1061 }
1062
1063 - (id)getBookmarks
1064 {
1065     if ( o_bookmarks )
1066     {
1067         return o_bookmarks;
1068     }
1069     return nil;
1070 }
1071
1072 - (id)getEmbeddedList
1073 {
1074     if( o_embedded_list )
1075     {
1076         return o_embedded_list;
1077     }
1078     return nil;
1079 }
1080
1081 - (id)getInteractionList
1082 {
1083     if( o_interaction_list )
1084     {
1085         return o_interaction_list;
1086     }
1087     return nil;
1088 }
1089
1090 - (id)getMainIntfPgbar
1091 {
1092     if( o_main_pgbar )
1093         return o_main_pgbar;
1094
1095     msg_Err( p_intf, "main interface progress bar item wasn't found" );
1096     return nil;
1097 }
1098
1099 - (id)getControllerWindow
1100 {
1101     if( o_window )
1102         return o_window;
1103     return nil;
1104 }
1105
1106 - (id)getVoutMenu
1107 {
1108     return o_vout_menu;
1109 }
1110
1111 - (id)getEyeTVController
1112 {
1113     if( o_eyetv )
1114         return o_eyetv;
1115     return nil;
1116 }
1117
1118 - (void)manage
1119 {
1120     playlist_t * p_playlist;
1121
1122     /* new thread requires a new pool */
1123     NSAutoreleasePool * o_pool = [[NSAutoreleasePool alloc] init];
1124
1125     vlc_thread_set_priority( p_intf, VLC_THREAD_PRIORITY_LOW );
1126
1127     p_playlist = pl_Yield( p_intf );
1128
1129     var_AddCallback( p_playlist, "intf-change", PlaylistChanged, self );
1130     var_AddCallback( p_playlist, "item-change", PlaylistChanged, self );
1131     var_AddCallback( p_playlist, "item-append", PlaylistChanged, self );
1132     var_AddCallback( p_playlist, "item-deleted", PlaylistChanged, self );
1133     var_AddCallback( p_playlist, "playlist-current", PlaylistChanged, self );
1134
1135     vlc_object_release( p_playlist );
1136
1137     while( !intf_ShouldDie( p_intf ) )
1138     {
1139         vlc_mutex_lock( &p_intf->change_lock );
1140
1141
1142         if( p_intf->p_sys->p_input == NULL )
1143         {
1144             p_intf->p_sys->p_input = p_playlist->p_input;
1145
1146                 /* Refresh the interface */
1147             if( p_intf->p_sys->p_input )
1148             {
1149                 msg_Dbg( p_intf, "input has changed, refreshing interface" );
1150                 p_intf->p_sys->b_input_update = VLC_TRUE;
1151             }
1152         }
1153         else if( p_intf->p_sys->p_input->b_die || p_intf->p_sys->p_input->b_dead )
1154         {
1155             /* input stopped */
1156             p_intf->p_sys->b_intf_update = VLC_TRUE;
1157             p_intf->p_sys->i_play_status = END_S;
1158             msg_Dbg( p_intf, "input has stopped, refreshing interface" );
1159             p_intf->p_sys->p_input = NULL;
1160         }
1161
1162         /* Manage volume status */
1163         [self manageVolumeSlider];
1164
1165         vlc_mutex_unlock( &p_intf->change_lock );
1166         msleep( 100000 );
1167     }
1168     [o_pool release];
1169 }
1170
1171 - (void)manageIntf:(NSTimer *)o_timer
1172 {
1173     vlc_value_t val;
1174     playlist_t * p_playlist;
1175     input_thread_t * p_input;
1176
1177     if( p_intf->p_libvlc->b_die == VLC_TRUE )
1178     {
1179         [o_timer invalidate];
1180         return;
1181     }
1182
1183     if( p_intf->p_sys->b_input_update )
1184     {
1185         /* Called when new input is opened */
1186         p_intf->p_sys->b_current_title_update = VLC_TRUE;
1187         p_intf->p_sys->b_intf_update = VLC_TRUE;
1188         p_intf->p_sys->b_input_update = VLC_FALSE;
1189     }
1190     if( p_intf->p_sys->b_intf_update )
1191     {
1192         vlc_bool_t b_input = VLC_FALSE;
1193         vlc_bool_t b_plmul = VLC_FALSE;
1194         vlc_bool_t b_control = VLC_FALSE;
1195         vlc_bool_t b_seekable = VLC_FALSE;
1196         vlc_bool_t b_chapters = VLC_FALSE;
1197
1198         playlist_t * p_playlist = pl_Yield( p_intf );
1199     /** \todo fix i_size use */
1200         b_plmul = p_playlist->items.i_size > 1;
1201         p_input = p_playlist->p_input;
1202
1203         if( ( b_input = ( p_input != NULL ) ) )
1204         {
1205             /* seekable streams */
1206             vlc_object_yield( p_input );
1207             b_seekable = var_GetBool( p_input, "seekable" );
1208
1209             /* check wether slow/fast motion is possible*/
1210             b_control = p_input->b_can_pace_control;
1211  
1212
1213             /* chapters & titles */
1214             //b_chapters = p_input->stream.i_area_nb > 1;
1215             vlc_object_release( p_input );
1216         }
1217         vlc_object_release( p_playlist );
1218
1219         [o_btn_stop setEnabled: b_input];
1220         [o_btn_ff setEnabled: b_seekable];
1221         [o_btn_rewind setEnabled: b_seekable];
1222         [o_btn_prev setEnabled: (b_plmul || b_chapters)];
1223         [o_btn_next setEnabled: (b_plmul || b_chapters)];
1224
1225         [o_timeslider setFloatValue: 0.0];
1226         [o_timeslider setEnabled: b_seekable];
1227         [o_timefield setStringValue: @"0:00:00"];
1228         [[[self getControls] getFSPanel] setStreamPos: 0 andTime: @"0:00:00"];
1229         [[[self getControls] getFSPanel] setSeekable: b_seekable];
1230
1231         [o_embedded_window setSeekable: b_seekable];
1232
1233         p_intf->p_sys->b_intf_update = VLC_FALSE;
1234     }
1235
1236     if( p_intf->p_sys->b_playmode_update )
1237     {
1238         [o_playlist playModeUpdated];
1239         p_intf->p_sys->b_playmode_update = VLC_FALSE;
1240     }
1241     if( p_intf->p_sys->b_playlist_update )
1242     {
1243         [o_playlist playlistUpdated];
1244         p_intf->p_sys->b_playlist_update = VLC_FALSE;
1245     }
1246
1247     if( p_intf->p_sys->b_fullscreen_update )
1248     {
1249         p_intf->p_sys->b_fullscreen_update = VLC_FALSE;
1250     }
1251
1252     if( p_intf->p_sys->b_intf_show )
1253     {
1254         [o_window makeKeyAndOrderFront: self];
1255
1256         p_intf->p_sys->b_intf_show = VLC_FALSE;
1257     }
1258
1259     p_playlist = pl_Yield( p_intf );
1260     p_input = p_playlist->p_input;
1261
1262     if( p_input && !p_input->b_die )
1263     {
1264         vlc_value_t val;
1265         vlc_object_yield( p_input );
1266
1267         if( p_intf->p_sys->b_current_title_update )
1268         {
1269             NSString *o_temp;
1270
1271             if( p_playlist->status.p_item == NULL )
1272             {
1273                 vlc_object_release( p_input );
1274                 vlc_object_release( p_playlist );
1275                 return;
1276             }
1277             o_temp = [NSString stringWithUTF8String:
1278                 p_playlist->status.p_item->p_input->psz_name];
1279             if( o_temp == NULL )
1280                 o_temp = [NSString stringWithCString:
1281                     p_playlist->status.p_item->p_input->psz_name];
1282             [self setScrollField: o_temp stopAfter:-1];
1283             [[[self getControls] getFSPanel] setStreamTitle: o_temp];
1284
1285             [[o_controls getVoutView] updateTitle];
1286  
1287             [o_playlist updateRowSelection];
1288             p_intf->p_sys->b_current_title_update = FALSE;
1289         }
1290
1291         if( [o_timeslider isEnabled] )
1292         {
1293             /* Update the slider */
1294             vlc_value_t time;
1295             NSString * o_time;
1296             mtime_t i_seconds;
1297             vlc_value_t pos;
1298             float f_updated;
1299
1300             var_Get( p_input, "position", &pos );
1301             f_updated = 10000. * pos.f_float;
1302             [o_timeslider setFloatValue: f_updated];
1303
1304             var_Get( p_input, "time", &time );
1305             i_seconds = time.i_time / 1000000;
1306
1307             o_time = [NSString stringWithFormat: @"%d:%02d:%02d",
1308                             (int) (i_seconds / (60 * 60)),
1309                             (int) (i_seconds / 60 % 60),
1310                             (int) (i_seconds % 60)];
1311             [o_timefield setStringValue: o_time];
1312             [[[self getControls] getFSPanel] setStreamPos: f_updated andTime: o_time];
1313             [o_embedded_window setTime: o_time position: f_updated];
1314         }
1315
1316         if( p_intf->p_sys->b_volume_update )
1317         {
1318             NSString *o_text;
1319             int i_volume_step = 0;
1320             o_text = [NSString stringWithFormat: _NS("Volume: %d%%"), i_lastShownVolume * 400 / AOUT_VOLUME_MAX];
1321             if( i_lastShownVolume != -1 )
1322             [self setScrollField:o_text stopAfter:1000000];
1323             i_volume_step = config_GetInt( p_intf->p_libvlc, "volume-step" );
1324             [o_volumeslider setFloatValue: (float)i_lastShownVolume / i_volume_step];
1325             [o_volumeslider setEnabled: TRUE];
1326             [[[self getControls] getFSPanel] setVolumeLevel: (float)i_lastShownVolume / i_volume_step];
1327             p_intf->p_sys->b_mute = ( i_lastShownVolume == 0 );
1328             p_intf->p_sys->b_volume_update = FALSE;
1329         }
1330
1331         /* Manage Playing status */
1332         var_Get( p_input, "state", &val );
1333         if( p_intf->p_sys->i_play_status != val.i_int )
1334         {
1335             p_intf->p_sys->i_play_status = val.i_int;
1336             [self playStatusUpdated: p_intf->p_sys->i_play_status];
1337             [o_embedded_window playStatusUpdated: p_intf->p_sys->i_play_status];
1338         }
1339         vlc_object_release( p_input );
1340     }
1341     else
1342     {
1343         p_intf->p_sys->i_play_status = END_S;
1344         p_intf->p_sys->b_intf_update = VLC_TRUE;
1345         [self playStatusUpdated: p_intf->p_sys->i_play_status];
1346         [o_embedded_window playStatusUpdated: p_intf->p_sys->i_play_status];
1347         [self setSubmenusEnabled: FALSE];
1348     }
1349     vlc_object_release( p_playlist );
1350
1351     [self updateMessageArray];
1352
1353     if( ((i_end_scroll != -1) && (mdate() > i_end_scroll)) || !p_input )
1354         [self resetScrollField];
1355
1356     [NSTimer scheduledTimerWithTimeInterval: 0.3
1357         target: self selector: @selector(manageIntf:)
1358         userInfo: nil repeats: FALSE];
1359 }
1360
1361 - (void)setupMenus
1362 {
1363     playlist_t * p_playlist = pl_Yield( p_intf );
1364     input_thread_t * p_input = p_playlist->p_input;
1365     if( p_input != NULL )
1366     {
1367         vlc_object_yield( p_input );
1368         [o_controls setupVarMenuItem: o_mi_program target: (vlc_object_t *)p_input
1369             var: "program" selector: @selector(toggleVar:)];
1370
1371         [o_controls setupVarMenuItem: o_mi_title target: (vlc_object_t *)p_input
1372             var: "title" selector: @selector(toggleVar:)];
1373
1374         [o_controls setupVarMenuItem: o_mi_chapter target: (vlc_object_t *)p_input
1375             var: "chapter" selector: @selector(toggleVar:)];
1376
1377         [o_controls setupVarMenuItem: o_mi_audiotrack target: (vlc_object_t *)p_input
1378             var: "audio-es" selector: @selector(toggleVar:)];
1379
1380         [o_controls setupVarMenuItem: o_mi_videotrack target: (vlc_object_t *)p_input
1381             var: "video-es" selector: @selector(toggleVar:)];
1382
1383         [o_controls setupVarMenuItem: o_mi_subtitle target: (vlc_object_t *)p_input
1384             var: "spu-es" selector: @selector(toggleVar:)];
1385
1386         aout_instance_t * p_aout = vlc_object_find( p_intf, VLC_OBJECT_AOUT,
1387                                                     FIND_ANYWHERE );
1388         if ( p_aout != NULL )
1389         {
1390             [o_controls setupVarMenuItem: o_mi_channels target: (vlc_object_t *)p_aout
1391                 var: "audio-channels" selector: @selector(toggleVar:)];
1392
1393             [o_controls setupVarMenuItem: o_mi_device target: (vlc_object_t *)p_aout
1394                 var: "audio-device" selector: @selector(toggleVar:)];
1395
1396             [o_controls setupVarMenuItem: o_mi_visual target: (vlc_object_t *)p_aout
1397                 var: "visual" selector: @selector(toggleVar:)];
1398             vlc_object_release( (vlc_object_t *)p_aout );
1399         }
1400
1401         vout_thread_t * p_vout = vlc_object_find( p_intf, VLC_OBJECT_VOUT,
1402                                                             FIND_ANYWHERE );
1403
1404         if ( p_vout != NULL )
1405         {
1406             vlc_object_t * p_dec_obj;
1407
1408             [o_controls setupVarMenuItem: o_mi_aspect_ratio target: (vlc_object_t *)p_vout
1409                 var: "aspect-ratio" selector: @selector(toggleVar:)];
1410
1411             [o_controls setupVarMenuItem: o_mi_crop target: (vlc_object_t *) p_vout
1412                 var: "crop" selector: @selector(toggleVar:)];
1413
1414             [o_controls setupVarMenuItem: o_mi_screen target: (vlc_object_t *)p_vout
1415                 var: "video-device" selector: @selector(toggleVar:)];
1416
1417             [o_controls setupVarMenuItem: o_mi_deinterlace target: (vlc_object_t *)p_vout
1418                 var: "deinterlace" selector: @selector(toggleVar:)];
1419
1420             p_dec_obj = (vlc_object_t *)vlc_object_find(
1421                                                  (vlc_object_t *)p_vout,
1422                                                  VLC_OBJECT_DECODER,
1423                                                  FIND_PARENT );
1424             if ( p_dec_obj != NULL )
1425             {
1426                [o_controls setupVarMenuItem: o_mi_ffmpeg_pp target:
1427                     (vlc_object_t *)p_dec_obj var:"ffmpeg-pp-q" selector:
1428                     @selector(toggleVar:)];
1429
1430                 vlc_object_release(p_dec_obj);
1431             }
1432             vlc_object_release( (vlc_object_t *)p_vout );
1433         }
1434         vlc_object_release( p_input );
1435     }
1436     vlc_object_release( p_playlist );
1437 }
1438
1439 - (void)refreshVoutDeviceMenu:(NSNotification *)o_notification
1440 {
1441     int x,y = 0;
1442     vout_thread_t * p_vout = vlc_object_find( p_intf, VLC_OBJECT_VOUT,
1443                                               FIND_ANYWHERE );
1444  
1445     if(! p_vout )
1446         return;
1447  
1448     /* clean the menu before adding new entries */
1449     if( [o_mi_screen hasSubmenu] )
1450     {
1451         y = [[o_mi_screen submenu] numberOfItems] - 1;
1452         msg_Dbg( VLCIntf, "%i items in submenu", y );
1453         while( x != y )
1454         {
1455             msg_Dbg( VLCIntf, "removing item %i of %i", x, y );
1456             [[o_mi_screen submenu] removeItemAtIndex: x];
1457             x++;
1458         }
1459     }
1460
1461     [o_controls setupVarMenuItem: o_mi_screen target: (vlc_object_t *)p_vout
1462                              var: "video-device" selector: @selector(toggleVar:)];
1463     vlc_object_release( (vlc_object_t *)p_vout );
1464 }
1465
1466 - (void)setScrollField:(NSString *)o_string stopAfter:(int)timeout
1467 {
1468     if( timeout != -1 )
1469         i_end_scroll = mdate() + timeout;
1470     else
1471         i_end_scroll = -1;
1472     [o_scrollfield setStringValue: o_string];
1473 }
1474
1475 - (void)resetScrollField
1476 {
1477     playlist_t * p_playlist = pl_Yield( p_intf );
1478     input_thread_t * p_input = p_playlist->p_input;
1479
1480     i_end_scroll = -1;
1481     if( p_input && !p_input->b_die )
1482     {
1483         NSString *o_temp;
1484         vlc_object_yield( p_input );
1485         o_temp = [NSString stringWithUTF8String:
1486                   p_playlist->status.p_item->p_input->psz_name];
1487         if( o_temp == NULL )
1488             o_temp = [NSString stringWithCString:
1489                     p_playlist->status.p_item->p_input->psz_name];
1490         [self setScrollField: o_temp stopAfter:-1];
1491         vlc_object_release( p_input );
1492         vlc_object_release( p_playlist );
1493         return;
1494     }
1495     vlc_object_release( p_playlist );
1496     [self setScrollField: _NS("VLC media player") stopAfter:-1];
1497 }
1498
1499 - (void)updateMessageArray
1500 {
1501     int i_start, i_stop;
1502
1503     vlc_mutex_lock( p_intf->p_sys->p_sub->p_lock );
1504     i_stop = *p_intf->p_sys->p_sub->pi_stop;
1505     vlc_mutex_unlock( p_intf->p_sys->p_sub->p_lock );
1506
1507     if( p_intf->p_sys->p_sub->i_start != i_stop )
1508     {
1509         NSColor *o_white = [NSColor whiteColor];
1510         NSColor *o_red = [NSColor redColor];
1511         NSColor *o_yellow = [NSColor yellowColor];
1512         NSColor *o_gray = [NSColor grayColor];
1513
1514         NSColor * pp_color[4] = { o_white, o_red, o_yellow, o_gray };
1515         static const char * ppsz_type[4] = { ": ", " error: ",
1516                                              " warning: ", " debug: " };
1517
1518         for( i_start = p_intf->p_sys->p_sub->i_start;
1519              i_start != i_stop;
1520              i_start = (i_start+1) % VLC_MSG_QSIZE )
1521         {
1522             NSString *o_msg;
1523             NSDictionary *o_attr;
1524             NSAttributedString *o_msg_color;
1525
1526             int i_type = p_intf->p_sys->p_sub->p_msg[i_start].i_type;
1527
1528             [o_msg_lock lock];
1529
1530             if( [o_msg_arr count] + 2 > 400 )
1531             {
1532                 unsigned rid[] = { 0, 1 };
1533                 [o_msg_arr removeObjectsFromIndices: (unsigned *)&rid
1534                            numIndices: sizeof(rid)/sizeof(rid[0])];
1535             }
1536
1537             o_attr = [NSDictionary dictionaryWithObject: o_gray
1538                 forKey: NSForegroundColorAttributeName];
1539             o_msg = [NSString stringWithFormat: @"%s%s",
1540                 p_intf->p_sys->p_sub->p_msg[i_start].psz_module,
1541                 ppsz_type[i_type]];
1542             o_msg_color = [[NSAttributedString alloc]
1543                 initWithString: o_msg attributes: o_attr];
1544             [o_msg_arr addObject: [o_msg_color autorelease]];
1545
1546             o_attr = [NSDictionary dictionaryWithObject: pp_color[i_type]
1547                 forKey: NSForegroundColorAttributeName];
1548             o_msg = [NSString stringWithFormat: @"%s\n",
1549                 p_intf->p_sys->p_sub->p_msg[i_start].psz_msg];
1550             o_msg_color = [[NSAttributedString alloc]
1551                 initWithString: o_msg attributes: o_attr];
1552             [o_msg_arr addObject: [o_msg_color autorelease]];
1553
1554             [o_msg_lock unlock];
1555         }
1556
1557         vlc_mutex_lock( p_intf->p_sys->p_sub->p_lock );
1558         p_intf->p_sys->p_sub->i_start = i_start;
1559         vlc_mutex_unlock( p_intf->p_sys->p_sub->p_lock );
1560     }
1561 }
1562
1563 - (void)playStatusUpdated:(int)i_status
1564 {
1565     if( i_status == PLAYING_S )
1566     {
1567         [[[self getControls] getFSPanel] setPause];
1568         [o_btn_play setImage: o_img_pause];
1569         [o_btn_play setAlternateImage: o_img_pause_pressed];
1570         [o_btn_play setToolTip: _NS("Pause")];
1571         [o_mi_play setTitle: _NS("Pause")];
1572         [o_dmi_play setTitle: _NS("Pause")];
1573         [o_vmi_play setTitle: _NS("Pause")];
1574     }
1575     else
1576     {
1577         [[[self getControls] getFSPanel] setPlay];
1578         [o_btn_play setImage: o_img_play];
1579         [o_btn_play setAlternateImage: o_img_play_pressed];
1580         [o_btn_play setToolTip: _NS("Play")];
1581         [o_mi_play setTitle: _NS("Play")];
1582         [o_dmi_play setTitle: _NS("Play")];
1583         [o_vmi_play setTitle: _NS("Play")];
1584     }
1585 }
1586
1587 - (void)setSubmenusEnabled:(BOOL)b_enabled
1588 {
1589     [o_mi_program setEnabled: b_enabled];
1590     [o_mi_title setEnabled: b_enabled];
1591     [o_mi_chapter setEnabled: b_enabled];
1592     [o_mi_audiotrack setEnabled: b_enabled];
1593     [o_mi_visual setEnabled: b_enabled];
1594     [o_mi_videotrack setEnabled: b_enabled];
1595     [o_mi_subtitle setEnabled: b_enabled];
1596     [o_mi_channels setEnabled: b_enabled];
1597     [o_mi_deinterlace setEnabled: b_enabled];
1598     [o_mi_ffmpeg_pp setEnabled: b_enabled];
1599     [o_mi_device setEnabled: b_enabled];
1600     [o_mi_screen setEnabled: b_enabled];
1601     [o_mi_aspect_ratio setEnabled: b_enabled];
1602     [o_mi_crop setEnabled: b_enabled];
1603 }
1604
1605 - (void)manageVolumeSlider
1606 {
1607     audio_volume_t i_volume;
1608     aout_VolumeGet( p_intf, &i_volume );
1609
1610     if( i_volume != i_lastShownVolume )
1611     {
1612         i_lastShownVolume = i_volume;
1613         p_intf->p_sys->b_volume_update = TRUE;
1614     }
1615 }
1616
1617 - (IBAction)timesliderUpdate:(id)sender
1618 {
1619     float f_updated;
1620     playlist_t * p_playlist;
1621     input_thread_t * p_input;
1622
1623     switch( [[NSApp currentEvent] type] )
1624     {
1625         case NSLeftMouseUp:
1626         case NSLeftMouseDown:
1627         case NSLeftMouseDragged:
1628             f_updated = [sender floatValue];
1629             break;
1630
1631         default:
1632             return;
1633     }
1634     p_playlist = pl_Yield( p_intf );
1635     p_input = p_playlist->p_input;
1636     if( p_input != NULL )
1637     {
1638         vlc_value_t time;
1639         vlc_value_t pos;
1640         mtime_t i_seconds;
1641         NSString * o_time;
1642         vlc_object_yield( p_input );
1643
1644         pos.f_float = f_updated / 10000.;
1645         var_Set( p_input, "position", pos );
1646         [o_timeslider setFloatValue: f_updated];
1647
1648         var_Get( p_input, "time", &time );
1649         i_seconds = time.i_time / 1000000;
1650
1651         o_time = [NSString stringWithFormat: @"%d:%02d:%02d",
1652                         (int) (i_seconds / (60 * 60)),
1653                         (int) (i_seconds / 60 % 60),
1654                         (int) (i_seconds % 60)];
1655         [o_timefield setStringValue: o_time];
1656         [[[self getControls] getFSPanel] setStreamPos: f_updated andTime: o_time];
1657         [o_embedded_window setTime: o_time position: f_updated];
1658         vlc_object_release( p_input );
1659     }
1660     vlc_object_release( p_playlist );
1661 }
1662
1663 - (void)applicationWillTerminate:(NSNotification *)notification
1664 {
1665     playlist_t * p_playlist;
1666     vout_thread_t * p_vout;
1667     int returnedValue = 0;
1668  
1669     /* Stop playback */
1670     p_playlist = pl_Yield( p_intf );
1671     playlist_Stop( p_playlist );
1672     vlc_object_release( p_playlist );
1673
1674     /* make sure that the current volume is saved */
1675     config_PutInt( p_intf->p_libvlc, "volume", i_lastShownVolume );
1676     returnedValue = config_SaveConfigFile( p_intf->p_libvlc, "main" );
1677     if( returnedValue != 0 )
1678         msg_Err( p_intf,
1679                  "error while saving volume in osx's terminate method (%i)",
1680                  returnedValue );
1681
1682     /* save the prefs if they were changed in the extended panel */
1683     if (o_extended && [o_extended getConfigChanged])
1684     {
1685         [o_extended savePrefs];
1686     }
1687  
1688     p_intf->b_interaction = VLC_FALSE;
1689     var_DelCallback( p_intf, "interaction", InteractCallback, self );
1690
1691     /* remove global observer watching for vout device changes correctly */
1692     [[NSNotificationCenter defaultCenter] removeObserver: self
1693                                                     name: NSApplicationDidChangeScreenParametersNotification
1694                                                   object: nil];
1695
1696     /* release some other objects here, because it isn't sure whether dealloc
1697      * will be called later on -- FK (10/6/05) */
1698     if( nib_about_loaded && o_about )
1699         [o_about release];
1700  
1701     if( nib_open_loaded && o_open )
1702         [o_open release];
1703  
1704     if( nib_extended_loaded && o_extended )
1705     {
1706         [o_extended collapsAll];
1707         [o_extended release];
1708     }
1709  
1710     if( nib_bookmarks_loaded && o_bookmarks )
1711         [o_bookmarks release];
1712
1713     if( nib_wizard_loaded && o_wizard )
1714         [o_wizard release];
1715  
1716     if( o_embedded_list != nil )
1717         [o_embedded_list release];
1718
1719     if( o_interaction_list != nil )
1720         [o_interaction_list release];
1721
1722     if( o_eyetv != nil )
1723         [o_eyetv release];
1724
1725     if( o_img_pause_pressed != nil )
1726     {
1727         [o_img_pause_pressed release];
1728         o_img_pause_pressed = nil;
1729     }
1730
1731     if( o_img_pause_pressed != nil )
1732     {
1733         [o_img_pause_pressed release];
1734         o_img_pause_pressed = nil;
1735     }
1736
1737     if( o_img_pause != nil )
1738     {
1739         [o_img_pause release];
1740         o_img_pause = nil;
1741     }
1742
1743     if( o_img_play != nil )
1744     {
1745         [o_img_play release];
1746         o_img_play = nil;
1747     }
1748
1749     if( o_msg_arr != nil )
1750     {
1751         [o_msg_arr removeAllObjects];
1752         [o_msg_arr release];
1753         o_msg_arr = nil;
1754     }
1755
1756     if( o_msg_lock != nil )
1757     {
1758         [o_msg_lock release];
1759         o_msg_lock = nil;
1760     }
1761
1762     /* write cached user defaults to disk */
1763     [[NSUserDefaults standardUserDefaults] synchronize];
1764
1765     vlc_object_kill( p_intf );
1766
1767     /* Go back to Run() and make libvlc exit properly */
1768     longjmp( jmpbuffer, 1 );
1769     /* not reached */
1770 }
1771
1772
1773 - (IBAction)clearRecentItems:(id)sender
1774 {
1775     [[NSDocumentController sharedDocumentController]
1776                           clearRecentDocuments: nil];
1777 }
1778
1779 - (void)openRecentItem:(id)sender
1780 {
1781     [self application: nil openFile: [sender title]];
1782 }
1783
1784 - (IBAction)intfOpenFile:(id)sender
1785 {
1786     if ( !nib_open_loaded )
1787     {
1788         nib_open_loaded = [NSBundle loadNibNamed:@"Open" owner:self];
1789         [o_open awakeFromNib];
1790         [o_open openFile];
1791     } else {
1792         [o_open openFile];
1793     }
1794 }
1795
1796 - (IBAction)intfOpenFileGeneric:(id)sender
1797 {
1798     if ( !nib_open_loaded )
1799     {
1800         nib_open_loaded = [NSBundle loadNibNamed:@"Open" owner:self];
1801         [o_open awakeFromNib];
1802         [o_open openFileGeneric];
1803     } else {
1804         [o_open openFileGeneric];
1805     }
1806 }
1807
1808 - (IBAction)intfOpenDisc:(id)sender
1809 {
1810     if ( !nib_open_loaded )
1811     {
1812         nib_open_loaded = [NSBundle loadNibNamed:@"Open" owner:self];
1813         [o_open awakeFromNib];
1814         [o_open openDisc];
1815     } else {
1816         [o_open openDisc];
1817     }
1818 }
1819
1820 - (IBAction)intfOpenNet:(id)sender
1821 {
1822     if ( !nib_open_loaded )
1823     {
1824         nib_open_loaded = [NSBundle loadNibNamed:@"Open" owner:self];
1825         [o_open awakeFromNib];
1826         [o_open openNet];
1827     } else {
1828         [o_open openNet];
1829     }
1830 }
1831
1832 - (IBAction)showWizard:(id)sender
1833 {
1834     if ( !nib_wizard_loaded )
1835     {
1836         nib_wizard_loaded = [NSBundle loadNibNamed:@"Wizard" owner:self];
1837         [o_wizard initStrings];
1838         [o_wizard resetWizard];
1839         [o_wizard showWizard];
1840     } else {
1841         [o_wizard resetWizard];
1842         [o_wizard showWizard];
1843     }
1844 }
1845
1846 - (IBAction)showExtended:(id)sender
1847 {
1848     if ( o_extended == nil )
1849     {
1850         o_extended = [[VLCExtended alloc] init];
1851     }
1852     if ( !nib_extended_loaded )
1853     {
1854         nib_extended_loaded = [NSBundle loadNibNamed:@"Extended" owner:self];
1855         [o_extended initStrings];
1856         [o_extended showPanel];
1857     } else {
1858         [o_extended showPanel];
1859     }
1860 }
1861
1862 - (IBAction)showSFilters:(id)sender
1863 {
1864     if ( o_sfilters == nil )
1865     {
1866         o_sfilters = [[VLCsFilters alloc] init];
1867     }
1868     if ( !nib_sfilters_loaded )
1869     {
1870         nib_sfilters_loaded = [NSBundle loadNibNamed:@"SFilters" owner:self];
1871         [o_sfilters initStrings];
1872         [o_sfilters showAsPanel];
1873     } else {
1874         [o_sfilters showAsPanel];
1875     }
1876 }
1877
1878 - (IBAction)showBookmarks:(id)sender
1879 {
1880     /* we need the wizard-nib for the bookmarks's extract functionality */
1881     if ( !nib_wizard_loaded )
1882     {
1883         nib_wizard_loaded = [NSBundle loadNibNamed:@"Wizard" owner:self];
1884         [o_wizard initStrings];
1885     }
1886  
1887     if ( !nib_bookmarks_loaded )
1888     {
1889         nib_bookmarks_loaded = [NSBundle loadNibNamed:@"Bookmarks" owner:self];
1890         [o_bookmarks showBookmarks];
1891     } else {
1892         [o_bookmarks showBookmarks];
1893     }
1894 }
1895
1896 - (IBAction)viewAbout:(id)sender
1897 {
1898     if( !nib_about_loaded )
1899     {
1900         nib_about_loaded = [NSBundle loadNibNamed:@"About" owner:self];
1901         [o_about showAbout];
1902     } else {
1903         [o_about showAbout];
1904     }
1905 }
1906
1907 - (IBAction)viewPreferences:(id)sender
1908 {
1909 /* GRUIIIIIIIK */
1910     if( o_prefs == nil )
1911         o_prefs = [[VLCPrefs alloc] init];
1912     [o_prefs showPrefs];
1913 }
1914
1915 - (IBAction)checkForUpdate:(id)sender
1916 {
1917     if( !nib_update_loaded )
1918         nib_update_loaded = [NSBundle loadNibNamed:@"Update" owner:self];
1919
1920     [o_update showUpdateWindow];
1921 }
1922
1923 - (IBAction)viewHelp:(id)sender
1924 {
1925     if( !nib_about_loaded )
1926     {
1927         nib_about_loaded = [NSBundle loadNibNamed:@"About" owner:self];
1928         [o_about showHelp];
1929     }
1930     else
1931         [o_about showHelp];
1932 }
1933
1934 - (IBAction)openReadMe:(id)sender
1935 {
1936     NSString * o_path = [[NSBundle mainBundle]
1937         pathForResource: @"README.MacOSX" ofType: @"rtf"];
1938
1939     [[NSWorkspace sharedWorkspace] openFile: o_path
1940                                    withApplication: @"TextEdit"];
1941 }
1942
1943 - (IBAction)openDocumentation:(id)sender
1944 {
1945     NSURL * o_url = [NSURL URLWithString:
1946         @"http://www.videolan.org/doc/"];
1947
1948     [[NSWorkspace sharedWorkspace] openURL: o_url];
1949 }
1950
1951 - (IBAction)openWebsite:(id)sender
1952 {
1953     NSURL * o_url = [NSURL URLWithString: @"http://www.videolan.org/"];
1954
1955     [[NSWorkspace sharedWorkspace] openURL: o_url];
1956 }
1957
1958 - (IBAction)openForum:(id)sender
1959 {
1960     NSURL * o_url = [NSURL URLWithString: @"http://forum.videolan.org/"];
1961
1962     [[NSWorkspace sharedWorkspace] openURL: o_url];
1963 }
1964
1965 - (IBAction)openDonate:(id)sender
1966 {
1967     NSURL * o_url = [NSURL URLWithString: @"http://www.videolan.org/contribute.html#paypal"];
1968
1969     [[NSWorkspace sharedWorkspace] openURL: o_url];
1970 }
1971
1972 - (IBAction)openCrashLog:(id)sender
1973 {
1974     NSString * o_path = [@"~/Library/Logs/CrashReporter/VLC.crash.log"
1975                                     stringByExpandingTildeInPath];
1976
1977
1978     if ( [[NSFileManager defaultManager] fileExistsAtPath: o_path ] )
1979     {
1980         [[NSWorkspace sharedWorkspace] openFile: o_path
1981                                     withApplication: @"Console"];
1982     }
1983     else
1984     {
1985         NSBeginInformationalAlertSheet(_NS("No CrashLog found"), @"Continue", nil, nil, o_msgs_panel, self, NULL, NULL, nil, _NS("Couldn't find any trace of a previous crash.") );
1986
1987     }
1988 }
1989
1990 - (IBAction)viewErrorsAndWarnings:(id)sender
1991 {
1992     [[[self getInteractionList] getErrorPanel] showPanel];
1993 }
1994
1995 - (IBAction)showMessagesPanel:(id)sender
1996 {
1997     [o_msgs_panel makeKeyAndOrderFront: sender];
1998 }
1999
2000 - (void)windowDidBecomeKey:(NSNotification *)o_notification
2001 {
2002     if( [o_notification object] == o_msgs_panel )
2003     {
2004         id o_msg;
2005         NSEnumerator * o_enum;
2006
2007         [o_messages setString: @""];
2008
2009         [o_msg_lock lock];
2010
2011         o_enum = [o_msg_arr objectEnumerator];
2012
2013         while( ( o_msg = [o_enum nextObject] ) != nil )
2014         {
2015             [o_messages insertText: o_msg];
2016         }
2017
2018         [o_msg_lock unlock];
2019     }
2020 }
2021
2022 - (IBAction)togglePlaylist:(id)sender
2023 {
2024     NSRect o_rect = [o_window frame];
2025     /*First, check if the playlist is visible*/
2026     if( o_rect.size.height <= 200 )
2027     {
2028         o_restore_rect = o_rect;
2029         b_restore_size = true;
2030         b_small_window = YES; /* we know we are small, make sure this is actually set (see case below) */
2031         /* make large */
2032         if ( o_size_with_playlist.height > 200 )
2033         {
2034             o_rect.size.height = o_size_with_playlist.height;
2035         } else {
2036             o_rect.size.height = 500;
2037         }
2038  
2039         if ( o_size_with_playlist.width > [o_window minSize].width )
2040         {
2041             o_rect.size.width = o_size_with_playlist.width;
2042         } else {
2043             o_rect.size.width = 500;
2044         }
2045  
2046         o_rect.size.height = (o_size_with_playlist.height > 200) ?
2047             o_size_with_playlist.height : 500;
2048         o_rect.origin.x = [o_window frame].origin.x;
2049         o_rect.origin.y = [o_window frame].origin.y - o_rect.size.height +
2050                                                 [o_window minSize].height;
2051
2052         NSRect screenRect = [[o_window screen] visibleFrame];
2053         if ( !NSContainsRect( screenRect, o_rect ) ) {
2054             if ( NSMaxX(o_rect) > NSMaxX(screenRect) )
2055                 o_rect.origin.x = ( NSMaxX(screenRect) - o_rect.size.width );
2056             if ( NSMinY(o_rect) < NSMinY(screenRect) )
2057                 o_rect.origin.y = ( NSMinY(screenRect) );
2058         }
2059
2060         [o_btn_playlist setState: YES];
2061     }
2062     else
2063     {
2064         NSSize curSize = o_rect.size;
2065         /* make small */
2066         o_rect.size.height = [o_window minSize].height;
2067         o_rect.size.width = [o_window minSize].width;
2068         o_rect.origin.x = [o_window frame].origin.x;
2069         /* Calculate the position of the lower right corner after resize */
2070         o_rect.origin.y = [o_window frame].origin.y +
2071             [o_window frame].size.height - [o_window minSize].height;
2072
2073         if ( b_restore_size )
2074             o_rect = o_restore_rect;
2075
2076         [o_playlist_view setAutoresizesSubviews: NO];
2077         [o_playlist_view removeFromSuperview];
2078         [o_btn_playlist setState: NO];
2079         b_small_window = NO; /* we aren't small here just yet. we are doing an animated resize after this */
2080     }
2081
2082     [o_window setFrame: o_rect display:YES animate: YES];
2083 }
2084
2085 - (void)updateTogglePlaylistState
2086 {
2087     if( [o_window frame].size.height <= 200 )
2088     {
2089         [o_btn_playlist setState: NO];
2090     }
2091     else
2092     {
2093         [o_btn_playlist setState: YES];
2094     }
2095 }
2096
2097 - (NSSize)windowWillResize:(NSWindow *)sender toSize:(NSSize)proposedFrameSize
2098 {
2099     /* Not triggered on a window resize or maxification of the window. only by window mouse dragging resize */
2100
2101    /*Stores the size the controller one resize, to be able to restore it when
2102      toggling the playlist*/
2103     o_size_with_playlist = proposedFrameSize;
2104
2105     if( proposedFrameSize.height <= 200 )
2106     {
2107         if( b_small_window == NO )
2108         {
2109             /* if large and going to small then hide */
2110             b_small_window = YES;
2111             [o_playlist_view setAutoresizesSubviews: NO];
2112             [o_playlist_view removeFromSuperview];
2113         }
2114         return NSMakeSize( proposedFrameSize.width, [o_window minSize].height);
2115     }
2116     return proposedFrameSize;
2117 }
2118
2119 - (void)windowDidMove:(NSNotification *)notif
2120 {
2121     b_restore_size = false;
2122 }
2123
2124 - (void)windowDidResize:(NSNotification *)notif
2125 {
2126     if( [o_window frame].size.height > 200 && b_small_window )
2127     {
2128         /* If large and coming from small then show */
2129         [o_playlist_view setAutoresizesSubviews: YES];
2130         [o_playlist_view setFrame: NSMakeRect( 10, 10, [o_window frame].size.width - 20, [o_window frame].size.height - [o_window minSize].height - 10 )];
2131         [o_playlist_view setNeedsDisplay:YES];
2132         [[o_window contentView] addSubview: o_playlist_view];
2133         b_small_window = NO;
2134     }
2135     [self updateTogglePlaylistState];
2136 }
2137
2138 @end
2139
2140 @implementation VLCMain (NSMenuValidation)
2141
2142 - (BOOL)validateMenuItem:(NSMenuItem *)o_mi
2143 {
2144     NSString *o_title = [o_mi title];
2145     BOOL bEnabled = TRUE;
2146
2147     /* Recent Items Menu */
2148     if( [o_title isEqualToString: _NS("Clear Menu")] )
2149     {
2150         NSMenu * o_menu = [o_mi_open_recent submenu];
2151         int i_nb_items = [o_menu numberOfItems];
2152         NSArray * o_docs = [[NSDocumentController sharedDocumentController]
2153                                                        recentDocumentURLs];
2154         UInt32 i_nb_docs = [o_docs count];
2155
2156         if( i_nb_items > 1 )
2157         {
2158             while( --i_nb_items )
2159             {
2160                 [o_menu removeItemAtIndex: 0];
2161             }
2162         }
2163
2164         if( i_nb_docs > 0 )
2165         {
2166             NSURL * o_url;
2167             NSString * o_doc;
2168
2169             [o_menu insertItem: [NSMenuItem separatorItem] atIndex: 0];
2170
2171             while( TRUE )
2172             {
2173                 i_nb_docs--;
2174
2175                 o_url = [o_docs objectAtIndex: i_nb_docs];
2176
2177                 if( [o_url isFileURL] )
2178                 {
2179                     o_doc = [o_url path];
2180                 }
2181                 else
2182                 {
2183                     o_doc = [o_url absoluteString];
2184                 }
2185
2186                 [o_menu insertItemWithTitle: o_doc
2187                     action: @selector(openRecentItem:)
2188                     keyEquivalent: @"" atIndex: 0];
2189
2190                 if( i_nb_docs == 0 )
2191                 {
2192                     break;
2193                 }
2194             }
2195         }
2196         else
2197         {
2198             bEnabled = FALSE;
2199         }
2200     }
2201     return( bEnabled );
2202 }
2203
2204 @end
2205
2206 @implementation VLCMain (Internal)
2207
2208 - (void)handlePortMessage:(NSPortMessage *)o_msg
2209 {
2210     id ** val;
2211     NSData * o_data;
2212     NSValue * o_value;
2213     NSInvocation * o_inv;
2214     NSConditionLock * o_lock;
2215
2216     o_data = [[o_msg components] lastObject];
2217     o_inv = *((NSInvocation **)[o_data bytes]);
2218     [o_inv getArgument: &o_value atIndex: 2];
2219     val = (id **)[o_value pointerValue];
2220     [o_inv setArgument: val[1] atIndex: 2];
2221     o_lock = *(val[0]);
2222
2223     [o_lock lock];
2224     [o_inv invoke];
2225     [o_lock unlockWithCondition: 1];
2226 }
2227
2228 @end