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