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