]> git.sesse.net Git - vlc/blob - modules/gui/macosx/intf.m
macosx: Dont' forget to unlock.
[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 <unistd.h> /* execl() */
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         vlc_object_unlock( p_intf );
1418         msleep( INTF_IDLE_SLEEP );
1419         vlc_object_lock( p_intf );
1420     }
1421     vlc_object_unlock( p_intf );
1422     [o_pool release];
1423
1424     if( p_input ) vlc_object_release( p_input );
1425
1426     var_DelCallback( p_playlist, "playlist-current", PlaylistChanged, self );
1427     var_DelCallback( p_playlist, "intf-change", PlaylistChanged, self );
1428     var_DelCallback( p_playlist, "item-change", PlaylistChanged, self );
1429     var_DelCallback( p_playlist, "item-append", PlaylistChanged, self );
1430     var_DelCallback( p_playlist, "item-deleted", PlaylistChanged, self );
1431
1432     pthread_testcancel(); /* If we were cancelled stop here */
1433
1434     msg_Dbg( p_intf, "Killing the Mac OS X module" );
1435
1436     /* We are dead, terminate */
1437     [NSApp performSelectorOnMainThread: @selector(terminate:) withObject:nil waitUntilDone:NO];
1438 }
1439
1440 - (void)manageVolumeSlider
1441 {
1442     audio_volume_t i_volume;
1443     aout_VolumeGet( p_intf, &i_volume );
1444
1445     if( i_volume != i_lastShownVolume )
1446     {
1447         i_lastShownVolume = i_volume;
1448         p_intf->p_sys->b_volume_update = TRUE;
1449     }
1450 }
1451
1452 - (void)manageIntf:(NSTimer *)o_timer
1453 {
1454     vlc_value_t val;
1455     playlist_t * p_playlist;
1456     input_thread_t * p_input;
1457
1458     if( p_intf->p_sys->b_input_update )
1459     {
1460         /* Called when new input is opened */
1461         p_intf->p_sys->b_current_title_update = true;
1462         p_intf->p_sys->b_intf_update = true;
1463         p_intf->p_sys->b_input_update = false;
1464         [self setupMenus]; /* Make sure input menu is up to date */
1465     }
1466     if( p_intf->p_sys->b_intf_update )
1467     {
1468         bool b_input = false;
1469         bool b_plmul = false;
1470         bool b_control = false;
1471         bool b_seekable = false;
1472         bool b_chapters = false;
1473
1474         playlist_t * p_playlist = pl_Yield( p_intf );
1475     /* TODO: fix i_size use */
1476         b_plmul = p_playlist->items.i_size > 1;
1477
1478         p_input = playlist_CurrentInput( p_playlist );
1479         bool b_buffering = NO;
1480     
1481         if( ( b_input = ( p_input != NULL ) ) )
1482         {
1483             /* seekable streams */
1484             cachedInputState = input_GetState( p_input );
1485             if ( cachedInputState == INIT_S ||
1486                  cachedInputState == OPENING_S ||
1487                  cachedInputState == BUFFERING_S )
1488             {
1489                 b_buffering = YES;
1490             }
1491                  
1492             /* seekable streams */
1493             b_seekable = var_GetBool( p_input, "seekable" );
1494
1495             /* check whether slow/fast motion is possible */
1496             b_control = p_input->b_can_pace_control;
1497
1498             /* chapters & titles */
1499             //b_chapters = p_input->stream.i_area_nb > 1;
1500             vlc_object_release( p_input );
1501         }
1502         pl_Release( p_intf );
1503
1504         if( b_buffering )
1505         {
1506             [o_main_pgbar startAnimation:self];
1507             [o_main_pgbar setIndeterminate:YES];
1508             [o_main_pgbar setHidden:NO];
1509         }
1510         else
1511         {
1512             [o_main_pgbar stopAnimation:self];
1513             [o_main_pgbar setHidden:YES];
1514         }
1515
1516         [o_btn_stop setEnabled: b_input];
1517         [o_btn_ff setEnabled: b_seekable];
1518         [o_btn_rewind setEnabled: b_seekable];
1519         [o_btn_prev setEnabled: (b_plmul || b_chapters)];
1520         [o_btn_next setEnabled: (b_plmul || b_chapters)];
1521
1522         [o_timeslider setFloatValue: 0.0];
1523         [o_timeslider setEnabled: b_seekable];
1524         [o_timefield setStringValue: @"00:00"];
1525         [[[self getControls] getFSPanel] setStreamPos: 0 andTime: @"00:00"];
1526         [[[self getControls] getFSPanel] setSeekable: b_seekable];
1527
1528         [o_embedded_window setSeekable: b_seekable];
1529
1530         p_intf->p_sys->b_current_title_update = true;
1531         
1532         p_intf->p_sys->b_intf_update = false;
1533     }
1534
1535     if( p_intf->p_sys->b_playmode_update )
1536     {
1537         [o_playlist playModeUpdated];
1538         p_intf->p_sys->b_playmode_update = false;
1539     }
1540     if( p_intf->p_sys->b_playlist_update )
1541     {
1542         [o_playlist playlistUpdated];
1543         p_intf->p_sys->b_playlist_update = false;
1544     }
1545
1546     if( p_intf->p_sys->b_fullscreen_update )
1547     {
1548         p_intf->p_sys->b_fullscreen_update = false;
1549     }
1550
1551     if( p_intf->p_sys->b_intf_show )
1552     {
1553         [o_window makeKeyAndOrderFront: self];
1554
1555         p_intf->p_sys->b_intf_show = false;
1556     }
1557
1558     p_input = pl_CurrentInput( p_intf );
1559     if( p_input && vlc_object_alive (p_input) )
1560     {
1561         vlc_value_t val;
1562
1563         if( p_intf->p_sys->b_current_title_update )
1564         {
1565             NSString *aString;
1566             input_item_t * p_item = input_GetItem( p_input );
1567             char * name = input_item_GetNowPlaying( p_item );
1568
1569             if( !name )
1570                 name = input_item_GetName( p_item );
1571
1572             aString = [NSString stringWithUTF8String:name];
1573
1574             free(name);
1575
1576             [self setScrollField: aString stopAfter:-1];
1577             [[[self getControls] getFSPanel] setStreamTitle: aString];
1578
1579             [[o_controls getVoutView] updateTitle];
1580  
1581             [o_playlist updateRowSelection];
1582             p_intf->p_sys->b_current_title_update = FALSE;
1583         }
1584
1585         if( [o_timeslider isEnabled] )
1586         {
1587             /* Update the slider */
1588             vlc_value_t time;
1589             NSString * o_time;
1590             vlc_value_t pos;
1591             char psz_time[MSTRTIME_MAX_SIZE];
1592             float f_updated;
1593
1594             var_Get( p_input, "position", &pos );
1595             f_updated = 10000. * pos.f_float;
1596             [o_timeslider setFloatValue: f_updated];
1597
1598             var_Get( p_input, "time", &time );
1599
1600             o_time = [NSString stringWithUTF8String: secstotimestr( psz_time, (time.i_time / 1000000) )];
1601
1602             [o_timefield setStringValue: o_time];
1603             [[[self getControls] getFSPanel] setStreamPos: f_updated andTime: o_time];
1604             [o_embedded_window setTime: o_time position: f_updated];
1605         }
1606
1607         /* Manage Playing status */
1608         var_Get( p_input, "state", &val );
1609         if( p_intf->p_sys->i_play_status != val.i_int )
1610         {
1611             p_intf->p_sys->i_play_status = val.i_int;
1612             [self playStatusUpdated: p_intf->p_sys->i_play_status];
1613             [o_embedded_window playStatusUpdated: p_intf->p_sys->i_play_status];
1614         }
1615         vlc_object_release( p_input );
1616     }
1617     else if( p_input )
1618     {
1619         vlc_object_release( p_input );
1620     }
1621     else
1622     {
1623         p_intf->p_sys->i_play_status = END_S;
1624         [self playStatusUpdated: p_intf->p_sys->i_play_status];
1625         [o_embedded_window playStatusUpdated: p_intf->p_sys->i_play_status];
1626         [self setSubmenusEnabled: FALSE];
1627     }
1628
1629     if( p_intf->p_sys->b_volume_update )
1630     {
1631         NSString *o_text;
1632         int i_volume_step = 0;
1633         o_text = [NSString stringWithFormat: _NS("Volume: %d%%"), i_lastShownVolume * 400 / AOUT_VOLUME_MAX];
1634         if( i_lastShownVolume != -1 )
1635         [self setScrollField:o_text stopAfter:1000000];
1636         i_volume_step = config_GetInt( p_intf->p_libvlc, "volume-step" );
1637         [o_volumeslider setFloatValue: (float)i_lastShownVolume / i_volume_step];
1638         [o_volumeslider setEnabled: TRUE];
1639         [[[self getControls] getFSPanel] setVolumeLevel: (float)i_lastShownVolume / i_volume_step];
1640         p_intf->p_sys->b_mute = ( i_lastShownVolume == 0 );
1641         p_intf->p_sys->b_volume_update = FALSE;
1642     }
1643
1644 end:
1645     [self updateMessageArray];
1646
1647     if( ((i_end_scroll != -1) && (mdate() > i_end_scroll)) || !p_input )
1648         [self resetScrollField];
1649
1650     [interfaceTimer autorelease];
1651
1652     interfaceTimer = [[NSTimer scheduledTimerWithTimeInterval: 0.3
1653         target: self selector: @selector(manageIntf:)
1654         userInfo: nil repeats: FALSE] retain];
1655 }
1656
1657 #pragma mark -
1658 #pragma mark Interface update
1659
1660 - (void)setupMenus
1661 {
1662     playlist_t * p_playlist = pl_Yield( p_intf );
1663     input_thread_t * p_input = playlist_CurrentInput( p_playlist );
1664     if( p_input != NULL )
1665     {
1666         [o_controls setupVarMenuItem: o_mi_program target: (vlc_object_t *)p_input
1667             var: "program" selector: @selector(toggleVar:)];
1668
1669         [o_controls setupVarMenuItem: o_mi_title target: (vlc_object_t *)p_input
1670             var: "title" selector: @selector(toggleVar:)];
1671
1672         [o_controls setupVarMenuItem: o_mi_chapter target: (vlc_object_t *)p_input
1673             var: "chapter" selector: @selector(toggleVar:)];
1674
1675         [o_controls setupVarMenuItem: o_mi_audiotrack target: (vlc_object_t *)p_input
1676             var: "audio-es" selector: @selector(toggleVar:)];
1677
1678         [o_controls setupVarMenuItem: o_mi_videotrack target: (vlc_object_t *)p_input
1679             var: "video-es" selector: @selector(toggleVar:)];
1680
1681         [o_controls setupVarMenuItem: o_mi_subtitle target: (vlc_object_t *)p_input
1682             var: "spu-es" selector: @selector(toggleVar:)];
1683
1684         aout_instance_t * p_aout = vlc_object_find( p_intf, VLC_OBJECT_AOUT,
1685                                                     FIND_ANYWHERE );
1686         if( p_aout != NULL )
1687         {
1688             [o_controls setupVarMenuItem: o_mi_channels target: (vlc_object_t *)p_aout
1689                 var: "audio-channels" selector: @selector(toggleVar:)];
1690
1691             [o_controls setupVarMenuItem: o_mi_device target: (vlc_object_t *)p_aout
1692                 var: "audio-device" selector: @selector(toggleVar:)];
1693
1694             [o_controls setupVarMenuItem: o_mi_visual target: (vlc_object_t *)p_aout
1695                 var: "visual" selector: @selector(toggleVar:)];
1696             vlc_object_release( (vlc_object_t *)p_aout );
1697         }
1698
1699         vout_thread_t * p_vout = vlc_object_find( p_intf, VLC_OBJECT_VOUT,
1700                                                             FIND_ANYWHERE );
1701
1702         if( p_vout != NULL )
1703         {
1704             vlc_object_t * p_dec_obj;
1705
1706             [o_controls setupVarMenuItem: o_mi_aspect_ratio target: (vlc_object_t *)p_vout
1707                 var: "aspect-ratio" selector: @selector(toggleVar:)];
1708
1709             [o_controls setupVarMenuItem: o_mi_crop target: (vlc_object_t *) p_vout
1710                 var: "crop" selector: @selector(toggleVar:)];
1711
1712             [o_controls setupVarMenuItem: o_mi_screen target: (vlc_object_t *)p_vout
1713                 var: "video-device" selector: @selector(toggleVar:)];
1714
1715             [o_controls setupVarMenuItem: o_mi_deinterlace target: (vlc_object_t *)p_vout
1716                 var: "deinterlace" selector: @selector(toggleVar:)];
1717
1718             p_dec_obj = (vlc_object_t *)vlc_object_find(
1719                                                  (vlc_object_t *)p_vout,
1720                                                  VLC_OBJECT_DECODER,
1721                                                  FIND_PARENT );
1722             if( p_dec_obj != NULL )
1723             {
1724                [o_controls setupVarMenuItem: o_mi_ffmpeg_pp target:
1725                     (vlc_object_t *)p_dec_obj var:"ffmpeg-pp-q" selector:
1726                     @selector(toggleVar:)];
1727
1728                 vlc_object_release(p_dec_obj);
1729             }
1730             vlc_object_release( (vlc_object_t *)p_vout );
1731         }
1732         vlc_object_release( p_input );
1733     }
1734     pl_Release( p_intf );
1735 }
1736
1737 - (void)refreshVoutDeviceMenu:(NSNotification *)o_notification
1738 {
1739     int x,y = 0;
1740     vout_thread_t * p_vout = vlc_object_find( p_intf, VLC_OBJECT_VOUT,
1741                                               FIND_ANYWHERE );
1742  
1743     if(! p_vout )
1744         return;
1745  
1746     /* clean the menu before adding new entries */
1747     if( [o_mi_screen hasSubmenu] )
1748     {
1749         y = [[o_mi_screen submenu] numberOfItems] - 1;
1750         msg_Dbg( VLCIntf, "%i items in submenu", y );
1751         while( x != y )
1752         {
1753             msg_Dbg( VLCIntf, "removing item %i of %i", x, y );
1754             [[o_mi_screen submenu] removeItemAtIndex: x];
1755             x++;
1756         }
1757     }
1758
1759     [o_controls setupVarMenuItem: o_mi_screen target: (vlc_object_t *)p_vout
1760                              var: "video-device" selector: @selector(toggleVar:)];
1761     vlc_object_release( (vlc_object_t *)p_vout );
1762 }
1763
1764 - (void)setScrollField:(NSString *)o_string stopAfter:(int)timeout
1765 {
1766     if( timeout != -1 )
1767         i_end_scroll = mdate() + timeout;
1768     else
1769         i_end_scroll = -1;
1770     [o_scrollfield setStringValue: o_string];
1771 }
1772
1773 - (void)resetScrollField
1774 {
1775     playlist_t * p_playlist = pl_Yield( p_intf );
1776     input_thread_t * p_input = playlist_CurrentInput( p_playlist );
1777
1778     i_end_scroll = -1;
1779     if( p_input && vlc_object_alive (p_input) )
1780     {
1781         NSString *o_temp;
1782         if( input_item_GetNowPlaying ( p_playlist->status.p_item->p_input ) )
1783             o_temp = [NSString stringWithUTF8String: 
1784                 input_item_GetNowPlaying ( p_playlist->status.p_item->p_input )];
1785         else
1786             o_temp = [NSString stringWithUTF8String:
1787                 p_playlist->status.p_item->p_input->psz_name];
1788         [self setScrollField: o_temp stopAfter:-1];
1789         [[[self getControls] getFSPanel] setStreamTitle: o_temp];
1790         vlc_object_release( p_input );
1791         pl_Release( p_intf );
1792         return;
1793     }
1794     pl_Release( p_intf );
1795     [self setScrollField: _NS("VLC media player") stopAfter:-1];
1796 }
1797
1798 - (void)playStatusUpdated:(int)i_status
1799 {
1800     if( i_status == PLAYING_S )
1801     {
1802         [[[self getControls] getFSPanel] setPause];
1803         [o_btn_play setImage: o_img_pause];
1804         [o_btn_play setAlternateImage: o_img_pause_pressed];
1805         [o_btn_play setToolTip: _NS("Pause")];
1806         [o_mi_play setTitle: _NS("Pause")];
1807         [o_dmi_play setTitle: _NS("Pause")];
1808         [o_vmi_play setTitle: _NS("Pause")];
1809     }
1810     else
1811     {
1812         [[[self getControls] getFSPanel] setPlay];
1813         [o_btn_play setImage: o_img_play];
1814         [o_btn_play setAlternateImage: o_img_play_pressed];
1815         [o_btn_play setToolTip: _NS("Play")];
1816         [o_mi_play setTitle: _NS("Play")];
1817         [o_dmi_play setTitle: _NS("Play")];
1818         [o_vmi_play setTitle: _NS("Play")];
1819     }
1820 }
1821
1822 - (void)setSubmenusEnabled:(BOOL)b_enabled
1823 {
1824     [o_mi_program setEnabled: b_enabled];
1825     [o_mi_title setEnabled: b_enabled];
1826     [o_mi_chapter setEnabled: b_enabled];
1827     [o_mi_audiotrack setEnabled: b_enabled];
1828     [o_mi_visual setEnabled: b_enabled];
1829     [o_mi_videotrack setEnabled: b_enabled];
1830     [o_mi_subtitle setEnabled: b_enabled];
1831     [o_mi_channels setEnabled: b_enabled];
1832     [o_mi_deinterlace setEnabled: b_enabled];
1833     [o_mi_ffmpeg_pp setEnabled: b_enabled];
1834     [o_mi_device setEnabled: b_enabled];
1835     [o_mi_screen setEnabled: b_enabled];
1836     [o_mi_aspect_ratio setEnabled: b_enabled];
1837     [o_mi_crop setEnabled: b_enabled];
1838 }
1839
1840 - (IBAction)timesliderUpdate:(id)sender
1841 {
1842     float f_updated;
1843     playlist_t * p_playlist;
1844     input_thread_t * p_input;
1845
1846     switch( [[NSApp currentEvent] type] )
1847     {
1848         case NSLeftMouseUp:
1849         case NSLeftMouseDown:
1850         case NSLeftMouseDragged:
1851             f_updated = [sender floatValue];
1852             break;
1853
1854         default:
1855             return;
1856     }
1857     p_playlist = pl_Yield( p_intf );
1858     p_input = playlist_CurrentInput( p_playlist );
1859     if( p_input != NULL )
1860     {
1861         vlc_value_t time;
1862         vlc_value_t pos;
1863         NSString * o_time;
1864         char psz_time[MSTRTIME_MAX_SIZE];
1865
1866         pos.f_float = f_updated / 10000.;
1867         var_Set( p_input, "position", pos );
1868         [o_timeslider setFloatValue: f_updated];
1869
1870         var_Get( p_input, "time", &time );
1871
1872         o_time = [NSString stringWithUTF8String: secstotimestr( psz_time, (time.i_time / 1000000) )];
1873         [o_timefield setStringValue: o_time];
1874         [[[self getControls] getFSPanel] setStreamPos: f_updated andTime: o_time];
1875         [o_embedded_window setTime: o_time position: f_updated];
1876         vlc_object_release( p_input );
1877     }
1878     pl_Release( p_intf );
1879 }
1880
1881 #pragma mark -
1882 #pragma mark Recent Items
1883
1884 - (IBAction)clearRecentItems:(id)sender
1885 {
1886     [[NSDocumentController sharedDocumentController]
1887                           clearRecentDocuments: nil];
1888 }
1889
1890 - (void)openRecentItem:(id)sender
1891 {
1892     [self application: nil openFile: [sender title]];
1893 }
1894
1895 #pragma mark -
1896 #pragma mark Panels
1897
1898 - (IBAction)intfOpenFile:(id)sender
1899 {
1900     if( !nib_open_loaded )
1901     {
1902         nib_open_loaded = [NSBundle loadNibNamed:@"Open" owner:self];
1903         [o_open awakeFromNib];
1904         [o_open openFile];
1905     } else {
1906         [o_open openFile];
1907     }
1908 }
1909
1910 - (IBAction)intfOpenFileGeneric:(id)sender
1911 {
1912     if( !nib_open_loaded )
1913     {
1914         nib_open_loaded = [NSBundle loadNibNamed:@"Open" owner:self];
1915         [o_open awakeFromNib];
1916         [o_open openFileGeneric];
1917     } else {
1918         [o_open openFileGeneric];
1919     }
1920 }
1921
1922 - (IBAction)intfOpenDisc:(id)sender
1923 {
1924     if( !nib_open_loaded )
1925     {
1926         nib_open_loaded = [NSBundle loadNibNamed:@"Open" owner:self];
1927         [o_open awakeFromNib];
1928         [o_open openDisc];
1929     } else {
1930         [o_open openDisc];
1931     }
1932 }
1933
1934 - (IBAction)intfOpenNet:(id)sender
1935 {
1936     if( !nib_open_loaded )
1937     {
1938         nib_open_loaded = [NSBundle loadNibNamed:@"Open" owner:self];
1939         [o_open awakeFromNib];
1940         [o_open openNet];
1941     } else {
1942         [o_open openNet];
1943     }
1944 }
1945
1946 - (IBAction)intfOpenCapture:(id)sender
1947 {
1948     if( !nib_open_loaded )
1949     {
1950         nib_open_loaded = [NSBundle loadNibNamed:@"Open" owner:self];
1951         [o_open awakeFromNib];
1952         [o_open openCapture];
1953     } else {
1954         [o_open openCapture];
1955     }
1956 }
1957
1958 - (IBAction)showWizard:(id)sender
1959 {
1960     if( !nib_wizard_loaded )
1961     {
1962         nib_wizard_loaded = [NSBundle loadNibNamed:@"Wizard" owner:self];
1963         [o_wizard initStrings];
1964         [o_wizard resetWizard];
1965         [o_wizard showWizard];
1966     } else {
1967         [o_wizard resetWizard];
1968         [o_wizard showWizard];
1969     }
1970 }
1971
1972 - (IBAction)showExtended:(id)sender
1973 {
1974     if( o_extended == nil )
1975         o_extended = [[VLCExtended alloc] init];
1976
1977     if( !nib_extended_loaded )
1978         nib_extended_loaded = [NSBundle loadNibNamed:@"Extended" owner:self];
1979
1980     [o_extended showPanel];
1981 }
1982
1983 - (IBAction)showBookmarks:(id)sender
1984 {
1985     /* we need the wizard-nib for the bookmarks's extract functionality */
1986     if( !nib_wizard_loaded )
1987     {
1988         nib_wizard_loaded = [NSBundle loadNibNamed:@"Wizard" owner:self];
1989         [o_wizard initStrings];
1990     }
1991  
1992     if( !nib_bookmarks_loaded )
1993         nib_bookmarks_loaded = [NSBundle loadNibNamed:@"Bookmarks" owner:self];
1994
1995     [o_bookmarks showBookmarks];
1996 }
1997
1998 - (IBAction)viewPreferences:(id)sender
1999 {
2000     if( !nib_prefs_loaded )
2001     {
2002         nib_prefs_loaded = [NSBundle loadNibNamed:@"Preferences" owner: self];
2003         o_sprefs = [[VLCSimplePrefs alloc] init];
2004         o_prefs= [[VLCPrefs alloc] init];
2005     }
2006
2007     [o_sprefs showSimplePrefs];
2008 }
2009
2010 #pragma mark -
2011 #pragma mark Update
2012
2013 - (IBAction)checkForUpdate:(id)sender
2014 {
2015 #ifdef UPDATE_CHECK
2016     if( !nib_update_loaded )
2017         nib_update_loaded = [NSBundle loadNibNamed:@"Update" owner:self];
2018     [o_update showUpdateWindow];
2019 #else
2020     msg_Err( VLCIntf, "Update checker wasn't enabled in this build" );
2021     intf_UserFatal( VLCIntf, false, _("Update check failed"), _("Checking for updates was not enabled in this build.") );
2022 #endif
2023 }
2024
2025 #pragma mark -
2026 #pragma mark Help and Docs
2027
2028 - (IBAction)viewAbout:(id)sender
2029 {
2030     if( !nib_about_loaded )
2031         nib_about_loaded = [NSBundle loadNibNamed:@"About" owner:self];
2032
2033     [o_about showAbout];
2034 }
2035
2036 - (IBAction)showLicense:(id)sender
2037 {
2038     if( !nib_about_loaded )
2039         nib_about_loaded = [NSBundle loadNibNamed:@"About" owner:self];
2040
2041     [o_about showGPL: sender];
2042 }
2043     
2044 - (IBAction)viewHelp:(id)sender
2045 {
2046     if( !nib_about_loaded )
2047     {
2048         nib_about_loaded = [NSBundle loadNibNamed:@"About" owner:self];
2049         [o_about showHelp];
2050     }
2051     else
2052         [o_about showHelp];
2053 }
2054
2055 - (IBAction)openReadMe:(id)sender
2056 {
2057     NSString * o_path = [[NSBundle mainBundle]
2058         pathForResource: @"README.MacOSX" ofType: @"rtf"];
2059
2060     [[NSWorkspace sharedWorkspace] openFile: o_path
2061                                    withApplication: @"TextEdit"];
2062 }
2063
2064 - (IBAction)openDocumentation:(id)sender
2065 {
2066     NSURL * o_url = [NSURL URLWithString:
2067         @"http://www.videolan.org/doc/"];
2068
2069     [[NSWorkspace sharedWorkspace] openURL: o_url];
2070 }
2071
2072 - (IBAction)openWebsite:(id)sender
2073 {
2074     NSURL * o_url = [NSURL URLWithString: @"http://www.videolan.org/"];
2075
2076     [[NSWorkspace sharedWorkspace] openURL: o_url];
2077 }
2078
2079 - (IBAction)openForum:(id)sender
2080 {
2081     NSURL * o_url = [NSURL URLWithString: @"http://forum.videolan.org/"];
2082
2083     [[NSWorkspace sharedWorkspace] openURL: o_url];
2084 }
2085
2086 - (IBAction)openDonate:(id)sender
2087 {
2088     NSURL * o_url = [NSURL URLWithString: @"http://www.videolan.org/contribute.html#paypal"];
2089
2090     [[NSWorkspace sharedWorkspace] openURL: o_url];
2091 }
2092
2093 #pragma mark -
2094 #pragma mark Crash Log
2095 - (void)sendCrashLog:(NSString *)crashLog withUserComment:(NSString *)userComment
2096 {
2097     NSString *urlStr = @"http://jones.videolan.org/crashlog/sendcrashreport.php";
2098     NSURL *url = [NSURL URLWithString:urlStr];
2099
2100     NSMutableURLRequest *req = [NSMutableURLRequest requestWithURL:url];
2101     [req setHTTPMethod:@"POST"];
2102
2103     NSString * email;
2104     if( [o_crashrep_includeEmail_ckb state] == NSOnState )
2105     {
2106         ABPerson * contact = [[ABAddressBook sharedAddressBook] me];
2107         ABMultiValue *emails = [contact valueForProperty:kABEmailProperty];
2108         email = [emails valueAtIndex:[emails indexForIdentifier:
2109                     [emails primaryIdentifier]]];
2110     }
2111     else
2112         email = [NSString string];
2113
2114     NSString *postBody;
2115     postBody = [NSString stringWithFormat:@"CrashLog=%@&Comment=%@&Email=%@\r\n",
2116             [crashLog stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding],
2117             [userComment stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding],
2118             [email stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
2119
2120     [req setHTTPBody:[postBody dataUsingEncoding:NSUTF8StringEncoding]];
2121
2122     /* Released from delegate */
2123     crashLogURLConnection = [[NSURLConnection alloc] initWithRequest:req delegate:self];
2124 }
2125
2126 - (void)connectionDidFinishLoading:(NSURLConnection *)connection
2127 {
2128     NSRunInformationalAlertPanel(_NS("Crash Report successfully sent"),
2129                 _NS("Thanks for your report!"),
2130                 _NS("OK"), nil, nil, nil);
2131     [crashLogURLConnection release];
2132     crashLogURLConnection = nil;
2133 }
2134
2135 - (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error
2136 {
2137     NSRunCriticalAlertPanel(_NS("Error when sending the Crash Report"), [error localizedDescription], @"OK", nil, nil);
2138     [crashLogURLConnection release];
2139     crashLogURLConnection = nil;
2140 }
2141
2142 - (NSString *)latestCrashLogPathPreviouslySeen:(BOOL)previouslySeen
2143 {
2144     NSString * crashReporter = [@"~/Library/Logs/CrashReporter" stringByExpandingTildeInPath];
2145     NSDirectoryEnumerator *direnum = [[NSFileManager defaultManager] enumeratorAtPath:crashReporter];
2146     NSString *fname;
2147     NSString * latestLog = nil;
2148     int year  = !previouslySeen ? [[NSUserDefaults standardUserDefaults] integerForKey:@"LatestCrashReportYear"] : 0;
2149     int month = !previouslySeen ? [[NSUserDefaults standardUserDefaults] integerForKey:@"LatestCrashReportMonth"]: 0;
2150     int day   = !previouslySeen ? [[NSUserDefaults standardUserDefaults] integerForKey:@"LatestCrashReportDay"]  : 0;
2151     int hours = !previouslySeen ? [[NSUserDefaults standardUserDefaults] integerForKey:@"LatestCrashReportHours"]: 0;
2152
2153     while (fname = [direnum nextObject])
2154     {
2155         [direnum skipDescendents];
2156         if([fname hasPrefix:@"VLC"] && [fname hasSuffix:@"crash"])
2157         {
2158             NSArray * compo = [fname componentsSeparatedByString:@"_"];
2159             if( [compo count] < 3 ) continue;
2160             compo = [[compo objectAtIndex:1] componentsSeparatedByString:@"-"];
2161             if( [compo count] < 4 ) continue;
2162
2163             // Dooh. ugly.
2164             if( year < [[compo objectAtIndex:0] intValue] ||
2165                 (year ==[[compo objectAtIndex:0] intValue] && 
2166                  (month < [[compo objectAtIndex:1] intValue] ||
2167                   (month ==[[compo objectAtIndex:1] intValue] &&
2168                    (day   < [[compo objectAtIndex:2] intValue] ||
2169                     (day   ==[[compo objectAtIndex:2] intValue] &&
2170                       hours < [[compo objectAtIndex:3] intValue] ))))))
2171             {
2172                 year  = [[compo objectAtIndex:0] intValue];
2173                 month = [[compo objectAtIndex:1] intValue];
2174                 day   = [[compo objectAtIndex:2] intValue];
2175                 hours = [[compo objectAtIndex:3] intValue];
2176                 latestLog = [crashReporter stringByAppendingPathComponent:fname];
2177             }
2178         }
2179     }
2180
2181     if(!(latestLog && [[NSFileManager defaultManager] fileExistsAtPath:latestLog]))
2182         return nil;
2183
2184     if( !previouslySeen )
2185     {
2186         [[NSUserDefaults standardUserDefaults] setInteger:year  forKey:@"LatestCrashReportYear"];
2187         [[NSUserDefaults standardUserDefaults] setInteger:month forKey:@"LatestCrashReportMonth"];
2188         [[NSUserDefaults standardUserDefaults] setInteger:day   forKey:@"LatestCrashReportDay"];
2189         [[NSUserDefaults standardUserDefaults] setInteger:hours forKey:@"LatestCrashReportHours"];
2190     }
2191     return latestLog;
2192 }
2193
2194 - (NSString *)latestCrashLogPath
2195 {
2196     return [self latestCrashLogPathPreviouslySeen:YES];
2197 }
2198
2199 - (void)lookForCrashLog
2200 {
2201     NSAutoreleasePool *o_pool = [[NSAutoreleasePool alloc] init];
2202     // This pref key doesn't exists? this VLC is an upgrade, and this crash log come from previous version
2203     BOOL areCrashLogsTooOld = ![[NSUserDefaults standardUserDefaults] integerForKey:@"LatestCrashReportYear"];
2204     NSString * latestLog = [self latestCrashLogPathPreviouslySeen:NO];
2205     if( latestLog && !areCrashLogsTooOld )
2206         [NSApp runModalForWindow: o_crashrep_win];
2207     [o_pool release];
2208 }
2209
2210 - (IBAction)crashReporterAction:(id)sender
2211 {
2212     if( sender == o_crashrep_send_btn )
2213         [self sendCrashLog:[NSString stringWithContentsOfFile: [self latestCrashLogPath]] withUserComment: [o_crashrep_fld string]];
2214
2215     [NSApp stopModal];
2216     [o_crashrep_win orderOut: sender];
2217 }
2218
2219 - (IBAction)openCrashLog:(id)sender
2220 {
2221     NSString * latestLog = [self latestCrashLogPath];
2222     if( latestLog )
2223     {
2224         [[NSWorkspace sharedWorkspace] openFile: latestLog withApplication: @"Console"];
2225     }
2226     else
2227     {
2228         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.") );
2229     }
2230 }
2231
2232 #pragma mark -
2233 #pragma mark Remove old prefs
2234
2235 - (void)_removeOldPreferences
2236 {
2237     static NSString * kVLCPreferencesVersion = @"VLCPreferencesVersion";
2238     static const int kCurrentPreferencesVersion = 1;
2239     int version = [[NSUserDefaults standardUserDefaults] integerForKey:kVLCPreferencesVersion];
2240     if( version >= kCurrentPreferencesVersion ) return;
2241
2242     NSArray *libraries = NSSearchPathForDirectoriesInDomains(NSLibraryDirectory, 
2243         NSUserDomainMask, YES);
2244     if( !libraries || [libraries count] == 0) return;
2245     NSString * preferences = [[libraries objectAtIndex:0] stringByAppendingPathComponent:@"Preferences"];
2246
2247     /* File not found, don't attempt anything */
2248     if(![[NSFileManager defaultManager] fileExistsAtPath:[preferences stringByAppendingPathComponent:@"VLC"]] &&
2249        ![[NSFileManager defaultManager] fileExistsAtPath:[preferences stringByAppendingPathComponent:@"org.videolan.vlc.plist"]] )
2250     {
2251         [[NSUserDefaults standardUserDefaults] setInteger:kCurrentPreferencesVersion forKey:kVLCPreferencesVersion];
2252         return;
2253     }
2254
2255     int res = NSRunInformationalAlertPanel(_NS("Remove old preferences?"),
2256                 _NS("We just found an older version of VLC's preferences files."),
2257                 _NS("Move To Trash and Relaunch VLC"), _NS("Ignore"), nil, nil);
2258     if( res != NSOKButton )
2259     {
2260         [[NSUserDefaults standardUserDefaults] setInteger:kCurrentPreferencesVersion forKey:kVLCPreferencesVersion];
2261         return;
2262     }
2263
2264     NSArray * ourPreferences = [NSArray arrayWithObjects:@"org.videolan.vlc.plist", @"VLC"];
2265
2266     /* Move the file to trash so that user can find them later */
2267     [[NSWorkspace sharedWorkspace] performFileOperation:NSWorkspaceRecycleOperation source:preferences destination:nil files:ourPreferences tag:0];
2268
2269     /* really reset the defaults from now on */
2270     [NSUserDefaults resetStandardUserDefaults];
2271
2272     [[NSUserDefaults standardUserDefaults] setInteger:kCurrentPreferencesVersion forKey:kVLCPreferencesVersion];
2273     [[NSUserDefaults standardUserDefaults] synchronize];
2274
2275     /* Relaunch now */
2276     const char * path = [[[NSBundle mainBundle] executablePath] UTF8String];
2277
2278     /* For some reason we need to fork(), not just execl(), which reports a ENOTSUP then. */
2279     if(fork() != 0)
2280     {
2281         exit(0);
2282         return;
2283     }
2284     execl(path, path, NULL);
2285 }
2286
2287 #pragma mark -
2288 #pragma mark Errors, warnings and messages
2289
2290 - (IBAction)viewErrorsAndWarnings:(id)sender
2291 {
2292     [[[self getInteractionList] getErrorPanel] showPanel];
2293 }
2294
2295 - (IBAction)showMessagesPanel:(id)sender
2296 {
2297     [o_msgs_panel makeKeyAndOrderFront: sender];
2298 }
2299
2300 - (IBAction)showInformationPanel:(id)sender
2301 {
2302     if(! nib_info_loaded )
2303         nib_info_loaded = [NSBundle loadNibNamed:@"MediaInfo" owner: self];
2304     
2305     [o_info initPanel];
2306 }
2307
2308 - (void)windowDidBecomeKey:(NSNotification *)o_notification
2309 {
2310     if( [o_notification object] == o_msgs_panel )
2311     {
2312         id o_msg;
2313         NSEnumerator * o_enum;
2314
2315         [o_messages setString: @""];
2316
2317         [o_msg_lock lock];
2318
2319         o_enum = [o_msg_arr objectEnumerator];
2320
2321         while( ( o_msg = [o_enum nextObject] ) != nil )
2322         {
2323             [o_messages insertText: o_msg];
2324         }
2325
2326         [o_msg_lock unlock];
2327     }
2328 }
2329
2330 - (void)updateMessageArray
2331 {
2332     int i_start, i_stop;
2333
2334     vlc_mutex_lock( p_intf->p_sys->p_sub->p_lock );
2335     i_stop = *p_intf->p_sys->p_sub->pi_stop;
2336     vlc_mutex_unlock( p_intf->p_sys->p_sub->p_lock );
2337
2338     if( p_intf->p_sys->p_sub->i_start != i_stop )
2339     {
2340         NSColor *o_white = [NSColor whiteColor];
2341         NSColor *o_red = [NSColor redColor];
2342         NSColor *o_yellow = [NSColor yellowColor];
2343         NSColor *o_gray = [NSColor grayColor];
2344
2345         NSColor * pp_color[4] = { o_white, o_red, o_yellow, o_gray };
2346         static const char * ppsz_type[4] = { ": ", " error: ",
2347                                              " warning: ", " debug: " };
2348
2349         for( i_start = p_intf->p_sys->p_sub->i_start;
2350              i_start != i_stop;
2351              i_start = (i_start+1) % VLC_MSG_QSIZE )
2352         {
2353             NSString *o_msg;
2354             NSDictionary *o_attr;
2355             NSAttributedString *o_msg_color;
2356
2357             int i_type = p_intf->p_sys->p_sub->p_msg[i_start].i_type;
2358
2359             [o_msg_lock lock];
2360
2361             if( [o_msg_arr count] + 2 > 400 )
2362             {
2363                 unsigned rid[] = { 0, 1 };
2364                 [o_msg_arr removeObjectsFromIndices: (unsigned *)&rid
2365                            numIndices: sizeof(rid)/sizeof(rid[0])];
2366             }
2367
2368             o_attr = [NSDictionary dictionaryWithObject: o_gray
2369                 forKey: NSForegroundColorAttributeName];
2370             o_msg = [NSString stringWithFormat: @"%s%s",
2371                 p_intf->p_sys->p_sub->p_msg[i_start].psz_module,
2372                 ppsz_type[i_type]];
2373             o_msg_color = [[NSAttributedString alloc]
2374                 initWithString: o_msg attributes: o_attr];
2375             [o_msg_arr addObject: [o_msg_color autorelease]];
2376
2377             o_attr = [NSDictionary dictionaryWithObject: pp_color[i_type]
2378                 forKey: NSForegroundColorAttributeName];
2379             o_msg = [[NSString stringWithUTF8String: p_intf->p_sys->p_sub->p_msg[i_start].psz_msg] stringByAppendingString: @"\n"];
2380             o_msg_color = [[NSAttributedString alloc]
2381                 initWithString: o_msg attributes: o_attr];
2382             [o_msg_arr addObject: [o_msg_color autorelease]];
2383
2384             [o_msg_lock unlock];
2385         }
2386
2387         vlc_mutex_lock( p_intf->p_sys->p_sub->p_lock );
2388         p_intf->p_sys->p_sub->i_start = i_start;
2389         vlc_mutex_unlock( p_intf->p_sys->p_sub->p_lock );
2390     }
2391 }
2392
2393 #pragma mark -
2394 #pragma mark Playlist toggling
2395
2396 - (IBAction)togglePlaylist:(id)sender
2397 {
2398     NSRect contentRect = [o_window contentRectForFrameRect:[o_window frame]];
2399     NSRect o_rect = [o_window contentRectForFrameRect:[o_window frame]];
2400     /*First, check if the playlist is visible*/
2401     if( contentRect.size.height <= 169. )
2402     {
2403         o_restore_rect = contentRect;
2404         b_restore_size = true;
2405         b_small_window = YES; /* we know we are small, make sure this is actually set (see case below) */
2406
2407         /* make large */
2408         if( o_size_with_playlist.height > 169. )
2409             o_rect.size.height = o_size_with_playlist.height;
2410         else
2411             o_rect.size.height = 500.;
2412  
2413         if( o_size_with_playlist.width >= [o_window contentMinSize].width )
2414             o_rect.size.width = o_size_with_playlist.width;
2415         else
2416             o_rect.size.width = [o_window contentMinSize].width;
2417
2418         o_rect.origin.x = contentRect.origin.x;
2419         o_rect.origin.y = contentRect.origin.y - o_rect.size.height +
2420             [o_window contentMinSize].height;
2421
2422         o_rect = [o_window frameRectForContentRect:o_rect];
2423
2424         NSRect screenRect = [[o_window screen] visibleFrame];
2425         if( !NSContainsRect( screenRect, o_rect ) ) {
2426             if( NSMaxX(o_rect) > NSMaxX(screenRect) )
2427                 o_rect.origin.x = ( NSMaxX(screenRect) - o_rect.size.width );
2428             if( NSMinY(o_rect) < NSMinY(screenRect) )
2429                 o_rect.origin.y = ( NSMinY(screenRect) );
2430         }
2431
2432         [o_btn_playlist setState: YES];
2433     }
2434     else
2435     {
2436         NSSize curSize = o_rect.size;
2437         if( b_restore_size )
2438         {
2439             o_rect = o_restore_rect;
2440             if( o_rect.size.height < [o_window contentMinSize].height )
2441                 o_rect.size.height = [o_window contentMinSize].height;
2442             if( o_rect.size.width < [o_window contentMinSize].width )
2443                 o_rect.size.width = [o_window contentMinSize].width;
2444         }
2445         else
2446         {
2447             NSRect contentRect = [o_window contentRectForFrameRect:[o_window frame]];
2448             /* make small */
2449             o_rect.size.height = [o_window contentMinSize].height;
2450             o_rect.size.width = [o_window contentMinSize].width;
2451             o_rect.origin.x = contentRect.origin.x;
2452             /* Calculate the position of the lower right corner after resize */
2453             o_rect.origin.y = contentRect.origin.y +
2454                 contentRect.size.height - [o_window contentMinSize].height;
2455         }
2456
2457         [o_playlist_view setAutoresizesSubviews: NO];
2458         [o_playlist_view removeFromSuperview];
2459         [o_btn_playlist setState: NO];
2460         b_small_window = NO; /* we aren't small here just yet. we are doing an animated resize after this */
2461         o_rect = [o_window frameRectForContentRect:o_rect];
2462     }
2463
2464     [o_window setFrame: o_rect display:YES animate: YES];
2465 }
2466
2467 - (void)updateTogglePlaylistState
2468 {
2469     if( [o_window contentRectForFrameRect:[o_window frame]].size.height <= 169. )
2470     {
2471         [o_btn_playlist setState: NO];
2472     }
2473     else
2474     {
2475         [o_btn_playlist setState: YES];
2476     }
2477 }
2478
2479 - (NSSize)windowWillResize:(NSWindow *)sender toSize:(NSSize)proposedFrameSize
2480 {
2481
2482     /* Not triggered on a window resize or maxification of the window. only by window mouse dragging resize */
2483
2484    /*Stores the size the controller one resize, to be able to restore it when
2485      toggling the playlist*/
2486     o_size_with_playlist = proposedFrameSize;
2487
2488     NSRect rect;
2489     rect.size = proposedFrameSize;
2490     if( [o_window contentRectForFrameRect:rect].size.height <= 169. )
2491     {
2492         if( b_small_window == NO )
2493         {
2494             /* if large and going to small then hide */
2495             b_small_window = YES;
2496             [o_playlist_view setAutoresizesSubviews: NO];
2497             [o_playlist_view removeFromSuperview];
2498         }
2499         return NSMakeSize( proposedFrameSize.width, [o_window minSize].height);
2500     }
2501     return proposedFrameSize;
2502 }
2503
2504 - (void)windowDidMove:(NSNotification *)notif
2505 {
2506     b_restore_size = false;
2507 }
2508
2509 - (void)windowDidResize:(NSNotification *)notif
2510 {
2511     if( [o_window contentRectForFrameRect:[o_window frame]].size.height > 169. && b_small_window )
2512     {
2513         /* If large and coming from small then show */
2514         [o_playlist_view setAutoresizesSubviews: YES];
2515         NSRect contentRect = [o_window contentRectForFrameRect:[o_window frame]];
2516         [o_playlist_view setFrame: NSMakeRect( 0, 0, contentRect.size.width, contentRect.size.height - [o_window contentMinSize].height )];
2517         [o_playlist_view setNeedsDisplay:YES];
2518         [[o_window contentView] addSubview: o_playlist_view];
2519         b_small_window = NO;
2520     }
2521     [self updateTogglePlaylistState];
2522 }
2523
2524 #pragma mark -
2525
2526 @end
2527
2528 @implementation VLCMain (NSMenuValidation)
2529
2530 - (BOOL)validateMenuItem:(NSMenuItem *)o_mi
2531 {
2532     NSString *o_title = [o_mi title];
2533     BOOL bEnabled = TRUE;
2534
2535     /* Recent Items Menu */
2536     if( [o_title isEqualToString: _NS("Clear Menu")] )
2537     {
2538         NSMenu * o_menu = [o_mi_open_recent submenu];
2539         int i_nb_items = [o_menu numberOfItems];
2540         NSArray * o_docs = [[NSDocumentController sharedDocumentController]
2541                                                        recentDocumentURLs];
2542         UInt32 i_nb_docs = [o_docs count];
2543
2544         if( i_nb_items > 1 )
2545         {
2546             while( --i_nb_items )
2547             {
2548                 [o_menu removeItemAtIndex: 0];
2549             }
2550         }
2551
2552         if( i_nb_docs > 0 )
2553         {
2554             NSURL * o_url;
2555             NSString * o_doc;
2556
2557             [o_menu insertItem: [NSMenuItem separatorItem] atIndex: 0];
2558
2559             while( TRUE )
2560             {
2561                 i_nb_docs--;
2562
2563                 o_url = [o_docs objectAtIndex: i_nb_docs];
2564
2565                 if( [o_url isFileURL] )
2566                 {
2567                     o_doc = [o_url path];
2568                 }
2569                 else
2570                 {
2571                     o_doc = [o_url absoluteString];
2572                 }
2573
2574                 [o_menu insertItemWithTitle: o_doc
2575                     action: @selector(openRecentItem:)
2576                     keyEquivalent: @"" atIndex: 0];
2577
2578                 if( i_nb_docs == 0 )
2579                 {
2580                     break;
2581                 }
2582             }
2583         }
2584         else
2585         {
2586             bEnabled = FALSE;
2587         }
2588     }
2589     return( bEnabled );
2590 }
2591
2592 @end
2593
2594 @implementation VLCMain (Internal)
2595
2596 - (void)handlePortMessage:(NSPortMessage *)o_msg
2597 {
2598     id ** val;
2599     NSData * o_data;
2600     NSValue * o_value;
2601     NSInvocation * o_inv;
2602     NSConditionLock * o_lock;
2603
2604     o_data = [[o_msg components] lastObject];
2605     o_inv = *((NSInvocation **)[o_data bytes]);
2606     [o_inv getArgument: &o_value atIndex: 2];
2607     val = (id **)[o_value pointerValue];
2608     [o_inv setArgument: val[1] atIndex: 2];
2609     o_lock = *(val[0]);
2610
2611     [o_lock lock];
2612     [o_inv invoke];
2613     [o_lock unlockWithCondition: 1];
2614 }
2615
2616 @end