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