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