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