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