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