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