]> git.sesse.net Git - vlc/blob - modules/gui/macosx/intf.m
macosx: Properly relaunch VLC when asked for.
[vlc] / modules / gui / macosx / intf.m
1 /*****************************************************************************
2  * intf.m: MacOS X interface module
3  *****************************************************************************
4  * Copyright (C) 2002-2008 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 Paul Kühne <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 #include <spawn.h>
35
36 #ifdef HAVE_CONFIG_H
37 #   include "config.h"
38 #endif
39
40 #import "intf.h"
41 #import "fspanel.h"
42 #import "vout.h"
43 #import "prefs.h"
44 #import "playlist.h"
45 #import "playlistinfo.h"
46 #import "controls.h"
47 #import "about.h"
48 #import "open.h"
49 #import "wizard.h"
50 #import "extended.h"
51 #import "bookmarks.h"
52 #import "interaction.h"
53 #import "embeddedwindow.h"
54 #import "update.h"
55 #import "AppleRemote.h"
56 #import "eyetv.h"
57 #import "simple_prefs.h"
58
59 #import <vlc_input.h>
60 #import <vlc_interface.h>
61 #import <AddressBook/AddressBook.h>
62
63 /*****************************************************************************
64  * Local prototypes.
65  *****************************************************************************/
66 static void Run ( intf_thread_t *p_intf );
67
68 static void * ManageThread( void *user_data );
69
70 static unichar VLCKeyToCocoa( unsigned int i_key );
71 static unsigned int VLCModifiersToCocoa( unsigned int i_key );
72
73 #pragma mark -
74 #pragma mark VLC Interface Object Callbacks
75
76 /*****************************************************************************
77  * OpenIntf: initialize interface
78  *****************************************************************************/
79 int OpenIntf ( vlc_object_t *p_this )
80 {
81     intf_thread_t *p_intf = (intf_thread_t*) p_this;
82
83     p_intf->p_sys = malloc( sizeof( intf_sys_t ) );
84     if( p_intf->p_sys == NULL )
85     {
86         return( 1 );
87     }
88
89     memset( p_intf->p_sys, 0, sizeof( *p_intf->p_sys ) );
90
91     p_intf->p_sys->o_pool = [[NSAutoreleasePool alloc] init];
92
93     p_intf->p_sys->p_sub = msg_Subscribe( p_intf );
94     p_intf->pf_run = Run;
95     p_intf->b_should_run_on_first_thread = true;
96
97     return( 0 );
98 }
99
100 /*****************************************************************************
101  * CloseIntf: destroy interface
102  *****************************************************************************/
103 void CloseIntf ( vlc_object_t *p_this )
104 {
105     intf_thread_t *p_intf = (intf_thread_t*) p_this;
106
107     msg_Unsubscribe( p_intf, p_intf->p_sys->p_sub );
108
109     [p_intf->p_sys->o_pool release];
110
111     free( p_intf->p_sys );
112 }
113
114 /*****************************************************************************
115  * Run: main loop
116  *****************************************************************************/
117 jmp_buf jmpbuffer;
118
119 static void Run( intf_thread_t *p_intf )
120 {
121     sigset_t set;
122
123     /* Do it again - for some unknown reason, vlc_thread_create() often
124      * fails to go to real-time priority with the first launched thread
125      * (???) --Meuuh */
126     vlc_thread_set_priority( p_intf, VLC_THREAD_PRIORITY_LOW );
127
128     /* Make sure the "force quit" menu item does quit instantly.
129      * VLC overrides SIGTERM which is sent by the "force quit"
130      * menu item to make sure deamon mode quits gracefully, so
131      * we un-override SIGTERM here. */
132     sigemptyset( &set );
133     sigaddset( &set, SIGTERM );
134     pthread_sigmask( SIG_UNBLOCK, &set, NULL );
135
136     NSAutoreleasePool * o_pool = [[NSAutoreleasePool alloc] init];
137
138     /* Install a jmpbuffer to where we can go back before the NSApp exit
139      * see applicationWillTerminate: */
140     [NSApplication sharedApplication];
141
142     [[VLCMain sharedInstance] setIntf: p_intf];
143     [NSBundle loadNibNamed: @"MainMenu" owner: NSApp];
144
145     /* Install a jmpbuffer to where we can go back before the NSApp exit
146      * see applicationWillTerminate: */
147     if(setjmp(jmpbuffer) == 0)
148         [NSApp run];
149
150     [o_pool release];
151 }
152
153 #pragma mark -
154 #pragma mark Variables Callback
155
156 /*****************************************************************************
157  * playlistChanged: Callback triggered by the intf-change playlist
158  * variable, to let the intf update the playlist.
159  *****************************************************************************/
160 static int PlaylistChanged( vlc_object_t *p_this, const char *psz_variable,
161                      vlc_value_t old_val, vlc_value_t new_val, void *param )
162 {
163     intf_thread_t * p_intf = VLCIntf;
164     p_intf->p_sys->b_intf_update = true;
165     p_intf->p_sys->b_playlist_update = true;
166     p_intf->p_sys->b_playmode_update = true;
167     p_intf->p_sys->b_current_title_update = true;
168     return VLC_SUCCESS;
169 }
170
171 /*****************************************************************************
172  * ShowController: Callback triggered by the show-intf playlist variable
173  * through the ShowIntf-control-intf, to let us show the controller-win;
174  * usually when in fullscreen-mode
175  *****************************************************************************/
176 static int ShowController( vlc_object_t *p_this, const char *psz_variable,
177                      vlc_value_t old_val, vlc_value_t new_val, void *param )
178 {
179     intf_thread_t * p_intf = VLCIntf;
180     p_intf->p_sys->b_intf_show = true;
181     return VLC_SUCCESS;
182 }
183
184 /*****************************************************************************
185  * FullscreenChanged: Callback triggered by the fullscreen-change playlist
186  * variable, to let the intf update the controller.
187  *****************************************************************************/
188 static int FullscreenChanged( 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_fullscreen_update = true;
193     return VLC_SUCCESS;
194 }
195
196 /*****************************************************************************
197  * InteractCallback: Callback triggered by the interaction
198  * variable, to let the intf display error and interaction dialogs
199  *****************************************************************************/
200 static int InteractCallback( vlc_object_t *p_this, const char *psz_variable,
201                      vlc_value_t old_val, vlc_value_t new_val, void *param )
202 {
203     NSAutoreleasePool * o_pool = [[NSAutoreleasePool alloc] init];
204     VLCMain *interface = (VLCMain *)param;
205     interaction_dialog_t *p_dialog = (interaction_dialog_t *)(new_val.p_address);
206     NSValue *o_value = [NSValue valueWithPointer:p_dialog];
207  
208     [[NSNotificationCenter defaultCenter] postNotificationName: @"VLCNewInteractionEventNotification" object:[interface getInteractionList]
209      userInfo:[NSDictionary dictionaryWithObject:o_value forKey:@"VLCDialogPointer"]];
210  
211     [o_pool release];
212     return VLC_SUCCESS;
213 }
214
215 #pragma mark -
216 #pragma mark Private
217
218 @interface VLCMain ()
219 - (void)_removeOldPreferences;
220 @end
221
222 /*****************************************************************************
223  * VLCMain implementation
224  *****************************************************************************/
225 @implementation VLCMain
226
227 #pragma mark -
228 #pragma mark Initialization
229
230 static VLCMain *_o_sharedMainInstance = nil;
231
232 + (VLCMain *)sharedInstance
233 {
234     return _o_sharedMainInstance ? _o_sharedMainInstance : [[self alloc] init];
235 }
236
237 - (id)init
238 {
239     if( _o_sharedMainInstance) 
240     {
241         [self dealloc];
242         return _o_sharedMainInstance;
243     } 
244     else
245         _o_sharedMainInstance = [super init];
246
247     o_about = [[VLAboutBox alloc] init];
248     o_prefs = nil;
249     o_open = [[VLCOpen alloc] init];
250     o_wizard = [[VLCWizard alloc] init];
251     o_extended = nil;
252     o_bookmarks = [[VLCBookmarks alloc] init];
253     o_embedded_list = [[VLCEmbeddedList alloc] init];
254     o_interaction_list = [[VLCInteractionList alloc] init];
255     o_info = [[VLCInfo alloc] init];
256 #ifdef UPDATE_CHECK
257     o_update = [[VLCUpdate alloc] init];
258 #endif
259
260     i_lastShownVolume = -1;
261
262     o_remote = [[AppleRemote alloc] init];
263     [o_remote setClickCountEnabledButtons: kRemoteButtonPlay];
264     [o_remote setDelegate: _o_sharedMainInstance];
265
266     o_eyetv = [[VLCEyeTVController alloc] init];
267
268     /* announce our launch to a potential eyetv plugin */
269     [[NSDistributedNotificationCenter defaultCenter] postNotificationName: @"VLCOSXGUIInit"
270                                                                    object: @"VLCEyeTVSupport"
271                                                                  userInfo: NULL
272                                                        deliverImmediately: YES];
273
274     return _o_sharedMainInstance;
275 }
276
277 - (void)setIntf: (intf_thread_t *)p_mainintf {
278     p_intf = p_mainintf;
279 }
280
281 - (intf_thread_t *)getIntf {
282     return p_intf;
283 }
284
285 - (void)awakeFromNib
286 {
287     unsigned int i_key = 0;
288     playlist_t *p_playlist;
289     vlc_value_t val;
290
291     /* Check if we already did this once. Opening the other nibs calls it too, because VLCMain is the owner */
292     if( nib_main_loaded ) return;
293
294     [self initStrings];
295
296     [o_window setExcludedFromWindowsMenu: YES];
297     [o_msgs_panel setExcludedFromWindowsMenu: YES];
298     [o_msgs_panel setDelegate: self];
299
300     /* In code and not in Nib for 10.4 compat */
301     NSToolbar * toolbar = [[[NSToolbar alloc] initWithIdentifier:@"mainControllerToolbar"] autorelease];
302     [toolbar setDelegate:self];
303     [toolbar setShowsBaselineSeparator:NO];
304     [toolbar setAllowsUserCustomization:NO];
305     [toolbar setDisplayMode:NSToolbarDisplayModeIconOnly];
306     [toolbar setAutosavesConfiguration:YES];
307     [o_window setToolbar:toolbar];
308
309     i_key = config_GetInt( p_intf, "key-quit" );
310     [o_mi_quit setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
311     [o_mi_quit setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
312     i_key = config_GetInt( p_intf, "key-play-pause" );
313     [o_mi_play setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
314     [o_mi_play setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
315     i_key = config_GetInt( p_intf, "key-stop" );
316     [o_mi_stop setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
317     [o_mi_stop setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
318     i_key = config_GetInt( p_intf, "key-faster" );
319     [o_mi_faster setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
320     [o_mi_faster setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
321     i_key = config_GetInt( p_intf, "key-slower" );
322     [o_mi_slower setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
323     [o_mi_slower setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
324     i_key = config_GetInt( p_intf, "key-prev" );
325     [o_mi_previous setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
326     [o_mi_previous setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
327     i_key = config_GetInt( p_intf, "key-next" );
328     [o_mi_next setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
329     [o_mi_next setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
330     i_key = config_GetInt( p_intf, "key-jump+short" );
331     [o_mi_fwd setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
332     [o_mi_fwd setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
333     i_key = config_GetInt( p_intf, "key-jump-short" );
334     [o_mi_bwd setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
335     [o_mi_bwd setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
336     i_key = config_GetInt( p_intf, "key-jump+medium" );
337     [o_mi_fwd1m setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
338     [o_mi_fwd1m setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
339     i_key = config_GetInt( p_intf, "key-jump-medium" );
340     [o_mi_bwd1m setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
341     [o_mi_bwd1m setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
342     i_key = config_GetInt( p_intf, "key-jump+long" );
343     [o_mi_fwd5m setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
344     [o_mi_fwd5m setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
345     i_key = config_GetInt( p_intf, "key-jump-long" );
346     [o_mi_bwd5m setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
347     [o_mi_bwd5m setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
348     i_key = config_GetInt( p_intf, "key-vol-up" );
349     [o_mi_vol_up setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
350     [o_mi_vol_up setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
351     i_key = config_GetInt( p_intf, "key-vol-down" );
352     [o_mi_vol_down setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
353     [o_mi_vol_down setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
354     i_key = config_GetInt( p_intf, "key-vol-mute" );
355     [o_mi_mute setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
356     [o_mi_mute setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
357     i_key = config_GetInt( p_intf, "key-fullscreen" );
358     [o_mi_fullscreen setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
359     [o_mi_fullscreen setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
360     i_key = config_GetInt( p_intf, "key-snapshot" );
361     [o_mi_snapshot setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
362     [o_mi_snapshot setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
363
364     var_Create( p_intf, "intf-change", VLC_VAR_BOOL );
365
366     [self setSubmenusEnabled: FALSE];
367     [o_volumeslider setEnabled: YES];
368     [self manageVolumeSlider];
369     [o_window setDelegate: self];
370  
371     b_restore_size = false;
372
373     // Set that here as IB seems to be buggy
374     [o_window setContentMinSize:NSMakeSize(338., 30.)];
375
376     if( [o_window contentRectForFrameRect:[o_window frame]].size.height <= 169. )
377     {
378         b_small_window = YES;
379         [o_window setFrame: NSMakeRect( [o_window frame].origin.x,
380             [o_window frame].origin.y, [o_window frame].size.width,
381             [o_window minSize].height ) display: YES animate:YES];
382         [o_playlist_view setAutoresizesSubviews: NO];
383     }
384     else
385     {
386         b_small_window = NO;
387         NSRect contentRect = [o_window contentRectForFrameRect:[o_window frame]];
388         [o_playlist_view setFrame: NSMakeRect( 0, 0, contentRect.size.width, contentRect.size.height - [o_window contentMinSize].height )];
389         [o_playlist_view setNeedsDisplay:YES];
390         [o_playlist_view setAutoresizesSubviews: YES];
391         [[o_window contentView] addSubview: o_playlist_view];
392     }
393
394     [self updateTogglePlaylistState];
395
396     o_size_with_playlist = [o_window contentRectForFrameRect:[o_window frame]].size;
397
398     p_playlist = pl_Yield( p_intf );
399
400     var_Create( p_playlist, "fullscreen", VLC_VAR_BOOL | VLC_VAR_DOINHERIT);
401     val.b_bool = false;
402
403     var_AddCallback( p_playlist, "fullscreen", FullscreenChanged, self);
404     var_AddCallback( p_intf->p_libvlc, "intf-show", ShowController, self);
405
406     pl_Release( p_intf );
407  
408     var_Create( p_intf, "interaction", VLC_VAR_ADDRESS );
409     var_AddCallback( p_intf, "interaction", InteractCallback, self );
410     p_intf->b_interaction = true;
411
412     /* update the playmode stuff */
413     p_intf->p_sys->b_playmode_update = true;
414
415     [[NSNotificationCenter defaultCenter] addObserver: self
416                                              selector: @selector(refreshVoutDeviceMenu:)
417                                                  name: NSApplicationDidChangeScreenParametersNotification
418                                                object: nil];
419
420     o_img_play = [NSImage imageNamed: @"play"];
421     o_img_pause = [NSImage imageNamed: @"pause"];    
422     
423     [self controlTintChanged];
424
425     [[NSNotificationCenter defaultCenter] addObserver: self
426                                              selector: @selector( controlTintChanged )
427                                                  name: NSControlTintDidChangeNotification
428                                                object: nil];
429     
430     nib_main_loaded = TRUE;
431 }
432
433 - (void)applicationWillFinishLaunching:(NSNotification *)o_notification
434 {
435     o_msg_lock = [[NSLock alloc] init];
436     o_msg_arr = [[NSMutableArray arrayWithCapacity: 200] retain];
437
438     /* FIXME: don't poll */
439     interfaceTimer = [[NSTimer scheduledTimerWithTimeInterval: 0.5
440                                      target: self selector: @selector(manageIntf:)
441                                    userInfo: nil repeats: FALSE] retain];
442
443     /* Note: we use the pthread API to support pre-10.5 */
444     pthread_create( &manage_thread, NULL, ManageThread, self );
445
446     [o_controls setupVarMenuItem: o_mi_add_intf target: (vlc_object_t *)p_intf
447         var: "intf-add" selector: @selector(toggleVar:)];
448
449     /* check whether the user runs a valid version of OSX; alert is auto-released */
450     if( MACOS_VERSION < 10.4f )
451     {
452         NSAlert *ourAlert;
453         int i_returnValue;
454         ourAlert = [NSAlert alertWithMessageText: _NS("Your version of Mac OS X is not supported")
455                         defaultButton: _NS("Quit")
456                       alternateButton: NULL
457                           otherButton: NULL
458             informativeTextWithFormat: _NS("VLC media player requires Mac OS X 10.4 or higher.")];
459         [ourAlert setAlertStyle: NSCriticalAlertStyle];
460         i_returnValue = [ourAlert runModal];
461         [NSApp terminate: self];
462     }
463
464     vlc_thread_set_priority( p_intf, VLC_THREAD_PRIORITY_LOW );
465 }
466
467 - (void)applicationDidFinishLaunching:(NSNotification *)aNotification
468 {
469     [self _removeOldPreferences];
470
471 #ifdef UPDATE_CHECK
472     /* Check for update silently on startup */
473     if( !nib_update_loaded )
474         nib_update_loaded = [NSBundle loadNibNamed:@"Update" owner:self];
475
476     if([o_update shouldCheckForUpdate])
477         [NSThread detachNewThreadSelector:@selector(checkForUpdate) toTarget:o_update withObject:nil];
478 #endif
479
480     /* Handle sleep notification */
481     [[[NSWorkspace sharedWorkspace] notificationCenter] addObserver:self selector:@selector(computerWillSleep:)
482            name:NSWorkspaceWillSleepNotification object:nil];
483
484     [NSThread detachNewThreadSelector:@selector(lookForCrashLog) toTarget:self withObject:nil];
485 }
486
487 - (void)initStrings
488 {
489     [o_window setTitle: _NS("VLC media player")];
490     [self setScrollField:_NS("VLC media player") stopAfter:-1];
491
492     /* button controls */
493     [o_btn_prev setToolTip: _NS("Previous")];
494     [o_btn_rewind setToolTip: _NS("Rewind")];
495     [o_btn_play setToolTip: _NS("Play")];
496     [o_btn_stop setToolTip: _NS("Stop")];
497     [o_btn_ff setToolTip: _NS("Fast Forward")];
498     [o_btn_next setToolTip: _NS("Next")];
499     [o_btn_fullscreen setToolTip: _NS("Fullscreen")];
500     [o_volumeslider setToolTip: _NS("Volume")];
501     [o_timeslider setToolTip: _NS("Position")];
502     [o_btn_playlist setToolTip: _NS("Playlist")];
503
504     /* messages panel */
505     [o_msgs_panel setTitle: _NS("Messages")];
506     [o_msgs_btn_crashlog setTitle: _NS("Open CrashLog...")];
507
508     /* main menu */
509     [o_mi_about setTitle: [_NS("About VLC media player") \
510         stringByAppendingString: @"..."]];
511     [o_mi_checkForUpdate setTitle: _NS("Check for Update...")];
512     [o_mi_prefs setTitle: _NS("Preferences...")];
513     [o_mi_add_intf setTitle: _NS("Add Interface")];
514     [o_mu_add_intf setTitle: _NS("Add Interface")];
515     [o_mi_services setTitle: _NS("Services")];
516     [o_mi_hide setTitle: _NS("Hide VLC")];
517     [o_mi_hide_others setTitle: _NS("Hide Others")];
518     [o_mi_show_all setTitle: _NS("Show All")];
519     [o_mi_quit setTitle: _NS("Quit VLC")];
520
521     [o_mu_file setTitle: _ANS("1:File")];
522     [o_mi_open_generic setTitle: _NS("Open File...")];
523     [o_mi_open_file setTitle: _NS("Quick Open File...")];
524     [o_mi_open_disc setTitle: _NS("Open Disc...")];
525     [o_mi_open_net setTitle: _NS("Open Network...")];
526     [o_mi_open_capture setTitle: _NS("Open Capture Device...")];
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("Fullscreen Video Device")];
586     [o_mu_screen setTitle: _NS("Fullscreen 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     [o_mi_teletext setTitle: _NS("Teletext")];
594     [o_mi_teletext_transparent setTitle: _NS("Transparent")];
595     [o_mi_teletext_index setTitle: _NS("Index")];
596     [o_mi_teletext_red setTitle: _NS("Red")];
597     [o_mi_teletext_green setTitle: _NS("Green")];
598     [o_mi_teletext_yellow setTitle: _NS("Yellow")];
599     [o_mi_teletext_blue setTitle: _NS("Blue")];
600
601     [o_mu_window setTitle: _NS("Window")];
602     [o_mi_minimize setTitle: _NS("Minimize Window")];
603     [o_mi_close_window setTitle: _NS("Close Window")];
604     [o_mi_controller setTitle: _NS("Controller...")];
605     [o_mi_equalizer setTitle: _NS("Equalizer...")];
606     [o_mi_extended setTitle: _NS("Extended Controls...")];
607     [o_mi_bookmarks setTitle: _NS("Bookmarks...")];
608     [o_mi_playlist setTitle: _NS("Playlist...")];
609     [o_mi_info setTitle: _NS("Media Information...")];
610     [o_mi_messages setTitle: _NS("Messages...")];
611     [o_mi_errorsAndWarnings setTitle: _NS("Errors and Warnings...")];
612
613     [o_mi_bring_atf setTitle: _NS("Bring All to Front")];
614
615     [o_mu_help setTitle: _NS("Help")];
616     [o_mi_help setTitle: _NS("VLC media player Help...")];
617     [o_mi_readme setTitle: _NS("ReadMe / FAQ...")];
618     [o_mi_license setTitle: _NS("License")];
619     [o_mi_documentation setTitle: _NS("Online Documentation...")];
620     [o_mi_website setTitle: _NS("VideoLAN Website...")];
621     [o_mi_donation setTitle: _NS("Make a donation...")];
622     [o_mi_forum setTitle: _NS("Online Forum...")];
623
624     /* dock menu */
625     [o_dmi_play setTitle: _NS("Play")];
626     [o_dmi_stop setTitle: _NS("Stop")];
627     [o_dmi_next setTitle: _NS("Next")];
628     [o_dmi_previous setTitle: _NS("Previous")];
629     [o_dmi_mute setTitle: _NS("Mute")];
630  
631     /* vout menu */
632     [o_vmi_play setTitle: _NS("Play")];
633     [o_vmi_stop setTitle: _NS("Stop")];
634     [o_vmi_prev setTitle: _NS("Previous")];
635     [o_vmi_next setTitle: _NS("Next")];
636     [o_vmi_volup setTitle: _NS("Volume Up")];
637     [o_vmi_voldown setTitle: _NS("Volume Down")];
638     [o_vmi_mute setTitle: _NS("Mute")];
639     [o_vmi_fullscreen setTitle: _NS("Fullscreen")];
640     [o_vmi_snapshot setTitle: _NS("Snapshot")];
641
642     /* crash reporter panel */
643     [o_crashrep_send_btn setTitle: _NS("Send")];
644     [o_crashrep_dontSend_btn setTitle: _NS("Don't Send")];
645     [o_crashrep_title_txt setStringValue: _NS("VLC crashed previously")];
646     [o_crashrep_win setTitle: _NS("VLC crashed previously")];
647     [o_crashrep_desc_txt setStringValue: _NS("Do you want to send details on the crash to VLC's development team?\n\nIf you want, you can enter a few lines on what you did before VLC crashed along with other helpful information: a link to download a sample file, a URL of a network stream, ...")];
648     [o_crashrep_includeEmail_ckb setTitle: _NS("I agree to be possibly contacted about this bugreport.")];
649     [o_crashrep_includeEmail_txt setStringValue: _NS("Only your default E-Mail address will be submitted, including no further information.")];
650 }
651
652 #pragma mark -
653 #pragma mark Termination
654
655 - (void)applicationWillTerminate:(NSNotification *)notification
656 {
657     playlist_t * p_playlist;
658     vout_thread_t * p_vout;
659     int returnedValue = 0;
660  
661     msg_Dbg( p_intf, "Terminating" );
662
663     /* Make sure the manage_thread won't call -terminate: again */
664     pthread_cancel( manage_thread );
665
666     /* Make sure the intf object is getting killed */
667     vlc_object_kill( p_intf );
668
669     /* Make sure our manage_thread ends */
670     pthread_join( manage_thread, NULL );
671
672     /* Make sure the interfaceTimer is destroyed */
673     [interfaceTimer invalidate];
674     [interfaceTimer release];
675     interfaceTimer = nil;
676
677     /* make sure that the current volume is saved */
678     config_PutInt( p_intf->p_libvlc, "volume", i_lastShownVolume );
679
680     /* save the prefs if they were changed in the extended panel */
681     if(o_extended && [o_extended getConfigChanged])
682     {
683         [o_extended savePrefs];
684     }
685  
686     p_intf->b_interaction = false;
687     var_DelCallback( p_intf, "interaction", InteractCallback, self );
688
689     /* remove global observer watching for vout device changes correctly */
690     [[NSNotificationCenter defaultCenter] removeObserver: self];
691
692     [o_update end];
693
694     /* release some other objects here, because it isn't sure whether dealloc
695      * will be called later on */
696
697     if( nib_about_loaded )
698         [o_about release];
699
700     if( nib_prefs_loaded )
701     {
702         [o_sprefs release];
703         [o_prefs release];
704     }
705
706     if( nib_open_loaded )
707         [o_open release];
708
709     if( nib_extended_loaded )
710     {
711         [o_extended release];
712     }
713
714     if( nib_bookmarks_loaded )
715         [o_bookmarks release];
716
717     if( o_info )
718     {
719         [o_info stopTimers];
720         [o_info release];
721     }
722
723     if( nib_wizard_loaded )
724         [o_wizard release];
725
726     [crashLogURLConnection cancel];
727     [crashLogURLConnection release];
728  
729     [o_embedded_list release];
730     [o_interaction_list release];
731     [o_eyetv release];
732
733     [o_img_pause_pressed release];
734     [o_img_play_pressed release];
735     [o_img_pause release];
736     [o_img_play release];
737
738     [o_msg_arr removeAllObjects];
739     [o_msg_arr release];
740
741     [o_msg_lock release];
742
743     /* write cached user defaults to disk */
744     [[NSUserDefaults standardUserDefaults] synchronize];
745
746     /* Kill the playlist, so that it doesn't accept new request
747      * such as the play request from vlc.c (we are a blocking interface). */
748     p_playlist = pl_Yield( p_intf );
749     vlc_object_kill( p_playlist );
750     pl_Release( p_intf );
751
752     vlc_object_kill( p_intf->p_libvlc );
753
754     [self setIntf:nil];
755
756     /* Go back to Run() and make libvlc exit properly */
757     if( jmpbuffer )
758         longjmp( jmpbuffer, 1 );
759     /* not reached */
760 }
761
762 #pragma mark -
763 #pragma mark Toolbar delegate
764
765 /* Our item identifiers */
766 static NSString * VLCToolbarMediaControl     = @"VLCToolbarMediaControl";
767
768 - (NSArray *)toolbarAllowedItemIdentifiers:(NSToolbar *)toolbar
769 {
770     return [NSArray arrayWithObjects:
771 //                        NSToolbarCustomizeToolbarItemIdentifier,
772 //                        NSToolbarFlexibleSpaceItemIdentifier,
773 //                        NSToolbarSpaceItemIdentifier,
774 //                        NSToolbarSeparatorItemIdentifier,
775                         VLCToolbarMediaControl,
776                         nil ];
777 }
778
779 - (NSArray *) toolbarDefaultItemIdentifiers: (NSToolbar *) toolbar
780 {
781     return [NSArray arrayWithObjects:
782                         VLCToolbarMediaControl,
783                         nil ];
784 }
785
786 - (NSToolbarItem *) toolbar:(NSToolbar *)toolbar itemForItemIdentifier:(NSString *)itemIdentifier willBeInsertedIntoToolbar:(BOOL)flag
787 {
788     NSToolbarItem *toolbarItem = [[[NSToolbarItem alloc] initWithItemIdentifier: itemIdentifier] autorelease];
789
790  
791     if( [itemIdentifier isEqual: VLCToolbarMediaControl] )
792     {
793         [toolbarItem setLabel:@"Media Controls"];
794         [toolbarItem setPaletteLabel:@"Media Controls"];
795
796         NSSize size = toolbarMediaControl.frame.size;
797         [toolbarItem setView:toolbarMediaControl];
798         [toolbarItem setMinSize:size];
799         size.width += 1000.;
800         [toolbarItem setMaxSize:size];
801
802         // Hack: For some reason we need to make sure
803         // that the those element are on top
804         // Add them again will put them frontmost
805         [toolbarMediaControl addSubview:o_scrollfield];
806         [toolbarMediaControl addSubview:o_timeslider];
807         [toolbarMediaControl addSubview:o_timefield];
808         [toolbarMediaControl addSubview:o_main_pgbar];
809
810         /* TODO: setup a menu */
811     }
812     else
813     {
814         /* itemIdentifier referred to a toolbar item that is not
815          * provided or supported by us or Cocoa
816          * Returning nil will inform the toolbar
817          * that this kind of item is not supported */
818         toolbarItem = nil;
819     }
820     return toolbarItem;
821 }
822
823 #pragma mark -
824 #pragma mark Other notification
825
826 - (void)controlTintChanged
827 {
828     BOOL b_playing = NO;
829     
830     if( [o_btn_play alternateImage] == o_img_play_pressed )
831         b_playing = YES;
832     
833     if( [NSColor currentControlTint] == NSGraphiteControlTint )
834     {
835         o_img_play_pressed = [NSImage imageNamed: @"play_graphite"];
836         o_img_pause_pressed = [NSImage imageNamed: @"pause_graphite"];
837         
838         [o_btn_prev setAlternateImage: [NSImage imageNamed: @"previous_graphite"]];
839         [o_btn_rewind setAlternateImage: [NSImage imageNamed: @"skip_previous_graphite"]];
840         [o_btn_stop setAlternateImage: [NSImage imageNamed: @"stop_graphite"]];
841         [o_btn_ff setAlternateImage: [NSImage imageNamed: @"skip_forward_graphite"]];
842         [o_btn_next setAlternateImage: [NSImage imageNamed: @"next_graphite"]];
843         [o_btn_fullscreen setAlternateImage: [NSImage imageNamed: @"fullscreen_graphite"]];
844         [o_btn_playlist setAlternateImage: [NSImage imageNamed: @"playlistdrawer_graphite"]];
845         [o_btn_equalizer setAlternateImage: [NSImage imageNamed: @"equalizerdrawer_graphite"]];
846     }
847     else
848     {
849         o_img_play_pressed = [NSImage imageNamed: @"play_blue"];
850         o_img_pause_pressed = [NSImage imageNamed: @"pause_blue"];
851         
852         [o_btn_prev setAlternateImage: [NSImage imageNamed: @"previous_blue"]];
853         [o_btn_rewind setAlternateImage: [NSImage imageNamed: @"skip_previous_blue"]];
854         [o_btn_stop setAlternateImage: [NSImage imageNamed: @"stop_blue"]];
855         [o_btn_ff setAlternateImage: [NSImage imageNamed: @"skip_forward_blue"]];
856         [o_btn_next setAlternateImage: [NSImage imageNamed: @"next_blue"]];
857         [o_btn_fullscreen setAlternateImage: [NSImage imageNamed: @"fullscreen_blue"]];
858         [o_btn_playlist setAlternateImage: [NSImage imageNamed: @"playlistdrawer_blue"]];
859         [o_btn_equalizer setAlternateImage: [NSImage imageNamed: @"equalizerdrawer_blue"]];
860     }
861     
862     if( b_playing )
863         [o_btn_play setAlternateImage: o_img_play_pressed];
864     else
865         [o_btn_play setAlternateImage: o_img_pause_pressed];
866 }
867
868 /* Listen to the remote in exclusive mode, only when VLC is the active
869    application */
870 - (void)applicationDidBecomeActive:(NSNotification *)aNotification
871 {
872     [o_remote startListening: self];
873 }
874 - (void)applicationDidResignActive:(NSNotification *)aNotification
875 {
876     [o_remote stopListening: self];
877 }
878
879 /* Triggered when the computer goes to sleep */
880 - (void)computerWillSleep: (NSNotification *)notification
881 {
882     /* Pause */
883     if( p_intf->p_sys->i_play_status == PLAYING_S )
884     {
885         vlc_value_t val;
886         val.i_int = config_GetInt( p_intf, "key-play-pause" );
887         var_Set( p_intf->p_libvlc, "key-pressed", val );
888     }
889 }
890
891 #pragma mark -
892 #pragma mark File opening
893
894 - (BOOL)application:(NSApplication *)o_app openFile:(NSString *)o_filename
895 {
896     BOOL b_autoplay = config_GetInt( VLCIntf, "macosx-autoplay" );
897     NSDictionary *o_dic = [NSDictionary dictionaryWithObjectsAndKeys: o_filename, @"ITEM_URL", nil];
898     if( b_autoplay )
899         [o_playlist appendArray: [NSArray arrayWithObject: o_dic] atPos: -1 enqueue: NO];
900     else
901         [o_playlist appendArray: [NSArray arrayWithObject: o_dic] atPos: -1 enqueue: YES];
902
903     return( TRUE );
904 }
905
906 /* When user click in the Dock icon our double click in the finder */
907 - (BOOL)applicationShouldHandleReopen:(NSApplication *)theApplication hasVisibleWindows:(BOOL)hasVisibleWindows
908 {    
909     if(!hasVisibleWindows)
910         [o_window makeKeyAndOrderFront:self];
911
912     return YES;
913 }
914
915 #pragma mark -
916 #pragma mark Apple Remote Control
917
918 /* Helper method for the remote control interface in order to trigger forward/backward and volume
919    increase/decrease as long as the user holds the left/right, plus/minus button */
920 - (void) executeHoldActionForRemoteButton: (NSNumber*) buttonIdentifierNumber
921 {
922     if(b_remote_button_hold)
923     {
924         switch([buttonIdentifierNumber intValue])
925         {
926             case kRemoteButtonRight_Hold:
927                   [o_controls forward: self];
928             break;
929             case kRemoteButtonLeft_Hold:
930                   [o_controls backward: self];
931             break;
932             case kRemoteButtonVolume_Plus_Hold:
933                 [o_controls volumeUp: self];
934             break;
935             case kRemoteButtonVolume_Minus_Hold:
936                 [o_controls volumeDown: self];
937             break;
938         }
939         if(b_remote_button_hold)
940         {
941             /* trigger event */
942             [self performSelector:@selector(executeHoldActionForRemoteButton:)
943                          withObject:buttonIdentifierNumber
944                          afterDelay:0.25];
945         }
946     }
947 }
948
949 /* Apple Remote callback */
950 - (void) appleRemoteButton: (AppleRemoteEventIdentifier)buttonIdentifier
951                pressedDown: (BOOL) pressedDown
952                 clickCount: (unsigned int) count
953 {
954     switch( buttonIdentifier )
955     {
956         case kRemoteButtonPlay:
957             if(count >= 2) {
958                 [o_controls toogleFullscreen:self];
959             } else {
960                 [o_controls play: self];
961             }
962             break;
963         case kRemoteButtonVolume_Plus:
964             [o_controls volumeUp: self];
965             break;
966         case kRemoteButtonVolume_Minus:
967             [o_controls volumeDown: self];
968             break;
969         case kRemoteButtonRight:
970             [o_controls next: self];
971             break;
972         case kRemoteButtonLeft:
973             [o_controls prev: self];
974             break;
975         case kRemoteButtonRight_Hold:
976         case kRemoteButtonLeft_Hold:
977         case kRemoteButtonVolume_Plus_Hold:
978         case kRemoteButtonVolume_Minus_Hold:
979             /* simulate an event as long as the user holds the button */
980             b_remote_button_hold = pressedDown;
981             if( pressedDown )
982             {
983                 NSNumber* buttonIdentifierNumber = [NSNumber numberWithInt: buttonIdentifier];
984                 [self performSelector:@selector(executeHoldActionForRemoteButton:)
985                            withObject:buttonIdentifierNumber];
986             }
987             break;
988         case kRemoteButtonMenu:
989             [o_controls showPosition: self];
990             break;
991         default:
992             /* Add here whatever you want other buttons to do */
993             break;
994     }
995 }
996
997 #pragma mark -
998 #pragma mark String utility
999 // FIXME: this has nothing to do here
1000
1001 - (NSString *)localizedString:(const char *)psz
1002 {
1003     NSString * o_str = nil;
1004
1005     if( psz != NULL )
1006     {
1007         o_str = [[[NSString alloc] initWithUTF8String: psz] autorelease];
1008
1009         if( o_str == NULL )
1010         {
1011             msg_Err( VLCIntf, "could not translate: %s", psz );
1012             return( @"" );
1013         }
1014     }
1015     else
1016     {
1017         msg_Warn( VLCIntf, "can't translate empty strings" );
1018         return( @"" );
1019     }
1020
1021     return( o_str );
1022 }
1023
1024
1025
1026 - (char *)delocalizeString:(NSString *)id
1027 {
1028     NSData * o_data = [id dataUsingEncoding: NSUTF8StringEncoding
1029                           allowLossyConversion: NO];
1030     char * psz_string;
1031
1032     if( o_data == nil )
1033     {
1034         o_data = [id dataUsingEncoding: NSUTF8StringEncoding
1035                      allowLossyConversion: YES];
1036         psz_string = malloc( [o_data length] + 1 );
1037         [o_data getBytes: psz_string];
1038         psz_string[ [o_data length] ] = '\0';
1039         msg_Err( VLCIntf, "cannot convert to the requested encoding: %s",
1040                  psz_string );
1041     }
1042     else
1043     {
1044         psz_string = malloc( [o_data length] + 1 );
1045         [o_data getBytes: psz_string];
1046         psz_string[ [o_data length] ] = '\0';
1047     }
1048
1049     return psz_string;
1050 }
1051
1052 /* i_width is in pixels */
1053 - (NSString *)wrapString: (NSString *)o_in_string toWidth: (int) i_width
1054 {
1055     NSMutableString *o_wrapped;
1056     NSString *o_out_string;
1057     NSRange glyphRange, effectiveRange, charRange;
1058     NSRect lineFragmentRect;
1059     unsigned glyphIndex, breaksInserted = 0;
1060
1061     NSTextStorage *o_storage = [[NSTextStorage alloc] initWithString: o_in_string
1062         attributes: [NSDictionary dictionaryWithObjectsAndKeys:
1063         [NSFont labelFontOfSize: 0.0], NSFontAttributeName, nil]];
1064     NSLayoutManager *o_layout_manager = [[NSLayoutManager alloc] init];
1065     NSTextContainer *o_container = [[NSTextContainer alloc]
1066         initWithContainerSize: NSMakeSize(i_width, 2000)];
1067
1068     [o_layout_manager addTextContainer: o_container];
1069     [o_container release];
1070     [o_storage addLayoutManager: o_layout_manager];
1071     [o_layout_manager release];
1072
1073     o_wrapped = [o_in_string mutableCopy];
1074     glyphRange = [o_layout_manager glyphRangeForTextContainer: o_container];
1075
1076     for( glyphIndex = glyphRange.location ; glyphIndex < NSMaxRange(glyphRange) ;
1077             glyphIndex += effectiveRange.length) {
1078         lineFragmentRect = [o_layout_manager lineFragmentRectForGlyphAtIndex: glyphIndex
1079                                             effectiveRange: &effectiveRange];
1080         charRange = [o_layout_manager characterRangeForGlyphRange: effectiveRange
1081                                     actualGlyphRange: &effectiveRange];
1082         if([o_wrapped lineRangeForRange:
1083                 NSMakeRange(charRange.location + breaksInserted, charRange.length)].length > charRange.length) {
1084             [o_wrapped insertString: @"\n" atIndex: NSMaxRange(charRange) + breaksInserted];
1085             breaksInserted++;
1086         }
1087     }
1088     o_out_string = [NSString stringWithString: o_wrapped];
1089     [o_wrapped release];
1090     [o_storage release];
1091
1092     return o_out_string;
1093 }
1094
1095
1096 #pragma mark -
1097 #pragma mark Key Shortcuts
1098
1099 static struct
1100 {
1101     unichar i_nskey;
1102     unsigned int i_vlckey;
1103 } nskeys_to_vlckeys[] =
1104 {
1105     { NSUpArrowFunctionKey, KEY_UP },
1106     { NSDownArrowFunctionKey, KEY_DOWN },
1107     { NSLeftArrowFunctionKey, KEY_LEFT },
1108     { NSRightArrowFunctionKey, KEY_RIGHT },
1109     { NSF1FunctionKey, KEY_F1 },
1110     { NSF2FunctionKey, KEY_F2 },
1111     { NSF3FunctionKey, KEY_F3 },
1112     { NSF4FunctionKey, KEY_F4 },
1113     { NSF5FunctionKey, KEY_F5 },
1114     { NSF6FunctionKey, KEY_F6 },
1115     { NSF7FunctionKey, KEY_F7 },
1116     { NSF8FunctionKey, KEY_F8 },
1117     { NSF9FunctionKey, KEY_F9 },
1118     { NSF10FunctionKey, KEY_F10 },
1119     { NSF11FunctionKey, KEY_F11 },
1120     { NSF12FunctionKey, KEY_F12 },
1121     { NSInsertFunctionKey, KEY_INSERT },
1122     { NSHomeFunctionKey, KEY_HOME },
1123     { NSEndFunctionKey, KEY_END },
1124     { NSPageUpFunctionKey, KEY_PAGEUP },
1125     { NSPageDownFunctionKey, KEY_PAGEDOWN },
1126     { NSMenuFunctionKey, KEY_MENU },
1127     { NSTabCharacter, KEY_TAB },
1128     { NSCarriageReturnCharacter, KEY_ENTER },
1129     { NSEnterCharacter, KEY_ENTER },
1130     { NSBackspaceCharacter, KEY_BACKSPACE },
1131     { (unichar) ' ', KEY_SPACE },
1132     { (unichar) 0x1b, KEY_ESC },
1133     {0,0}
1134 };
1135
1136 static unichar VLCKeyToCocoa( unsigned int i_key )
1137 {
1138     unsigned int i;
1139
1140     for( i = 0; nskeys_to_vlckeys[i].i_vlckey != 0; i++ )
1141     {
1142         if( nskeys_to_vlckeys[i].i_vlckey == (i_key & ~KEY_MODIFIER) )
1143         {
1144             return nskeys_to_vlckeys[i].i_nskey;
1145         }
1146     }
1147     return (unichar)(i_key & ~KEY_MODIFIER);
1148 }
1149
1150 unsigned int CocoaKeyToVLC( unichar i_key )
1151 {
1152     unsigned int i;
1153
1154     for( i = 0; nskeys_to_vlckeys[i].i_nskey != 0; i++ )
1155     {
1156         if( nskeys_to_vlckeys[i].i_nskey == i_key )
1157         {
1158             return nskeys_to_vlckeys[i].i_vlckey;
1159         }
1160     }
1161     return (unsigned int)i_key;
1162 }
1163
1164 static unsigned int VLCModifiersToCocoa( unsigned int i_key )
1165 {
1166     unsigned int new = 0;
1167     if( i_key & KEY_MODIFIER_COMMAND )
1168         new |= NSCommandKeyMask;
1169     if( i_key & KEY_MODIFIER_ALT )
1170         new |= NSAlternateKeyMask;
1171     if( i_key & KEY_MODIFIER_SHIFT )
1172         new |= NSShiftKeyMask;
1173     if( i_key & KEY_MODIFIER_CTRL )
1174         new |= NSControlKeyMask;
1175     return new;
1176 }
1177
1178 /*****************************************************************************
1179  * hasDefinedShortcutKey: Check to see if the key press is a defined VLC
1180  * shortcut key.  If it is, pass it off to VLC for handling and return YES,
1181  * otherwise ignore it and return NO (where it will get handled by Cocoa).
1182  *****************************************************************************/
1183 - (BOOL)hasDefinedShortcutKey:(NSEvent *)o_event
1184 {
1185     unichar key = 0;
1186     vlc_value_t val;
1187     unsigned int i_pressed_modifiers = 0;
1188     struct hotkey *p_hotkeys;
1189     int i;
1190
1191     val.i_int = 0;
1192     p_hotkeys = p_intf->p_libvlc->p_hotkeys;
1193
1194     i_pressed_modifiers = [o_event modifierFlags];
1195
1196     if( i_pressed_modifiers & NSShiftKeyMask )
1197         val.i_int |= KEY_MODIFIER_SHIFT;
1198     if( i_pressed_modifiers & NSControlKeyMask )
1199         val.i_int |= KEY_MODIFIER_CTRL;
1200     if( i_pressed_modifiers & NSAlternateKeyMask )
1201         val.i_int |= KEY_MODIFIER_ALT;
1202     if( i_pressed_modifiers & NSCommandKeyMask )
1203         val.i_int |= KEY_MODIFIER_COMMAND;
1204
1205     key = [[o_event charactersIgnoringModifiers] characterAtIndex: 0];
1206
1207     switch( key )
1208     {
1209         case NSDeleteCharacter:
1210         case NSDeleteFunctionKey:
1211         case NSDeleteCharFunctionKey:
1212         case NSBackspaceCharacter:
1213         case NSUpArrowFunctionKey:
1214         case NSDownArrowFunctionKey:
1215         case NSRightArrowFunctionKey:
1216         case NSLeftArrowFunctionKey:
1217         case NSEnterCharacter:
1218         case NSCarriageReturnCharacter:
1219             return NO;
1220     }
1221
1222     val.i_int |= CocoaKeyToVLC( key );
1223
1224     for( i = 0; p_hotkeys[i].psz_action != NULL; i++ )
1225     {
1226         if( p_hotkeys[i].i_key == val.i_int )
1227         {
1228             var_Set( p_intf->p_libvlc, "key-pressed", val );
1229             return YES;
1230         }
1231     }
1232
1233     return NO;
1234 }
1235
1236 #pragma mark -
1237 #pragma mark Other objects getters
1238 // FIXME: this is ugly and does not respect cocoa naming scheme
1239
1240 - (id)getControls
1241 {
1242     if( o_controls )
1243         return o_controls;
1244
1245     return nil;
1246 }
1247
1248 - (id)getSimplePreferences
1249 {
1250     if( !o_sprefs )
1251         return nil;
1252
1253     if( !nib_prefs_loaded )
1254         nib_prefs_loaded = [NSBundle loadNibNamed:@"Preferences" owner: self];
1255
1256     return o_sprefs;
1257 }
1258
1259 - (id)getPreferences
1260 {
1261     if( !o_prefs )
1262         return nil;
1263
1264     if( !nib_prefs_loaded )
1265         nib_prefs_loaded = [NSBundle loadNibNamed:@"Preferences" owner: self];
1266
1267     return o_prefs;
1268 }
1269
1270 - (id)getPlaylist
1271 {
1272     if( o_playlist )
1273         return o_playlist;
1274
1275     return nil;
1276 }
1277
1278 - (id)getInfo
1279 {
1280     if( o_info )
1281         return o_info;
1282
1283     return nil;
1284 }
1285
1286 - (id)getWizard
1287 {
1288     if( o_wizard )
1289         return o_wizard;
1290
1291     return nil;
1292 }
1293
1294 - (id)getBookmarks
1295 {
1296     if( o_bookmarks )
1297         return o_bookmarks;
1298
1299     return nil;
1300 }
1301
1302 - (id)getEmbeddedList
1303 {
1304     if( o_embedded_list )
1305         return o_embedded_list;
1306
1307     return nil;
1308 }
1309
1310 - (id)getInteractionList
1311 {
1312     if( o_interaction_list )
1313         return o_interaction_list;
1314
1315     return nil;
1316 }
1317
1318 - (id)getMainIntfPgbar
1319 {
1320     if( o_main_pgbar )
1321         return o_main_pgbar;
1322
1323     return nil;
1324 }
1325
1326 - (id)getControllerWindow
1327 {
1328     if( o_window )
1329         return o_window;
1330     return nil;
1331 }
1332
1333 - (id)getVoutMenu
1334 {
1335     return o_vout_menu;
1336 }
1337
1338 - (id)getEyeTVController
1339 {
1340     if( o_eyetv )
1341         return o_eyetv;
1342
1343     return nil;
1344 }
1345
1346 #pragma mark -
1347 #pragma mark Polling
1348
1349 /*****************************************************************************
1350  * ManageThread: An ugly thread that polls
1351  *****************************************************************************/
1352 static void * ManageThread( void *user_data )
1353 {
1354     id self = user_data;
1355
1356     [self manage];
1357
1358     return NULL;
1359 }
1360
1361 - (void)manage
1362 {
1363     playlist_t * p_playlist;
1364     input_thread_t * p_input = NULL;
1365
1366     /* new thread requires a new pool */
1367     NSAutoreleasePool * o_pool = [[NSAutoreleasePool alloc] init];
1368
1369     vlc_thread_set_priority( p_intf, VLC_THREAD_PRIORITY_LOW );
1370
1371     p_playlist = pl_Yield( p_intf );
1372
1373     var_AddCallback( p_playlist, "playlist-current", PlaylistChanged, self );
1374     var_AddCallback( p_playlist, "intf-change", PlaylistChanged, self );
1375     var_AddCallback( p_playlist, "item-change", PlaylistChanged, self );
1376     var_AddCallback( p_playlist, "item-append", PlaylistChanged, self );
1377     var_AddCallback( p_playlist, "item-deleted", PlaylistChanged, self );
1378
1379     pl_Release( p_intf );
1380
1381     vlc_object_lock( p_intf );
1382
1383     while( vlc_object_alive( p_intf ) )
1384     {
1385         vlc_mutex_lock( &p_intf->change_lock );
1386
1387         if( !p_input )
1388         {
1389             p_input = playlist_CurrentInput( p_playlist );
1390
1391             /* Refresh the interface */
1392             if( p_input )
1393             {
1394                 msg_Dbg( p_intf, "input has changed, refreshing interface" );
1395                 p_intf->p_sys->b_input_update = true;
1396             }
1397         }
1398         else if( !vlc_object_alive (p_input) || p_input->b_dead )
1399         {
1400             /* input stopped */
1401             p_intf->p_sys->b_intf_update = true;
1402             p_intf->p_sys->i_play_status = END_S;
1403             msg_Dbg( p_intf, "input has stopped, refreshing interface" );
1404             vlc_object_release( p_input );
1405             p_input = NULL;
1406         }
1407         else if( cachedInputState != input_GetState( p_input ) )
1408         {
1409             p_intf->p_sys->b_intf_update = true;
1410         }
1411
1412         /* Manage volume status */
1413         [self manageVolumeSlider];
1414
1415         vlc_mutex_unlock( &p_intf->change_lock );
1416
1417         msleep( INTF_IDLE_SLEEP );
1418     }
1419     vlc_object_unlock( p_intf );
1420     [o_pool release];
1421
1422     if( p_input ) vlc_object_release( p_input );
1423
1424     var_DelCallback( p_playlist, "playlist-current", PlaylistChanged, self );
1425     var_DelCallback( p_playlist, "intf-change", PlaylistChanged, self );
1426     var_DelCallback( p_playlist, "item-change", PlaylistChanged, self );
1427     var_DelCallback( p_playlist, "item-append", PlaylistChanged, self );
1428     var_DelCallback( p_playlist, "item-deleted", PlaylistChanged, self );
1429
1430     pthread_testcancel(); /* If we were cancelled stop here */
1431
1432     msg_Dbg( p_intf, "Killing the Mac OS X module" );
1433
1434     /* We are dead, terminate */
1435     [NSApp performSelectorOnMainThread: @selector(terminate:) withObject:nil waitUntilDone:NO];
1436 }
1437
1438 - (void)manageVolumeSlider
1439 {
1440     audio_volume_t i_volume;
1441     aout_VolumeGet( p_intf, &i_volume );
1442
1443     if( i_volume != i_lastShownVolume )
1444     {
1445         i_lastShownVolume = i_volume;
1446         p_intf->p_sys->b_volume_update = TRUE;
1447     }
1448 }
1449
1450 - (void)manageIntf:(NSTimer *)o_timer
1451 {
1452     vlc_value_t val;
1453     playlist_t * p_playlist;
1454     input_thread_t * p_input;
1455
1456     if( p_intf->p_sys->b_input_update )
1457     {
1458         /* Called when new input is opened */
1459         p_intf->p_sys->b_current_title_update = true;
1460         p_intf->p_sys->b_intf_update = true;
1461         p_intf->p_sys->b_input_update = false;
1462         [self setupMenus]; /* Make sure input menu is up to date */
1463     }
1464     if( p_intf->p_sys->b_intf_update )
1465     {
1466         bool b_input = false;
1467         bool b_plmul = false;
1468         bool b_control = false;
1469         bool b_seekable = false;
1470         bool b_chapters = false;
1471
1472         playlist_t * p_playlist = pl_Yield( p_intf );
1473     /* TODO: fix i_size use */
1474         b_plmul = p_playlist->items.i_size > 1;
1475
1476         p_input = playlist_CurrentInput( p_playlist );
1477         bool b_buffering = NO;
1478     
1479         if( ( b_input = ( p_input != NULL ) ) )
1480         {
1481             /* seekable streams */
1482             cachedInputState = input_GetState( p_input );
1483             if ( cachedInputState == INIT_S ||
1484                  cachedInputState == OPENING_S ||
1485                  cachedInputState == BUFFERING_S )
1486             {
1487                 b_buffering = YES;
1488             }
1489                  
1490             /* seekable streams */
1491             b_seekable = var_GetBool( p_input, "seekable" );
1492
1493             /* check whether slow/fast motion is possible */
1494             b_control = p_input->b_can_pace_control;
1495
1496             /* chapters & titles */
1497             //b_chapters = p_input->stream.i_area_nb > 1;
1498             vlc_object_release( p_input );
1499         }
1500         pl_Release( p_intf );
1501
1502         if( b_buffering )
1503         {
1504             [o_main_pgbar startAnimation:self];
1505             [o_main_pgbar setIndeterminate:YES];
1506             [o_main_pgbar setHidden:NO];
1507         }
1508         else
1509         {
1510             [o_main_pgbar stopAnimation:self];
1511             [o_main_pgbar setHidden:YES];
1512         }
1513
1514         [o_btn_stop setEnabled: b_input];
1515         [o_btn_ff setEnabled: b_seekable];
1516         [o_btn_rewind setEnabled: b_seekable];
1517         [o_btn_prev setEnabled: (b_plmul || b_chapters)];
1518         [o_btn_next setEnabled: (b_plmul || b_chapters)];
1519
1520         [o_timeslider setFloatValue: 0.0];
1521         [o_timeslider setEnabled: b_seekable];
1522         [o_timefield setStringValue: @"00:00"];
1523         [[[self getControls] getFSPanel] setStreamPos: 0 andTime: @"00:00"];
1524         [[[self getControls] getFSPanel] setSeekable: b_seekable];
1525
1526         [o_embedded_window setSeekable: b_seekable];
1527
1528         p_intf->p_sys->b_current_title_update = true;
1529         
1530         p_intf->p_sys->b_intf_update = false;
1531     }
1532
1533     if( p_intf->p_sys->b_playmode_update )
1534     {
1535         [o_playlist playModeUpdated];
1536         p_intf->p_sys->b_playmode_update = false;
1537     }
1538     if( p_intf->p_sys->b_playlist_update )
1539     {
1540         [o_playlist playlistUpdated];
1541         p_intf->p_sys->b_playlist_update = false;
1542     }
1543
1544     if( p_intf->p_sys->b_fullscreen_update )
1545     {
1546         p_intf->p_sys->b_fullscreen_update = false;
1547     }
1548
1549     if( p_intf->p_sys->b_intf_show )
1550     {
1551         [o_window makeKeyAndOrderFront: self];
1552
1553         p_intf->p_sys->b_intf_show = false;
1554     }
1555
1556     p_input = pl_CurrentInput( p_intf );
1557     if( p_input && vlc_object_alive (p_input) )
1558     {
1559         vlc_value_t val;
1560
1561         if( p_intf->p_sys->b_current_title_update )
1562         {
1563             NSString *aString;
1564             input_item_t * p_item = input_GetItem( p_input );
1565             char * name = input_item_GetNowPlaying( p_item );
1566
1567             if( !name )
1568                 name = input_item_GetName( p_item );
1569
1570             aString = [NSString stringWithUTF8String:name];
1571
1572             free(name);
1573
1574             [self setScrollField: aString stopAfter:-1];
1575             [[[self getControls] getFSPanel] setStreamTitle: aString];
1576
1577             [[o_controls getVoutView] updateTitle];
1578  
1579             [o_playlist updateRowSelection];
1580             p_intf->p_sys->b_current_title_update = FALSE;
1581         }
1582
1583         if( [o_timeslider isEnabled] )
1584         {
1585             /* Update the slider */
1586             vlc_value_t time;
1587             NSString * o_time;
1588             vlc_value_t pos;
1589             char psz_time[MSTRTIME_MAX_SIZE];
1590             float f_updated;
1591
1592             var_Get( p_input, "position", &pos );
1593             f_updated = 10000. * pos.f_float;
1594             [o_timeslider setFloatValue: f_updated];
1595
1596             var_Get( p_input, "time", &time );
1597
1598             o_time = [NSString stringWithUTF8String: secstotimestr( psz_time, (time.i_time / 1000000) )];
1599
1600             [o_timefield setStringValue: o_time];
1601             [[[self getControls] getFSPanel] setStreamPos: f_updated andTime: o_time];
1602             [o_embedded_window setTime: o_time position: f_updated];
1603         }
1604
1605         /* Manage Playing status */
1606         var_Get( p_input, "state", &val );
1607         if( p_intf->p_sys->i_play_status != val.i_int )
1608         {
1609             p_intf->p_sys->i_play_status = val.i_int;
1610             [self playStatusUpdated: p_intf->p_sys->i_play_status];
1611             [o_embedded_window playStatusUpdated: p_intf->p_sys->i_play_status];
1612         }
1613         vlc_object_release( p_input );
1614     }
1615     else if( p_input )
1616     {
1617         vlc_object_release( p_input );
1618     }
1619     else
1620     {
1621         p_intf->p_sys->i_play_status = END_S;
1622         [self playStatusUpdated: p_intf->p_sys->i_play_status];
1623         [o_embedded_window playStatusUpdated: p_intf->p_sys->i_play_status];
1624         [self setSubmenusEnabled: FALSE];
1625     }
1626
1627     if( p_intf->p_sys->b_volume_update )
1628     {
1629         NSString *o_text;
1630         int i_volume_step = 0;
1631         o_text = [NSString stringWithFormat: _NS("Volume: %d%%"), i_lastShownVolume * 400 / AOUT_VOLUME_MAX];
1632         if( i_lastShownVolume != -1 )
1633         [self setScrollField:o_text stopAfter:1000000];
1634         i_volume_step = config_GetInt( p_intf->p_libvlc, "volume-step" );
1635         [o_volumeslider setFloatValue: (float)i_lastShownVolume / i_volume_step];
1636         [o_volumeslider setEnabled: TRUE];
1637         [[[self getControls] getFSPanel] setVolumeLevel: (float)i_lastShownVolume / i_volume_step];
1638         p_intf->p_sys->b_mute = ( i_lastShownVolume == 0 );
1639         p_intf->p_sys->b_volume_update = FALSE;
1640     }
1641
1642 end:
1643     [self updateMessageArray];
1644
1645     if( ((i_end_scroll != -1) && (mdate() > i_end_scroll)) || !p_input )
1646         [self resetScrollField];
1647
1648     [interfaceTimer autorelease];
1649
1650     interfaceTimer = [[NSTimer scheduledTimerWithTimeInterval: 0.3
1651         target: self selector: @selector(manageIntf:)
1652         userInfo: nil repeats: FALSE] retain];
1653 }
1654
1655 #pragma mark -
1656 #pragma mark Interface update
1657
1658 - (void)setupMenus
1659 {
1660     playlist_t * p_playlist = pl_Yield( p_intf );
1661     input_thread_t * p_input = playlist_CurrentInput( p_playlist );
1662     if( p_input != NULL )
1663     {
1664         [o_controls setupVarMenuItem: o_mi_program target: (vlc_object_t *)p_input
1665             var: "program" selector: @selector(toggleVar:)];
1666
1667         [o_controls setupVarMenuItem: o_mi_title target: (vlc_object_t *)p_input
1668             var: "title" selector: @selector(toggleVar:)];
1669
1670         [o_controls setupVarMenuItem: o_mi_chapter target: (vlc_object_t *)p_input
1671             var: "chapter" selector: @selector(toggleVar:)];
1672
1673         [o_controls setupVarMenuItem: o_mi_audiotrack target: (vlc_object_t *)p_input
1674             var: "audio-es" selector: @selector(toggleVar:)];
1675
1676         [o_controls setupVarMenuItem: o_mi_videotrack target: (vlc_object_t *)p_input
1677             var: "video-es" selector: @selector(toggleVar:)];
1678
1679         [o_controls setupVarMenuItem: o_mi_subtitle target: (vlc_object_t *)p_input
1680             var: "spu-es" selector: @selector(toggleVar:)];
1681
1682         aout_instance_t * p_aout = vlc_object_find( p_intf, VLC_OBJECT_AOUT,
1683                                                     FIND_ANYWHERE );
1684         if( p_aout != NULL )
1685         {
1686             [o_controls setupVarMenuItem: o_mi_channels target: (vlc_object_t *)p_aout
1687                 var: "audio-channels" selector: @selector(toggleVar:)];
1688
1689             [o_controls setupVarMenuItem: o_mi_device target: (vlc_object_t *)p_aout
1690                 var: "audio-device" selector: @selector(toggleVar:)];
1691
1692             [o_controls setupVarMenuItem: o_mi_visual target: (vlc_object_t *)p_aout
1693                 var: "visual" selector: @selector(toggleVar:)];
1694             vlc_object_release( (vlc_object_t *)p_aout );
1695         }
1696
1697         vout_thread_t * p_vout = vlc_object_find( p_intf, VLC_OBJECT_VOUT,
1698                                                             FIND_ANYWHERE );
1699
1700         if( p_vout != NULL )
1701         {
1702             vlc_object_t * p_dec_obj;
1703
1704             [o_controls setupVarMenuItem: o_mi_aspect_ratio target: (vlc_object_t *)p_vout
1705                 var: "aspect-ratio" selector: @selector(toggleVar:)];
1706
1707             [o_controls setupVarMenuItem: o_mi_crop target: (vlc_object_t *) p_vout
1708                 var: "crop" selector: @selector(toggleVar:)];
1709
1710             [o_controls setupVarMenuItem: o_mi_screen target: (vlc_object_t *)p_vout
1711                 var: "video-device" selector: @selector(toggleVar:)];
1712
1713             [o_controls setupVarMenuItem: o_mi_deinterlace target: (vlc_object_t *)p_vout
1714                 var: "deinterlace" selector: @selector(toggleVar:)];
1715
1716             p_dec_obj = (vlc_object_t *)vlc_object_find(
1717                                                  (vlc_object_t *)p_vout,
1718                                                  VLC_OBJECT_DECODER,
1719                                                  FIND_PARENT );
1720             if( p_dec_obj != NULL )
1721             {
1722                [o_controls setupVarMenuItem: o_mi_ffmpeg_pp target:
1723                     (vlc_object_t *)p_dec_obj var:"ffmpeg-pp-q" selector:
1724                     @selector(toggleVar:)];
1725
1726                 vlc_object_release(p_dec_obj);
1727             }
1728             vlc_object_release( (vlc_object_t *)p_vout );
1729         }
1730         vlc_object_release( p_input );
1731     }
1732     pl_Release( p_intf );
1733 }
1734
1735 - (void)refreshVoutDeviceMenu:(NSNotification *)o_notification
1736 {
1737     int x,y = 0;
1738     vout_thread_t * p_vout = vlc_object_find( p_intf, VLC_OBJECT_VOUT,
1739                                               FIND_ANYWHERE );
1740  
1741     if(! p_vout )
1742         return;
1743  
1744     /* clean the menu before adding new entries */
1745     if( [o_mi_screen hasSubmenu] )
1746     {
1747         y = [[o_mi_screen submenu] numberOfItems] - 1;
1748         msg_Dbg( VLCIntf, "%i items in submenu", y );
1749         while( x != y )
1750         {
1751             msg_Dbg( VLCIntf, "removing item %i of %i", x, y );
1752             [[o_mi_screen submenu] removeItemAtIndex: x];
1753             x++;
1754         }
1755     }
1756
1757     [o_controls setupVarMenuItem: o_mi_screen target: (vlc_object_t *)p_vout
1758                              var: "video-device" selector: @selector(toggleVar:)];
1759     vlc_object_release( (vlc_object_t *)p_vout );
1760 }
1761
1762 - (void)setScrollField:(NSString *)o_string stopAfter:(int)timeout
1763 {
1764     if( timeout != -1 )
1765         i_end_scroll = mdate() + timeout;
1766     else
1767         i_end_scroll = -1;
1768     [o_scrollfield setStringValue: o_string];
1769 }
1770
1771 - (void)resetScrollField
1772 {
1773     playlist_t * p_playlist = pl_Yield( p_intf );
1774     input_thread_t * p_input = playlist_CurrentInput( p_playlist );
1775
1776     i_end_scroll = -1;
1777     if( p_input && vlc_object_alive (p_input) )
1778     {
1779         NSString *o_temp;
1780         if( input_item_GetNowPlaying ( p_playlist->status.p_item->p_input ) )
1781             o_temp = [NSString stringWithUTF8String: 
1782                 input_item_GetNowPlaying ( p_playlist->status.p_item->p_input )];
1783         else
1784             o_temp = [NSString stringWithUTF8String:
1785                 p_playlist->status.p_item->p_input->psz_name];
1786         [self setScrollField: o_temp stopAfter:-1];
1787         [[[self getControls] getFSPanel] setStreamTitle: o_temp];
1788         vlc_object_release( p_input );
1789         pl_Release( p_intf );
1790         return;
1791     }
1792     pl_Release( p_intf );
1793     [self setScrollField: _NS("VLC media player") stopAfter:-1];
1794 }
1795
1796 - (void)playStatusUpdated:(int)i_status
1797 {
1798     if( i_status == PLAYING_S )
1799     {
1800         [[[self getControls] getFSPanel] setPause];
1801         [o_btn_play setImage: o_img_pause];
1802         [o_btn_play setAlternateImage: o_img_pause_pressed];
1803         [o_btn_play setToolTip: _NS("Pause")];
1804         [o_mi_play setTitle: _NS("Pause")];
1805         [o_dmi_play setTitle: _NS("Pause")];
1806         [o_vmi_play setTitle: _NS("Pause")];
1807     }
1808     else
1809     {
1810         [[[self getControls] getFSPanel] setPlay];
1811         [o_btn_play setImage: o_img_play];
1812         [o_btn_play setAlternateImage: o_img_play_pressed];
1813         [o_btn_play setToolTip: _NS("Play")];
1814         [o_mi_play setTitle: _NS("Play")];
1815         [o_dmi_play setTitle: _NS("Play")];
1816         [o_vmi_play setTitle: _NS("Play")];
1817     }
1818 }
1819
1820 - (void)setSubmenusEnabled:(BOOL)b_enabled
1821 {
1822     [o_mi_program setEnabled: b_enabled];
1823     [o_mi_title setEnabled: b_enabled];
1824     [o_mi_chapter setEnabled: b_enabled];
1825     [o_mi_audiotrack setEnabled: b_enabled];
1826     [o_mi_visual setEnabled: b_enabled];
1827     [o_mi_videotrack setEnabled: b_enabled];
1828     [o_mi_subtitle setEnabled: b_enabled];
1829     [o_mi_channels setEnabled: b_enabled];
1830     [o_mi_deinterlace setEnabled: b_enabled];
1831     [o_mi_ffmpeg_pp setEnabled: b_enabled];
1832     [o_mi_device setEnabled: b_enabled];
1833     [o_mi_screen setEnabled: b_enabled];
1834     [o_mi_aspect_ratio setEnabled: b_enabled];
1835     [o_mi_crop setEnabled: b_enabled];
1836 }
1837
1838 - (IBAction)timesliderUpdate:(id)sender
1839 {
1840     float f_updated;
1841     playlist_t * p_playlist;
1842     input_thread_t * p_input;
1843
1844     switch( [[NSApp currentEvent] type] )
1845     {
1846         case NSLeftMouseUp:
1847         case NSLeftMouseDown:
1848         case NSLeftMouseDragged:
1849             f_updated = [sender floatValue];
1850             break;
1851
1852         default:
1853             return;
1854     }
1855     p_playlist = pl_Yield( p_intf );
1856     p_input = playlist_CurrentInput( p_playlist );
1857     if( p_input != NULL )
1858     {
1859         vlc_value_t time;
1860         vlc_value_t pos;
1861         NSString * o_time;
1862         char psz_time[MSTRTIME_MAX_SIZE];
1863
1864         pos.f_float = f_updated / 10000.;
1865         var_Set( p_input, "position", pos );
1866         [o_timeslider setFloatValue: f_updated];
1867
1868         var_Get( p_input, "time", &time );
1869
1870         o_time = [NSString stringWithUTF8String: secstotimestr( psz_time, (time.i_time / 1000000) )];
1871         [o_timefield setStringValue: o_time];
1872         [[[self getControls] getFSPanel] setStreamPos: f_updated andTime: o_time];
1873         [o_embedded_window setTime: o_time position: f_updated];
1874         vlc_object_release( p_input );
1875     }
1876     pl_Release( p_intf );
1877 }
1878
1879 #pragma mark -
1880 #pragma mark Recent Items
1881
1882 - (IBAction)clearRecentItems:(id)sender
1883 {
1884     [[NSDocumentController sharedDocumentController]
1885                           clearRecentDocuments: nil];
1886 }
1887
1888 - (void)openRecentItem:(id)sender
1889 {
1890     [self application: nil openFile: [sender title]];
1891 }
1892
1893 #pragma mark -
1894 #pragma mark Panels
1895
1896 - (IBAction)intfOpenFile:(id)sender
1897 {
1898     if( !nib_open_loaded )
1899     {
1900         nib_open_loaded = [NSBundle loadNibNamed:@"Open" owner:self];
1901         [o_open awakeFromNib];
1902         [o_open openFile];
1903     } else {
1904         [o_open openFile];
1905     }
1906 }
1907
1908 - (IBAction)intfOpenFileGeneric:(id)sender
1909 {
1910     if( !nib_open_loaded )
1911     {
1912         nib_open_loaded = [NSBundle loadNibNamed:@"Open" owner:self];
1913         [o_open awakeFromNib];
1914         [o_open openFileGeneric];
1915     } else {
1916         [o_open openFileGeneric];
1917     }
1918 }
1919
1920 - (IBAction)intfOpenDisc:(id)sender
1921 {
1922     if( !nib_open_loaded )
1923     {
1924         nib_open_loaded = [NSBundle loadNibNamed:@"Open" owner:self];
1925         [o_open awakeFromNib];
1926         [o_open openDisc];
1927     } else {
1928         [o_open openDisc];
1929     }
1930 }
1931
1932 - (IBAction)intfOpenNet:(id)sender
1933 {
1934     if( !nib_open_loaded )
1935     {
1936         nib_open_loaded = [NSBundle loadNibNamed:@"Open" owner:self];
1937         [o_open awakeFromNib];
1938         [o_open openNet];
1939     } else {
1940         [o_open openNet];
1941     }
1942 }
1943
1944 - (IBAction)intfOpenCapture:(id)sender
1945 {
1946     if( !nib_open_loaded )
1947     {
1948         nib_open_loaded = [NSBundle loadNibNamed:@"Open" owner:self];
1949         [o_open awakeFromNib];
1950         [o_open openCapture];
1951     } else {
1952         [o_open openCapture];
1953     }
1954 }
1955
1956 - (IBAction)showWizard:(id)sender
1957 {
1958     if( !nib_wizard_loaded )
1959     {
1960         nib_wizard_loaded = [NSBundle loadNibNamed:@"Wizard" owner:self];
1961         [o_wizard initStrings];
1962         [o_wizard resetWizard];
1963         [o_wizard showWizard];
1964     } else {
1965         [o_wizard resetWizard];
1966         [o_wizard showWizard];
1967     }
1968 }
1969
1970 - (IBAction)showExtended:(id)sender
1971 {
1972     if( o_extended == nil )
1973         o_extended = [[VLCExtended alloc] init];
1974
1975     if( !nib_extended_loaded )
1976         nib_extended_loaded = [NSBundle loadNibNamed:@"Extended" owner:self];
1977
1978     [o_extended showPanel];
1979 }
1980
1981 - (IBAction)showBookmarks:(id)sender
1982 {
1983     /* we need the wizard-nib for the bookmarks's extract functionality */
1984     if( !nib_wizard_loaded )
1985     {
1986         nib_wizard_loaded = [NSBundle loadNibNamed:@"Wizard" owner:self];
1987         [o_wizard initStrings];
1988     }
1989  
1990     if( !nib_bookmarks_loaded )
1991         nib_bookmarks_loaded = [NSBundle loadNibNamed:@"Bookmarks" owner:self];
1992
1993     [o_bookmarks showBookmarks];
1994 }
1995
1996 - (IBAction)viewPreferences:(id)sender
1997 {
1998     if( !nib_prefs_loaded )
1999     {
2000         nib_prefs_loaded = [NSBundle loadNibNamed:@"Preferences" owner: self];
2001         o_sprefs = [[VLCSimplePrefs alloc] init];
2002         o_prefs= [[VLCPrefs alloc] init];
2003     }
2004
2005     [o_sprefs showSimplePrefs];
2006 }
2007
2008 #pragma mark -
2009 #pragma mark Update
2010
2011 - (IBAction)checkForUpdate:(id)sender
2012 {
2013 #ifdef UPDATE_CHECK
2014     if( !nib_update_loaded )
2015         nib_update_loaded = [NSBundle loadNibNamed:@"Update" owner:self];
2016     [o_update showUpdateWindow];
2017 #else
2018     msg_Err( VLCIntf, "Update checker wasn't enabled in this build" );
2019     intf_UserFatal( VLCIntf, false, _("Update check failed"), _("Checking for updates was not enabled in this build.") );
2020 #endif
2021 }
2022
2023 #pragma mark -
2024 #pragma mark Help and Docs
2025
2026 - (IBAction)viewAbout:(id)sender
2027 {
2028     if( !nib_about_loaded )
2029         nib_about_loaded = [NSBundle loadNibNamed:@"About" owner:self];
2030
2031     [o_about showAbout];
2032 }
2033
2034 - (IBAction)showLicense:(id)sender
2035 {
2036     if( !nib_about_loaded )
2037         nib_about_loaded = [NSBundle loadNibNamed:@"About" owner:self];
2038
2039     [o_about showGPL: sender];
2040 }
2041     
2042 - (IBAction)viewHelp:(id)sender
2043 {
2044     if( !nib_about_loaded )
2045     {
2046         nib_about_loaded = [NSBundle loadNibNamed:@"About" owner:self];
2047         [o_about showHelp];
2048     }
2049     else
2050         [o_about showHelp];
2051 }
2052
2053 - (IBAction)openReadMe:(id)sender
2054 {
2055     NSString * o_path = [[NSBundle mainBundle]
2056         pathForResource: @"README.MacOSX" ofType: @"rtf"];
2057
2058     [[NSWorkspace sharedWorkspace] openFile: o_path
2059                                    withApplication: @"TextEdit"];
2060 }
2061
2062 - (IBAction)openDocumentation:(id)sender
2063 {
2064     NSURL * o_url = [NSURL URLWithString:
2065         @"http://www.videolan.org/doc/"];
2066
2067     [[NSWorkspace sharedWorkspace] openURL: o_url];
2068 }
2069
2070 - (IBAction)openWebsite:(id)sender
2071 {
2072     NSURL * o_url = [NSURL URLWithString: @"http://www.videolan.org/"];
2073
2074     [[NSWorkspace sharedWorkspace] openURL: o_url];
2075 }
2076
2077 - (IBAction)openForum:(id)sender
2078 {
2079     NSURL * o_url = [NSURL URLWithString: @"http://forum.videolan.org/"];
2080
2081     [[NSWorkspace sharedWorkspace] openURL: o_url];
2082 }
2083
2084 - (IBAction)openDonate:(id)sender
2085 {
2086     NSURL * o_url = [NSURL URLWithString: @"http://www.videolan.org/contribute.html#paypal"];
2087
2088     [[NSWorkspace sharedWorkspace] openURL: o_url];
2089 }
2090
2091 #pragma mark -
2092 #pragma mark Crash Log
2093 - (void)sendCrashLog:(NSString *)crashLog withUserComment:(NSString *)userComment
2094 {
2095     NSString *urlStr = @"http://jones.videolan.org/crashlog/sendcrashreport.php";
2096     NSURL *url = [NSURL URLWithString:urlStr];
2097
2098     NSMutableURLRequest *req = [NSMutableURLRequest requestWithURL:url];
2099     [req setHTTPMethod:@"POST"];
2100
2101     NSString * email;
2102     if( [o_crashrep_includeEmail_ckb state] == NSOnState )
2103     {
2104         ABPerson * contact = [[ABAddressBook sharedAddressBook] me];
2105         ABMultiValue *emails = [contact valueForProperty:kABEmailProperty];
2106         email = [emails valueAtIndex:[emails indexForIdentifier:
2107                     [emails primaryIdentifier]]];
2108     }
2109     else
2110         email = [NSString string];
2111
2112     NSString *postBody;
2113     postBody = [NSString stringWithFormat:@"CrashLog=%@&Comment=%@&Email=%@\r\n",
2114             [crashLog stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding],
2115             [userComment stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding],
2116             [email stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
2117
2118     [req setHTTPBody:[postBody dataUsingEncoding:NSUTF8StringEncoding]];
2119
2120     /* Released from delegate */
2121     crashLogURLConnection = [[NSURLConnection alloc] initWithRequest:req delegate:self];
2122 }
2123
2124 - (void)connectionDidFinishLoading:(NSURLConnection *)connection
2125 {
2126     NSRunInformationalAlertPanel(_NS("Crash Report successfully sent"),
2127                 _NS("Thanks for your report!"),
2128                 _NS("OK"), nil, nil, nil);
2129     [crashLogURLConnection release];
2130     crashLogURLConnection = nil;
2131 }
2132
2133 - (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error
2134 {
2135     NSRunCriticalAlertPanel(_NS("Error when sending the Crash Report"), [error localizedDescription], @"OK", nil, nil);
2136     [crashLogURLConnection release];
2137     crashLogURLConnection = nil;
2138 }
2139
2140 - (NSString *)latestCrashLogPathPreviouslySeen:(BOOL)previouslySeen
2141 {
2142     NSString * crashReporter = [@"~/Library/Logs/CrashReporter" stringByExpandingTildeInPath];
2143     NSDirectoryEnumerator *direnum = [[NSFileManager defaultManager] enumeratorAtPath:crashReporter];
2144     NSString *fname;
2145     NSString * latestLog = nil;
2146     int year  = !previouslySeen ? [[NSUserDefaults standardUserDefaults] integerForKey:@"LatestCrashReportYear"] : 0;
2147     int month = !previouslySeen ? [[NSUserDefaults standardUserDefaults] integerForKey:@"LatestCrashReportMonth"]: 0;
2148     int day   = !previouslySeen ? [[NSUserDefaults standardUserDefaults] integerForKey:@"LatestCrashReportDay"]  : 0;
2149     int hours = !previouslySeen ? [[NSUserDefaults standardUserDefaults] integerForKey:@"LatestCrashReportHours"]: 0;
2150
2151     while (fname = [direnum nextObject])
2152     {
2153         [direnum skipDescendents];
2154         if([fname hasPrefix:@"VLC"] && [fname hasSuffix:@"crash"])
2155         {
2156             NSArray * compo = [fname componentsSeparatedByString:@"_"];
2157             if( [compo count] < 3 ) continue;
2158             compo = [[compo objectAtIndex:1] componentsSeparatedByString:@"-"];
2159             if( [compo count] < 4 ) continue;
2160
2161             // Dooh. ugly.
2162             if( year < [[compo objectAtIndex:0] intValue] ||
2163                 (year ==[[compo objectAtIndex:0] intValue] && 
2164                  (month < [[compo objectAtIndex:1] intValue] ||
2165                   (month ==[[compo objectAtIndex:1] intValue] &&
2166                    (day   < [[compo objectAtIndex:2] intValue] ||
2167                     (day   ==[[compo objectAtIndex:2] intValue] &&
2168                       hours < [[compo objectAtIndex:3] intValue] ))))))
2169             {
2170                 year  = [[compo objectAtIndex:0] intValue];
2171                 month = [[compo objectAtIndex:1] intValue];
2172                 day   = [[compo objectAtIndex:2] intValue];
2173                 hours = [[compo objectAtIndex:3] intValue];
2174                 latestLog = [crashReporter stringByAppendingPathComponent:fname];
2175             }
2176         }
2177     }
2178
2179     if(!(latestLog && [[NSFileManager defaultManager] fileExistsAtPath:latestLog]))
2180         return nil;
2181
2182     if( !previouslySeen )
2183     {
2184         [[NSUserDefaults standardUserDefaults] setInteger:year  forKey:@"LatestCrashReportYear"];
2185         [[NSUserDefaults standardUserDefaults] setInteger:month forKey:@"LatestCrashReportMonth"];
2186         [[NSUserDefaults standardUserDefaults] setInteger:day   forKey:@"LatestCrashReportDay"];
2187         [[NSUserDefaults standardUserDefaults] setInteger:hours forKey:@"LatestCrashReportHours"];
2188     }
2189     return latestLog;
2190 }
2191
2192 - (NSString *)latestCrashLogPath
2193 {
2194     return [self latestCrashLogPathPreviouslySeen:YES];
2195 }
2196
2197 - (void)lookForCrashLog
2198 {
2199     NSAutoreleasePool *o_pool = [[NSAutoreleasePool alloc] init];
2200     // This pref key doesn't exists? this VLC is an upgrade, and this crash log come from previous version
2201     BOOL areCrashLogsTooOld = ![[NSUserDefaults standardUserDefaults] integerForKey:@"LatestCrashReportYear"];
2202     NSString * latestLog = [self latestCrashLogPathPreviouslySeen:NO];
2203     if( latestLog && !areCrashLogsTooOld )
2204         [NSApp runModalForWindow: o_crashrep_win];
2205     [o_pool release];
2206 }
2207
2208 - (IBAction)crashReporterAction:(id)sender
2209 {
2210     if( sender == o_crashrep_send_btn )
2211         [self sendCrashLog:[NSString stringWithContentsOfFile: [self latestCrashLogPath]] withUserComment: [o_crashrep_fld string]];
2212
2213     [NSApp stopModal];
2214     [o_crashrep_win orderOut: sender];
2215 }
2216
2217 - (IBAction)openCrashLog:(id)sender
2218 {
2219     NSString * latestLog = [self latestCrashLogPath];
2220     if( latestLog )
2221     {
2222         [[NSWorkspace sharedWorkspace] openFile: latestLog withApplication: @"Console"];
2223     }
2224     else
2225     {
2226         NSBeginInformationalAlertSheet(_NS("No CrashLog found"), _NS("Continue"), nil, nil, o_msgs_panel, self, NULL, NULL, nil, _NS("Couldn't find any trace of a previous crash.") );
2227     }
2228 }
2229
2230 #pragma mark -
2231 #pragma mark Remove old prefs
2232
2233 - (void)_removeOldPreferences
2234 {
2235     static NSString * kVLCPreferencesVersion = @"VLCPreferencesVersion";
2236     static const int kCurrentPreferencesVersion = 1;
2237     int version = [[NSUserDefaults standardUserDefaults] integerForKey:kVLCPreferencesVersion];
2238     if( version >= kCurrentPreferencesVersion ) return;
2239
2240     NSArray *libraries = NSSearchPathForDirectoriesInDomains(NSLibraryDirectory, 
2241         NSUserDomainMask, YES);
2242     if( !libraries || [libraries count] == 0) return;
2243     NSString * preferences = [[libraries objectAtIndex:0] stringByAppendingPathComponent:@"Preferences"];
2244
2245     /* File not found, don't attempt anything */
2246     if(![[NSFileManager defaultManager] fileExistsAtPath:[preferences stringByAppendingPathComponent:@"VLC"]] &&
2247        ![[NSFileManager defaultManager] fileExistsAtPath:[preferences stringByAppendingPathComponent:@"org.videolan.vlc.plist"]] )
2248     {
2249         [[NSUserDefaults standardUserDefaults] setInteger:kCurrentPreferencesVersion forKey:kVLCPreferencesVersion];
2250         return;
2251     }
2252
2253     int res = NSRunInformationalAlertPanel(_NS("Remove old preferences?"),
2254                 _NS("We just found an older version of VLC's preferences files."),
2255                 _NS("Move To Trash and Relaunch VLC"), _NS("Ignore"), nil, nil);
2256     if( res != NSOKButton )
2257     {
2258         [[NSUserDefaults standardUserDefaults] setInteger:kCurrentPreferencesVersion forKey:kVLCPreferencesVersion];
2259         return;
2260     }
2261
2262     NSArray * ourPreferences = [NSArray arrayWithObjects:@"org.videolan.vlc.plist", @"VLC"];
2263
2264     /* Move the file to trash so that user can find them later */
2265     [[NSWorkspace sharedWorkspace] performFileOperation:NSWorkspaceRecycleOperation source:preferences destination:nil files:ourPreferences tag:0];
2266
2267     /* really reset the defaults from now on */
2268     [NSUserDefaults resetStandardUserDefaults];
2269
2270     [[NSUserDefaults standardUserDefaults] setInteger:kCurrentPreferencesVersion forKey:kVLCPreferencesVersion];
2271     [[NSUserDefaults standardUserDefaults] synchronize];
2272
2273     /* Relaunch now */
2274     const char * path = [[[NSBundle mainBundle] executablePath] UTF8String];
2275     const char *spawnedArgs[2] = { path, NULL };
2276     char *spawnedEnv[] = {NULL};
2277
2278     posix_spawn(NULL, path, NULL, NULL, spawnedArgs, spawnedEnv);
2279     exit(0);
2280 }
2281
2282 #pragma mark -
2283 #pragma mark Errors, warnings and messages
2284
2285 - (IBAction)viewErrorsAndWarnings:(id)sender
2286 {
2287     [[[self getInteractionList] getErrorPanel] showPanel];
2288 }
2289
2290 - (IBAction)showMessagesPanel:(id)sender
2291 {
2292     [o_msgs_panel makeKeyAndOrderFront: sender];
2293 }
2294
2295 - (IBAction)showInformationPanel:(id)sender
2296 {
2297     if(! nib_info_loaded )
2298         nib_info_loaded = [NSBundle loadNibNamed:@"MediaInfo" owner: self];
2299     
2300     [o_info initPanel];
2301 }
2302
2303 - (void)windowDidBecomeKey:(NSNotification *)o_notification
2304 {
2305     if( [o_notification object] == o_msgs_panel )
2306     {
2307         id o_msg;
2308         NSEnumerator * o_enum;
2309
2310         [o_messages setString: @""];
2311
2312         [o_msg_lock lock];
2313
2314         o_enum = [o_msg_arr objectEnumerator];
2315
2316         while( ( o_msg = [o_enum nextObject] ) != nil )
2317         {
2318             [o_messages insertText: o_msg];
2319         }
2320
2321         [o_msg_lock unlock];
2322     }
2323 }
2324
2325 - (void)updateMessageArray
2326 {
2327     int i_start, i_stop;
2328
2329     vlc_mutex_lock( p_intf->p_sys->p_sub->p_lock );
2330     i_stop = *p_intf->p_sys->p_sub->pi_stop;
2331     vlc_mutex_unlock( p_intf->p_sys->p_sub->p_lock );
2332
2333     if( p_intf->p_sys->p_sub->i_start != i_stop )
2334     {
2335         NSColor *o_white = [NSColor whiteColor];
2336         NSColor *o_red = [NSColor redColor];
2337         NSColor *o_yellow = [NSColor yellowColor];
2338         NSColor *o_gray = [NSColor grayColor];
2339
2340         NSColor * pp_color[4] = { o_white, o_red, o_yellow, o_gray };
2341         static const char * ppsz_type[4] = { ": ", " error: ",
2342                                              " warning: ", " debug: " };
2343
2344         for( i_start = p_intf->p_sys->p_sub->i_start;
2345              i_start != i_stop;
2346              i_start = (i_start+1) % VLC_MSG_QSIZE )
2347         {
2348             NSString *o_msg;
2349             NSDictionary *o_attr;
2350             NSAttributedString *o_msg_color;
2351
2352             int i_type = p_intf->p_sys->p_sub->p_msg[i_start].i_type;
2353
2354             [o_msg_lock lock];
2355
2356             if( [o_msg_arr count] + 2 > 400 )
2357             {
2358                 unsigned rid[] = { 0, 1 };
2359                 [o_msg_arr removeObjectsFromIndices: (unsigned *)&rid
2360                            numIndices: sizeof(rid)/sizeof(rid[0])];
2361             }
2362
2363             o_attr = [NSDictionary dictionaryWithObject: o_gray
2364                 forKey: NSForegroundColorAttributeName];
2365             o_msg = [NSString stringWithFormat: @"%s%s",
2366                 p_intf->p_sys->p_sub->p_msg[i_start].psz_module,
2367                 ppsz_type[i_type]];
2368             o_msg_color = [[NSAttributedString alloc]
2369                 initWithString: o_msg attributes: o_attr];
2370             [o_msg_arr addObject: [o_msg_color autorelease]];
2371
2372             o_attr = [NSDictionary dictionaryWithObject: pp_color[i_type]
2373                 forKey: NSForegroundColorAttributeName];
2374             o_msg = [[NSString stringWithUTF8String: p_intf->p_sys->p_sub->p_msg[i_start].psz_msg] stringByAppendingString: @"\n"];
2375             o_msg_color = [[NSAttributedString alloc]
2376                 initWithString: o_msg attributes: o_attr];
2377             [o_msg_arr addObject: [o_msg_color autorelease]];
2378
2379             [o_msg_lock unlock];
2380         }
2381
2382         vlc_mutex_lock( p_intf->p_sys->p_sub->p_lock );
2383         p_intf->p_sys->p_sub->i_start = i_start;
2384         vlc_mutex_unlock( p_intf->p_sys->p_sub->p_lock );
2385     }
2386 }
2387
2388 #pragma mark -
2389 #pragma mark Playlist toggling
2390
2391 - (IBAction)togglePlaylist:(id)sender
2392 {
2393     NSRect contentRect = [o_window contentRectForFrameRect:[o_window frame]];
2394     NSRect o_rect = [o_window contentRectForFrameRect:[o_window frame]];
2395     /*First, check if the playlist is visible*/
2396     if( contentRect.size.height <= 169. )
2397     {
2398         o_restore_rect = contentRect;
2399         b_restore_size = true;
2400         b_small_window = YES; /* we know we are small, make sure this is actually set (see case below) */
2401
2402         /* make large */
2403         if( o_size_with_playlist.height > 169. )
2404             o_rect.size.height = o_size_with_playlist.height;
2405         else
2406             o_rect.size.height = 500.;
2407  
2408         if( o_size_with_playlist.width >= [o_window contentMinSize].width )
2409             o_rect.size.width = o_size_with_playlist.width;
2410         else
2411             o_rect.size.width = [o_window contentMinSize].width;
2412
2413         o_rect.origin.x = contentRect.origin.x;
2414         o_rect.origin.y = contentRect.origin.y - o_rect.size.height +
2415             [o_window contentMinSize].height;
2416
2417         o_rect = [o_window frameRectForContentRect:o_rect];
2418
2419         NSRect screenRect = [[o_window screen] visibleFrame];
2420         if( !NSContainsRect( screenRect, o_rect ) ) {
2421             if( NSMaxX(o_rect) > NSMaxX(screenRect) )
2422                 o_rect.origin.x = ( NSMaxX(screenRect) - o_rect.size.width );
2423             if( NSMinY(o_rect) < NSMinY(screenRect) )
2424                 o_rect.origin.y = ( NSMinY(screenRect) );
2425         }
2426
2427         [o_btn_playlist setState: YES];
2428     }
2429     else
2430     {
2431         NSSize curSize = o_rect.size;
2432         if( b_restore_size )
2433         {
2434             o_rect = o_restore_rect;
2435             if( o_rect.size.height < [o_window contentMinSize].height )
2436                 o_rect.size.height = [o_window contentMinSize].height;
2437             if( o_rect.size.width < [o_window contentMinSize].width )
2438                 o_rect.size.width = [o_window contentMinSize].width;
2439         }
2440         else
2441         {
2442             NSRect contentRect = [o_window contentRectForFrameRect:[o_window frame]];
2443             /* make small */
2444             o_rect.size.height = [o_window contentMinSize].height;
2445             o_rect.size.width = [o_window contentMinSize].width;
2446             o_rect.origin.x = contentRect.origin.x;
2447             /* Calculate the position of the lower right corner after resize */
2448             o_rect.origin.y = contentRect.origin.y +
2449                 contentRect.size.height - [o_window contentMinSize].height;
2450         }
2451
2452         [o_playlist_view setAutoresizesSubviews: NO];
2453         [o_playlist_view removeFromSuperview];
2454         [o_btn_playlist setState: NO];
2455         b_small_window = NO; /* we aren't small here just yet. we are doing an animated resize after this */
2456         o_rect = [o_window frameRectForContentRect:o_rect];
2457     }
2458
2459     [o_window setFrame: o_rect display:YES animate: YES];
2460 }
2461
2462 - (void)updateTogglePlaylistState
2463 {
2464     if( [o_window contentRectForFrameRect:[o_window frame]].size.height <= 169. )
2465     {
2466         [o_btn_playlist setState: NO];
2467     }
2468     else
2469     {
2470         [o_btn_playlist setState: YES];
2471     }
2472 }
2473
2474 - (NSSize)windowWillResize:(NSWindow *)sender toSize:(NSSize)proposedFrameSize
2475 {
2476
2477     /* Not triggered on a window resize or maxification of the window. only by window mouse dragging resize */
2478
2479    /*Stores the size the controller one resize, to be able to restore it when
2480      toggling the playlist*/
2481     o_size_with_playlist = proposedFrameSize;
2482
2483     NSRect rect;
2484     rect.size = proposedFrameSize;
2485     if( [o_window contentRectForFrameRect:rect].size.height <= 169. )
2486     {
2487         if( b_small_window == NO )
2488         {
2489             /* if large and going to small then hide */
2490             b_small_window = YES;
2491             [o_playlist_view setAutoresizesSubviews: NO];
2492             [o_playlist_view removeFromSuperview];
2493         }
2494         return NSMakeSize( proposedFrameSize.width, [o_window minSize].height);
2495     }
2496     return proposedFrameSize;
2497 }
2498
2499 - (void)windowDidMove:(NSNotification *)notif
2500 {
2501     b_restore_size = false;
2502 }
2503
2504 - (void)windowDidResize:(NSNotification *)notif
2505 {
2506     if( [o_window contentRectForFrameRect:[o_window frame]].size.height > 169. && b_small_window )
2507     {
2508         /* If large and coming from small then show */
2509         [o_playlist_view setAutoresizesSubviews: YES];
2510         NSRect contentRect = [o_window contentRectForFrameRect:[o_window frame]];
2511         [o_playlist_view setFrame: NSMakeRect( 0, 0, contentRect.size.width, contentRect.size.height - [o_window contentMinSize].height )];
2512         [o_playlist_view setNeedsDisplay:YES];
2513         [[o_window contentView] addSubview: o_playlist_view];
2514         b_small_window = NO;
2515     }
2516     [self updateTogglePlaylistState];
2517 }
2518
2519 #pragma mark -
2520
2521 @end
2522
2523 @implementation VLCMain (NSMenuValidation)
2524
2525 - (BOOL)validateMenuItem:(NSMenuItem *)o_mi
2526 {
2527     NSString *o_title = [o_mi title];
2528     BOOL bEnabled = TRUE;
2529
2530     /* Recent Items Menu */
2531     if( [o_title isEqualToString: _NS("Clear Menu")] )
2532     {
2533         NSMenu * o_menu = [o_mi_open_recent submenu];
2534         int i_nb_items = [o_menu numberOfItems];
2535         NSArray * o_docs = [[NSDocumentController sharedDocumentController]
2536                                                        recentDocumentURLs];
2537         UInt32 i_nb_docs = [o_docs count];
2538
2539         if( i_nb_items > 1 )
2540         {
2541             while( --i_nb_items )
2542             {
2543                 [o_menu removeItemAtIndex: 0];
2544             }
2545         }
2546
2547         if( i_nb_docs > 0 )
2548         {
2549             NSURL * o_url;
2550             NSString * o_doc;
2551
2552             [o_menu insertItem: [NSMenuItem separatorItem] atIndex: 0];
2553
2554             while( TRUE )
2555             {
2556                 i_nb_docs--;
2557
2558                 o_url = [o_docs objectAtIndex: i_nb_docs];
2559
2560                 if( [o_url isFileURL] )
2561                 {
2562                     o_doc = [o_url path];
2563                 }
2564                 else
2565                 {
2566                     o_doc = [o_url absoluteString];
2567                 }
2568
2569                 [o_menu insertItemWithTitle: o_doc
2570                     action: @selector(openRecentItem:)
2571                     keyEquivalent: @"" atIndex: 0];
2572
2573                 if( i_nb_docs == 0 )
2574                 {
2575                     break;
2576                 }
2577             }
2578         }
2579         else
2580         {
2581             bEnabled = FALSE;
2582         }
2583     }
2584     return( bEnabled );
2585 }
2586
2587 @end
2588
2589 @implementation VLCMain (Internal)
2590
2591 - (void)handlePortMessage:(NSPortMessage *)o_msg
2592 {
2593     id ** val;
2594     NSData * o_data;
2595     NSValue * o_value;
2596     NSInvocation * o_inv;
2597     NSConditionLock * o_lock;
2598
2599     o_data = [[o_msg components] lastObject];
2600     o_inv = *((NSInvocation **)[o_data bytes]);
2601     [o_inv getArgument: &o_value atIndex: 2];
2602     val = (id **)[o_value pointerValue];
2603     [o_inv setArgument: val[1] atIndex: 2];
2604     o_lock = *(val[0]);
2605
2606     [o_lock lock];
2607     [o_inv invoke];
2608     [o_lock unlockWithCondition: 1];
2609 }
2610
2611 @end