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