]> git.sesse.net Git - vlc/blob - modules/gui/macosx/intf.m
update: Make sure we don't leak.
[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 -
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
663     /* save the prefs if they were changed in the extended panel */
664     if(o_extended && [o_extended getConfigChanged])
665     {
666         [o_extended savePrefs];
667     }
668  
669     p_intf->b_interaction = false;
670     var_DelCallback( p_intf, "interaction", InteractCallback, self );
671
672     /* remove global observer watching for vout device changes correctly */
673     [[NSNotificationCenter defaultCenter] removeObserver: self];
674
675     [o_update end];
676
677     /* release some other objects here, because it isn't sure whether dealloc
678      * will be called later on */
679
680     if( nib_about_loaded )
681         [o_about release];
682
683     if( nib_prefs_loaded )
684     {
685         [o_sprefs release];
686         [o_prefs release];
687     }
688
689     if( nib_open_loaded )
690         [o_open release];
691
692     if( nib_extended_loaded )
693     {
694         [o_extended release];
695     }
696
697     if( nib_bookmarks_loaded )
698         [o_bookmarks release];
699
700     if( o_info )
701     {
702         [o_info stopTimers];
703         [o_info release];
704     }
705
706     if( nib_wizard_loaded )
707         [o_wizard release];
708
709     [crashLogURLConnection cancel];
710     [crashLogURLConnection release];
711  
712     [o_embedded_list release];
713     [o_interaction_list release];
714     [o_eyetv release];
715
716     [o_img_pause_pressed release];
717     [o_img_play_pressed release];
718     [o_img_pause release];
719     [o_img_play release];
720
721     [o_msg_arr removeAllObjects];
722     [o_msg_arr release];
723
724     [o_msg_lock release];
725
726     /* write cached user defaults to disk */
727     [[NSUserDefaults standardUserDefaults] synchronize];
728
729     /* Kill the playlist, so that it doesn't accept new request
730      * such as the play request from vlc.c (we are a blocking interface). */
731     p_playlist = pl_Yield( p_intf );
732     vlc_object_kill( p_playlist );
733     pl_Release( p_intf );
734
735     vlc_object_kill( p_intf->p_libvlc );
736
737     [self setIntf:nil];
738
739     /* Go back to Run() and make libvlc exit properly */
740     if( jmpbuffer )
741         longjmp( jmpbuffer, 1 );
742     /* not reached */
743 }
744
745 #pragma mark -
746 #pragma mark Toolbar delegate
747
748 /* Our item identifiers */
749 static NSString * VLCToolbarMediaControl     = @"VLCToolbarMediaControl";
750
751 - (NSArray *)toolbarAllowedItemIdentifiers:(NSToolbar *)toolbar
752 {
753     return [NSArray arrayWithObjects:
754 //                        NSToolbarCustomizeToolbarItemIdentifier,
755 //                        NSToolbarFlexibleSpaceItemIdentifier,
756 //                        NSToolbarSpaceItemIdentifier,
757 //                        NSToolbarSeparatorItemIdentifier,
758                         VLCToolbarMediaControl,
759                         nil ];
760 }
761
762 - (NSArray *) toolbarDefaultItemIdentifiers: (NSToolbar *) toolbar
763 {
764     return [NSArray arrayWithObjects:
765                         VLCToolbarMediaControl,
766                         nil ];
767 }
768
769 - (NSToolbarItem *) toolbar:(NSToolbar *)toolbar itemForItemIdentifier:(NSString *)itemIdentifier willBeInsertedIntoToolbar:(BOOL)flag
770 {
771     NSToolbarItem *toolbarItem = [[[NSToolbarItem alloc] initWithItemIdentifier: itemIdentifier] autorelease];
772
773  
774     if( [itemIdentifier isEqual: VLCToolbarMediaControl] )
775     {
776         [toolbarItem setLabel:@"Media Controls"];
777         [toolbarItem setPaletteLabel:@"Media Controls"];
778
779         NSSize size = toolbarMediaControl.frame.size;
780         [toolbarItem setView:toolbarMediaControl];
781         [toolbarItem setMinSize:size];
782         size.width += 1000.;
783         [toolbarItem setMaxSize:size];
784
785         // Hack: For some reason we need to make sure
786         // that the those element are on top
787         // Add them again will put them frontmost
788         [toolbarMediaControl addSubview:o_scrollfield];
789         [toolbarMediaControl addSubview:o_timeslider];
790         [toolbarMediaControl addSubview:o_timefield];
791         [toolbarMediaControl addSubview:o_main_pgbar];
792
793         /* TODO: setup a menu */
794     }
795     else
796     {
797         /* itemIdentifier referred to a toolbar item that is not
798          * provided or supported by us or Cocoa
799          * Returning nil will inform the toolbar
800          * that this kind of item is not supported */
801         toolbarItem = nil;
802     }
803     return toolbarItem;
804 }
805
806 #pragma mark -
807 #pragma mark Other notification
808
809 - (void)controlTintChanged
810 {
811     BOOL b_playing = NO;
812     
813     if( [o_btn_play alternateImage] == o_img_play_pressed )
814         b_playing = YES;
815     
816     if( [NSColor currentControlTint] == NSGraphiteControlTint )
817     {
818         o_img_play_pressed = [NSImage imageNamed: @"play_graphite"];
819         o_img_pause_pressed = [NSImage imageNamed: @"pause_graphite"];
820         
821         [o_btn_prev setAlternateImage: [NSImage imageNamed: @"previous_graphite"]];
822         [o_btn_rewind setAlternateImage: [NSImage imageNamed: @"skip_previous_graphite"]];
823         [o_btn_stop setAlternateImage: [NSImage imageNamed: @"stop_graphite"]];
824         [o_btn_ff setAlternateImage: [NSImage imageNamed: @"skip_forward_graphite"]];
825         [o_btn_next setAlternateImage: [NSImage imageNamed: @"next_graphite"]];
826         [o_btn_fullscreen setAlternateImage: [NSImage imageNamed: @"fullscreen_graphite"]];
827         [o_btn_playlist setAlternateImage: [NSImage imageNamed: @"playlistdrawer_graphite"]];
828         [o_btn_equalizer setAlternateImage: [NSImage imageNamed: @"equalizerdrawer_graphite"]];
829     }
830     else
831     {
832         o_img_play_pressed = [NSImage imageNamed: @"play_blue"];
833         o_img_pause_pressed = [NSImage imageNamed: @"pause_blue"];
834         
835         [o_btn_prev setAlternateImage: [NSImage imageNamed: @"previous_blue"]];
836         [o_btn_rewind setAlternateImage: [NSImage imageNamed: @"skip_previous_blue"]];
837         [o_btn_stop setAlternateImage: [NSImage imageNamed: @"stop_blue"]];
838         [o_btn_ff setAlternateImage: [NSImage imageNamed: @"skip_forward_blue"]];
839         [o_btn_next setAlternateImage: [NSImage imageNamed: @"next_blue"]];
840         [o_btn_fullscreen setAlternateImage: [NSImage imageNamed: @"fullscreen_blue"]];
841         [o_btn_playlist setAlternateImage: [NSImage imageNamed: @"playlistdrawer_blue"]];
842         [o_btn_equalizer setAlternateImage: [NSImage imageNamed: @"equalizerdrawer_blue"]];
843     }
844     
845     if( b_playing )
846         [o_btn_play setAlternateImage: o_img_play_pressed];
847     else
848         [o_btn_play setAlternateImage: o_img_pause_pressed];
849 }
850
851 /* Listen to the remote in exclusive mode, only when VLC is the active
852    application */
853 - (void)applicationDidBecomeActive:(NSNotification *)aNotification
854 {
855     [o_remote startListening: self];
856 }
857 - (void)applicationDidResignActive:(NSNotification *)aNotification
858 {
859     [o_remote stopListening: self];
860 }
861
862 /* Triggered when the computer goes to sleep */
863 - (void)computerWillSleep: (NSNotification *)notification
864 {
865     /* Pause */
866     if( p_intf->p_sys->i_play_status == PLAYING_S )
867     {
868         vlc_value_t val;
869         val.i_int = config_GetInt( p_intf, "key-play-pause" );
870         var_Set( p_intf->p_libvlc, "key-pressed", val );
871     }
872 }
873
874 #pragma mark -
875 #pragma mark File opening
876
877 - (BOOL)application:(NSApplication *)o_app openFile:(NSString *)o_filename
878 {
879     BOOL b_autoplay = config_GetInt( VLCIntf, "macosx-autoplay" );
880     NSDictionary *o_dic = [NSDictionary dictionaryWithObjectsAndKeys: o_filename, @"ITEM_URL", nil];
881     if( b_autoplay )
882         [o_playlist appendArray: [NSArray arrayWithObject: o_dic] atPos: -1 enqueue: NO];
883     else
884         [o_playlist appendArray: [NSArray arrayWithObject: o_dic] atPos: -1 enqueue: YES];
885
886     return( TRUE );
887 }
888
889 /* When user click in the Dock icon our double click in the finder */
890 - (BOOL)applicationShouldHandleReopen:(NSApplication *)theApplication hasVisibleWindows:(BOOL)hasVisibleWindows
891 {    
892     if(!hasVisibleWindows)
893         [o_window makeKeyAndOrderFront:self];
894
895     return YES;
896 }
897
898 #pragma mark -
899 #pragma mark Apple Remote Control
900
901 /* Helper method for the remote control interface in order to trigger forward/backward and volume
902    increase/decrease as long as the user holds the left/right, plus/minus button */
903 - (void) executeHoldActionForRemoteButton: (NSNumber*) buttonIdentifierNumber
904 {
905     if(b_remote_button_hold)
906     {
907         switch([buttonIdentifierNumber intValue])
908         {
909             case kRemoteButtonRight_Hold:
910                   [o_controls forward: self];
911             break;
912             case kRemoteButtonLeft_Hold:
913                   [o_controls backward: self];
914             break;
915             case kRemoteButtonVolume_Plus_Hold:
916                 [o_controls volumeUp: self];
917             break;
918             case kRemoteButtonVolume_Minus_Hold:
919                 [o_controls volumeDown: self];
920             break;
921         }
922         if(b_remote_button_hold)
923         {
924             /* trigger event */
925             [self performSelector:@selector(executeHoldActionForRemoteButton:)
926                          withObject:buttonIdentifierNumber
927                          afterDelay:0.25];
928         }
929     }
930 }
931
932 /* Apple Remote callback */
933 - (void) appleRemoteButton: (AppleRemoteEventIdentifier)buttonIdentifier
934                pressedDown: (BOOL) pressedDown
935                 clickCount: (unsigned int) count
936 {
937     switch( buttonIdentifier )
938     {
939         case kRemoteButtonPlay:
940             if(count >= 2) {
941                 [o_controls toogleFullscreen:self];
942             } else {
943                 [o_controls play: self];
944             }
945             break;
946         case kRemoteButtonVolume_Plus:
947             [o_controls volumeUp: self];
948             break;
949         case kRemoteButtonVolume_Minus:
950             [o_controls volumeDown: self];
951             break;
952         case kRemoteButtonRight:
953             [o_controls next: self];
954             break;
955         case kRemoteButtonLeft:
956             [o_controls prev: self];
957             break;
958         case kRemoteButtonRight_Hold:
959         case kRemoteButtonLeft_Hold:
960         case kRemoteButtonVolume_Plus_Hold:
961         case kRemoteButtonVolume_Minus_Hold:
962             /* simulate an event as long as the user holds the button */
963             b_remote_button_hold = pressedDown;
964             if( pressedDown )
965             {
966                 NSNumber* buttonIdentifierNumber = [NSNumber numberWithInt: buttonIdentifier];
967                 [self performSelector:@selector(executeHoldActionForRemoteButton:)
968                            withObject:buttonIdentifierNumber];
969             }
970             break;
971         case kRemoteButtonMenu:
972             [o_controls showPosition: self];
973             break;
974         default:
975             /* Add here whatever you want other buttons to do */
976             break;
977     }
978 }
979
980 #pragma mark -
981 #pragma mark String utility
982 // FIXME: this has nothing to do here
983
984 - (NSString *)localizedString:(const char *)psz
985 {
986     NSString * o_str = nil;
987
988     if( psz != NULL )
989     {
990         o_str = [[[NSString alloc] initWithUTF8String: psz] autorelease];
991
992         if( o_str == NULL )
993         {
994             msg_Err( VLCIntf, "could not translate: %s", psz );
995             return( @"" );
996         }
997     }
998     else
999     {
1000         msg_Warn( VLCIntf, "can't translate empty strings" );
1001         return( @"" );
1002     }
1003
1004     return( o_str );
1005 }
1006
1007
1008
1009 - (char *)delocalizeString:(NSString *)id
1010 {
1011     NSData * o_data = [id dataUsingEncoding: NSUTF8StringEncoding
1012                           allowLossyConversion: NO];
1013     char * psz_string;
1014
1015     if( o_data == nil )
1016     {
1017         o_data = [id dataUsingEncoding: NSUTF8StringEncoding
1018                      allowLossyConversion: YES];
1019         psz_string = malloc( [o_data length] + 1 );
1020         [o_data getBytes: psz_string];
1021         psz_string[ [o_data length] ] = '\0';
1022         msg_Err( VLCIntf, "cannot convert to the requested encoding: %s",
1023                  psz_string );
1024     }
1025     else
1026     {
1027         psz_string = malloc( [o_data length] + 1 );
1028         [o_data getBytes: psz_string];
1029         psz_string[ [o_data length] ] = '\0';
1030     }
1031
1032     return psz_string;
1033 }
1034
1035 /* i_width is in pixels */
1036 - (NSString *)wrapString: (NSString *)o_in_string toWidth: (int) i_width
1037 {
1038     NSMutableString *o_wrapped;
1039     NSString *o_out_string;
1040     NSRange glyphRange, effectiveRange, charRange;
1041     NSRect lineFragmentRect;
1042     unsigned glyphIndex, breaksInserted = 0;
1043
1044     NSTextStorage *o_storage = [[NSTextStorage alloc] initWithString: o_in_string
1045         attributes: [NSDictionary dictionaryWithObjectsAndKeys:
1046         [NSFont labelFontOfSize: 0.0], NSFontAttributeName, nil]];
1047     NSLayoutManager *o_layout_manager = [[NSLayoutManager alloc] init];
1048     NSTextContainer *o_container = [[NSTextContainer alloc]
1049         initWithContainerSize: NSMakeSize(i_width, 2000)];
1050
1051     [o_layout_manager addTextContainer: o_container];
1052     [o_container release];
1053     [o_storage addLayoutManager: o_layout_manager];
1054     [o_layout_manager release];
1055
1056     o_wrapped = [o_in_string mutableCopy];
1057     glyphRange = [o_layout_manager glyphRangeForTextContainer: o_container];
1058
1059     for( glyphIndex = glyphRange.location ; glyphIndex < NSMaxRange(glyphRange) ;
1060             glyphIndex += effectiveRange.length) {
1061         lineFragmentRect = [o_layout_manager lineFragmentRectForGlyphAtIndex: glyphIndex
1062                                             effectiveRange: &effectiveRange];
1063         charRange = [o_layout_manager characterRangeForGlyphRange: effectiveRange
1064                                     actualGlyphRange: &effectiveRange];
1065         if([o_wrapped lineRangeForRange:
1066                 NSMakeRange(charRange.location + breaksInserted, charRange.length)].length > charRange.length) {
1067             [o_wrapped insertString: @"\n" atIndex: NSMaxRange(charRange) + breaksInserted];
1068             breaksInserted++;
1069         }
1070     }
1071     o_out_string = [NSString stringWithString: o_wrapped];
1072     [o_wrapped release];
1073     [o_storage release];
1074
1075     return o_out_string;
1076 }
1077
1078
1079 #pragma mark -
1080 #pragma mark Key Shortcuts
1081
1082 static struct
1083 {
1084     unichar i_nskey;
1085     unsigned int i_vlckey;
1086 } nskeys_to_vlckeys[] =
1087 {
1088     { NSUpArrowFunctionKey, KEY_UP },
1089     { NSDownArrowFunctionKey, KEY_DOWN },
1090     { NSLeftArrowFunctionKey, KEY_LEFT },
1091     { NSRightArrowFunctionKey, KEY_RIGHT },
1092     { NSF1FunctionKey, KEY_F1 },
1093     { NSF2FunctionKey, KEY_F2 },
1094     { NSF3FunctionKey, KEY_F3 },
1095     { NSF4FunctionKey, KEY_F4 },
1096     { NSF5FunctionKey, KEY_F5 },
1097     { NSF6FunctionKey, KEY_F6 },
1098     { NSF7FunctionKey, KEY_F7 },
1099     { NSF8FunctionKey, KEY_F8 },
1100     { NSF9FunctionKey, KEY_F9 },
1101     { NSF10FunctionKey, KEY_F10 },
1102     { NSF11FunctionKey, KEY_F11 },
1103     { NSF12FunctionKey, KEY_F12 },
1104     { NSInsertFunctionKey, KEY_INSERT },
1105     { NSHomeFunctionKey, KEY_HOME },
1106     { NSEndFunctionKey, KEY_END },
1107     { NSPageUpFunctionKey, KEY_PAGEUP },
1108     { NSPageDownFunctionKey, KEY_PAGEDOWN },
1109     { NSMenuFunctionKey, KEY_MENU },
1110     { NSTabCharacter, KEY_TAB },
1111     { NSCarriageReturnCharacter, KEY_ENTER },
1112     { NSEnterCharacter, KEY_ENTER },
1113     { NSBackspaceCharacter, KEY_BACKSPACE },
1114     { (unichar) ' ', KEY_SPACE },
1115     { (unichar) 0x1b, KEY_ESC },
1116     {0,0}
1117 };
1118
1119 static unichar VLCKeyToCocoa( unsigned int i_key )
1120 {
1121     unsigned int i;
1122
1123     for( i = 0; nskeys_to_vlckeys[i].i_vlckey != 0; i++ )
1124     {
1125         if( nskeys_to_vlckeys[i].i_vlckey == (i_key & ~KEY_MODIFIER) )
1126         {
1127             return nskeys_to_vlckeys[i].i_nskey;
1128         }
1129     }
1130     return (unichar)(i_key & ~KEY_MODIFIER);
1131 }
1132
1133 unsigned int CocoaKeyToVLC( unichar i_key )
1134 {
1135     unsigned int i;
1136
1137     for( i = 0; nskeys_to_vlckeys[i].i_nskey != 0; i++ )
1138     {
1139         if( nskeys_to_vlckeys[i].i_nskey == i_key )
1140         {
1141             return nskeys_to_vlckeys[i].i_vlckey;
1142         }
1143     }
1144     return (unsigned int)i_key;
1145 }
1146
1147 static unsigned int VLCModifiersToCocoa( unsigned int i_key )
1148 {
1149     unsigned int new = 0;
1150     if( i_key & KEY_MODIFIER_COMMAND )
1151         new |= NSCommandKeyMask;
1152     if( i_key & KEY_MODIFIER_ALT )
1153         new |= NSAlternateKeyMask;
1154     if( i_key & KEY_MODIFIER_SHIFT )
1155         new |= NSShiftKeyMask;
1156     if( i_key & KEY_MODIFIER_CTRL )
1157         new |= NSControlKeyMask;
1158     return new;
1159 }
1160
1161 /*****************************************************************************
1162  * hasDefinedShortcutKey: Check to see if the key press is a defined VLC
1163  * shortcut key.  If it is, pass it off to VLC for handling and return YES,
1164  * otherwise ignore it and return NO (where it will get handled by Cocoa).
1165  *****************************************************************************/
1166 - (BOOL)hasDefinedShortcutKey:(NSEvent *)o_event
1167 {
1168     unichar key = 0;
1169     vlc_value_t val;
1170     unsigned int i_pressed_modifiers = 0;
1171     struct hotkey *p_hotkeys;
1172     int i;
1173
1174     val.i_int = 0;
1175     p_hotkeys = p_intf->p_libvlc->p_hotkeys;
1176
1177     i_pressed_modifiers = [o_event modifierFlags];
1178
1179     if( i_pressed_modifiers & NSShiftKeyMask )
1180         val.i_int |= KEY_MODIFIER_SHIFT;
1181     if( i_pressed_modifiers & NSControlKeyMask )
1182         val.i_int |= KEY_MODIFIER_CTRL;
1183     if( i_pressed_modifiers & NSAlternateKeyMask )
1184         val.i_int |= KEY_MODIFIER_ALT;
1185     if( i_pressed_modifiers & NSCommandKeyMask )
1186         val.i_int |= KEY_MODIFIER_COMMAND;
1187
1188     key = [[o_event charactersIgnoringModifiers] characterAtIndex: 0];
1189
1190     switch( key )
1191     {
1192         case NSDeleteCharacter:
1193         case NSDeleteFunctionKey:
1194         case NSDeleteCharFunctionKey:
1195         case NSBackspaceCharacter:
1196         case NSUpArrowFunctionKey:
1197         case NSDownArrowFunctionKey:
1198         case NSRightArrowFunctionKey:
1199         case NSLeftArrowFunctionKey:
1200         case NSEnterCharacter:
1201         case NSCarriageReturnCharacter:
1202             return NO;
1203     }
1204
1205     val.i_int |= CocoaKeyToVLC( key );
1206
1207     for( i = 0; p_hotkeys[i].psz_action != NULL; i++ )
1208     {
1209         if( p_hotkeys[i].i_key == val.i_int )
1210         {
1211             var_Set( p_intf->p_libvlc, "key-pressed", val );
1212             return YES;
1213         }
1214     }
1215
1216     return NO;
1217 }
1218
1219 #pragma mark -
1220 #pragma mark Other objects getters
1221 // FIXME: this is ugly and does not respect cocoa naming scheme
1222
1223 - (id)getControls
1224 {
1225     if( o_controls )
1226         return o_controls;
1227
1228     return nil;
1229 }
1230
1231 - (id)getSimplePreferences
1232 {
1233     if( !o_sprefs )
1234         return nil;
1235
1236     if( !nib_prefs_loaded )
1237         nib_prefs_loaded = [NSBundle loadNibNamed:@"Preferences" owner: self];
1238
1239     return o_sprefs;
1240 }
1241
1242 - (id)getPreferences
1243 {
1244     if( !o_prefs )
1245         return nil;
1246
1247     if( !nib_prefs_loaded )
1248         nib_prefs_loaded = [NSBundle loadNibNamed:@"Preferences" owner: self];
1249
1250     return o_prefs;
1251 }
1252
1253 - (id)getPlaylist
1254 {
1255     if( o_playlist )
1256         return o_playlist;
1257
1258     return nil;
1259 }
1260
1261 - (id)getInfo
1262 {
1263     if( o_info )
1264         return o_info;
1265
1266     return nil;
1267 }
1268
1269 - (id)getWizard
1270 {
1271     if( o_wizard )
1272         return o_wizard;
1273
1274     return nil;
1275 }
1276
1277 - (id)getBookmarks
1278 {
1279     if( o_bookmarks )
1280         return o_bookmarks;
1281
1282     return nil;
1283 }
1284
1285 - (id)getEmbeddedList
1286 {
1287     if( o_embedded_list )
1288         return o_embedded_list;
1289
1290     return nil;
1291 }
1292
1293 - (id)getInteractionList
1294 {
1295     if( o_interaction_list )
1296         return o_interaction_list;
1297
1298     return nil;
1299 }
1300
1301 - (id)getMainIntfPgbar
1302 {
1303     if( o_main_pgbar )
1304         return o_main_pgbar;
1305
1306     return nil;
1307 }
1308
1309 - (id)getControllerWindow
1310 {
1311     if( o_window )
1312         return o_window;
1313     return nil;
1314 }
1315
1316 - (id)getVoutMenu
1317 {
1318     return o_vout_menu;
1319 }
1320
1321 - (id)getEyeTVController
1322 {
1323     if( o_eyetv )
1324         return o_eyetv;
1325
1326     return nil;
1327 }
1328
1329 #pragma mark -
1330 #pragma mark Polling
1331
1332 /*****************************************************************************
1333  * ManageThread: An ugly thread that polls
1334  *****************************************************************************/
1335 static void * ManageThread( void *user_data )
1336 {
1337     id self = user_data;
1338
1339     [self manage];
1340
1341     return NULL;
1342 }
1343
1344 - (void)manage
1345 {
1346     playlist_t * p_playlist;
1347     input_thread_t * p_input = NULL;
1348
1349     /* new thread requires a new pool */
1350     NSAutoreleasePool * o_pool = [[NSAutoreleasePool alloc] init];
1351
1352     vlc_thread_set_priority( p_intf, VLC_THREAD_PRIORITY_LOW );
1353
1354     p_playlist = pl_Yield( p_intf );
1355
1356     var_AddCallback( p_playlist, "playlist-current", PlaylistChanged, self );
1357     var_AddCallback( p_playlist, "intf-change", PlaylistChanged, self );
1358     var_AddCallback( p_playlist, "item-change", PlaylistChanged, self );
1359     var_AddCallback( p_playlist, "item-append", PlaylistChanged, self );
1360     var_AddCallback( p_playlist, "item-deleted", PlaylistChanged, self );
1361
1362     pl_Release( p_intf );
1363
1364     vlc_object_lock( p_intf );
1365
1366     while( vlc_object_alive( p_intf ) )
1367     {
1368         vlc_mutex_lock( &p_intf->change_lock );
1369
1370         if( !p_input )
1371         {
1372             p_input = playlist_CurrentInput( p_playlist );
1373
1374             /* Refresh the interface */
1375             if( p_input )
1376             {
1377                 msg_Dbg( p_intf, "input has changed, refreshing interface" );
1378                 p_intf->p_sys->b_input_update = true;
1379             }
1380         }
1381         else if( !vlc_object_alive (p_input) || p_input->b_dead )
1382         {
1383             /* input stopped */
1384             p_intf->p_sys->b_intf_update = true;
1385             p_intf->p_sys->i_play_status = END_S;
1386             msg_Dbg( p_intf, "input has stopped, refreshing interface" );
1387             vlc_object_release( p_input );
1388             p_input = NULL;
1389         }
1390         else if( cachedInputState != input_GetState( p_input ) )
1391         {
1392             p_intf->p_sys->b_intf_update = true;
1393         }
1394
1395         /* Manage volume status */
1396         [self manageVolumeSlider];
1397
1398         vlc_mutex_unlock( &p_intf->change_lock );
1399
1400         vlc_object_timedwait( p_intf, 100000 + mdate());
1401     }
1402     vlc_object_unlock( p_intf );
1403     [o_pool release];
1404
1405     if( p_input ) vlc_object_release( p_input );
1406
1407     var_DelCallback( p_playlist, "playlist-current", PlaylistChanged, self );
1408     var_DelCallback( p_playlist, "intf-change", PlaylistChanged, self );
1409     var_DelCallback( p_playlist, "item-change", PlaylistChanged, self );
1410     var_DelCallback( p_playlist, "item-append", PlaylistChanged, self );
1411     var_DelCallback( p_playlist, "item-deleted", PlaylistChanged, self );
1412
1413     pthread_testcancel(); /* If we were cancelled stop here */
1414
1415     msg_Dbg( p_intf, "Killing the Mac OS X module" );
1416
1417     /* We are dead, terminate */
1418     [NSApp performSelectorOnMainThread: @selector(terminate:) withObject:nil waitUntilDone:NO];
1419 }
1420
1421 - (void)manageVolumeSlider
1422 {
1423     audio_volume_t i_volume;
1424     aout_VolumeGet( p_intf, &i_volume );
1425
1426     if( i_volume != i_lastShownVolume )
1427     {
1428         i_lastShownVolume = i_volume;
1429         p_intf->p_sys->b_volume_update = TRUE;
1430     }
1431 }
1432
1433 - (void)manageIntf:(NSTimer *)o_timer
1434 {
1435     vlc_value_t val;
1436     playlist_t * p_playlist;
1437     input_thread_t * p_input;
1438
1439     if( p_intf->p_sys->b_input_update )
1440     {
1441         /* Called when new input is opened */
1442         p_intf->p_sys->b_current_title_update = true;
1443         p_intf->p_sys->b_intf_update = true;
1444         p_intf->p_sys->b_input_update = false;
1445         [self setupMenus]; /* Make sure input menu is up to date */
1446     }
1447     if( p_intf->p_sys->b_intf_update )
1448     {
1449         bool b_input = false;
1450         bool b_plmul = false;
1451         bool b_control = false;
1452         bool b_seekable = false;
1453         bool b_chapters = false;
1454
1455         playlist_t * p_playlist = pl_Yield( p_intf );
1456     /* TODO: fix i_size use */
1457         b_plmul = p_playlist->items.i_size > 1;
1458
1459         p_input = playlist_CurrentInput( p_playlist );
1460         bool b_buffering = NO;
1461     
1462         if( ( b_input = ( p_input != NULL ) ) )
1463         {
1464             /* seekable streams */
1465             cachedInputState = input_GetState( p_input );
1466             if ( cachedInputState == INIT_S ||
1467                  cachedInputState == OPENING_S ||
1468                  cachedInputState == BUFFERING_S )
1469             {
1470                 b_buffering = YES;
1471             }
1472                  
1473             /* seekable streams */
1474             b_seekable = var_GetBool( p_input, "seekable" );
1475
1476             /* check whether slow/fast motion is possible */
1477             b_control = p_input->b_can_pace_control;
1478
1479             /* chapters & titles */
1480             //b_chapters = p_input->stream.i_area_nb > 1;
1481             vlc_object_release( p_input );
1482         }
1483         pl_Release( p_intf );
1484
1485         if( b_buffering )
1486         {
1487             [o_main_pgbar startAnimation:self];
1488             [o_main_pgbar setIndeterminate:YES];
1489             [o_main_pgbar setHidden:NO];
1490         }
1491         else
1492         {
1493             [o_main_pgbar stopAnimation:self];
1494             [o_main_pgbar setHidden:YES];
1495         }
1496
1497         [o_btn_stop setEnabled: b_input];
1498         [o_btn_ff setEnabled: b_seekable];
1499         [o_btn_rewind setEnabled: b_seekable];
1500         [o_btn_prev setEnabled: (b_plmul || b_chapters)];
1501         [o_btn_next setEnabled: (b_plmul || b_chapters)];
1502
1503         [o_timeslider setFloatValue: 0.0];
1504         [o_timeslider setEnabled: b_seekable];
1505         [o_timefield setStringValue: @"00:00"];
1506         [[[self getControls] getFSPanel] setStreamPos: 0 andTime: @"00:00"];
1507         [[[self getControls] getFSPanel] setSeekable: b_seekable];
1508
1509         [o_embedded_window setSeekable: b_seekable];
1510
1511         p_intf->p_sys->b_current_title_update = true;
1512         
1513         p_intf->p_sys->b_intf_update = false;
1514     }
1515
1516     if( p_intf->p_sys->b_playmode_update )
1517     {
1518         [o_playlist playModeUpdated];
1519         p_intf->p_sys->b_playmode_update = false;
1520     }
1521     if( p_intf->p_sys->b_playlist_update )
1522     {
1523         [o_playlist playlistUpdated];
1524         p_intf->p_sys->b_playlist_update = false;
1525     }
1526
1527     if( p_intf->p_sys->b_fullscreen_update )
1528     {
1529         p_intf->p_sys->b_fullscreen_update = false;
1530     }
1531
1532     if( p_intf->p_sys->b_intf_show )
1533     {
1534         [o_window makeKeyAndOrderFront: self];
1535
1536         p_intf->p_sys->b_intf_show = false;
1537     }
1538
1539     p_input = pl_CurrentInput( p_intf );
1540     if( p_input && vlc_object_alive (p_input) )
1541     {
1542         vlc_value_t val;
1543
1544         if( p_intf->p_sys->b_current_title_update )
1545         {
1546             NSString *aString;
1547             input_item_t * p_item = input_GetItem( p_input );
1548             char * name = input_item_GetNowPlaying( p_item );
1549
1550             if( !name )
1551                 name = input_item_GetName( p_item );
1552
1553             aString = [NSString stringWithUTF8String:name];
1554
1555             free(name);
1556
1557             [self setScrollField: aString stopAfter:-1];
1558             [[[self getControls] getFSPanel] setStreamTitle: aString];
1559
1560             [[o_controls getVoutView] updateTitle];
1561  
1562             [o_playlist updateRowSelection];
1563             p_intf->p_sys->b_current_title_update = FALSE;
1564         }
1565
1566         if( [o_timeslider isEnabled] )
1567         {
1568             /* Update the slider */
1569             vlc_value_t time;
1570             NSString * o_time;
1571             vlc_value_t pos;
1572             char psz_time[MSTRTIME_MAX_SIZE];
1573             float f_updated;
1574
1575             var_Get( p_input, "position", &pos );
1576             f_updated = 10000. * pos.f_float;
1577             [o_timeslider setFloatValue: f_updated];
1578
1579             var_Get( p_input, "time", &time );
1580
1581             o_time = [NSString stringWithUTF8String: secstotimestr( psz_time, (time.i_time / 1000000) )];
1582
1583             [o_timefield setStringValue: o_time];
1584             [[[self getControls] getFSPanel] setStreamPos: f_updated andTime: o_time];
1585             [o_embedded_window setTime: o_time position: f_updated];
1586         }
1587
1588         /* Manage Playing status */
1589         var_Get( p_input, "state", &val );
1590         if( p_intf->p_sys->i_play_status != val.i_int )
1591         {
1592             p_intf->p_sys->i_play_status = val.i_int;
1593             [self playStatusUpdated: p_intf->p_sys->i_play_status];
1594             [o_embedded_window playStatusUpdated: p_intf->p_sys->i_play_status];
1595         }
1596         vlc_object_release( p_input );
1597     }
1598     else if( p_input )
1599     {
1600         vlc_object_release( p_input );
1601     }
1602     else
1603     {
1604         p_intf->p_sys->i_play_status = END_S;
1605         [self playStatusUpdated: p_intf->p_sys->i_play_status];
1606         [o_embedded_window playStatusUpdated: p_intf->p_sys->i_play_status];
1607         [self setSubmenusEnabled: FALSE];
1608     }
1609
1610     if( p_intf->p_sys->b_volume_update )
1611     {
1612         NSString *o_text;
1613         int i_volume_step = 0;
1614         o_text = [NSString stringWithFormat: _NS("Volume: %d%%"), i_lastShownVolume * 400 / AOUT_VOLUME_MAX];
1615         if( i_lastShownVolume != -1 )
1616         [self setScrollField:o_text stopAfter:1000000];
1617         i_volume_step = config_GetInt( p_intf->p_libvlc, "volume-step" );
1618         [o_volumeslider setFloatValue: (float)i_lastShownVolume / i_volume_step];
1619         [o_volumeslider setEnabled: TRUE];
1620         [[[self getControls] getFSPanel] setVolumeLevel: (float)i_lastShownVolume / i_volume_step];
1621         p_intf->p_sys->b_mute = ( i_lastShownVolume == 0 );
1622         p_intf->p_sys->b_volume_update = FALSE;
1623     }
1624
1625 end:
1626     [self updateMessageArray];
1627
1628     if( ((i_end_scroll != -1) && (mdate() > i_end_scroll)) || !p_input )
1629         [self resetScrollField];
1630
1631     [interfaceTimer autorelease];
1632
1633     interfaceTimer = [[NSTimer scheduledTimerWithTimeInterval: 0.3
1634         target: self selector: @selector(manageIntf:)
1635         userInfo: nil repeats: FALSE] retain];
1636 }
1637
1638 #pragma mark -
1639 #pragma mark Interface update
1640
1641 - (void)setupMenus
1642 {
1643     playlist_t * p_playlist = pl_Yield( p_intf );
1644     input_thread_t * p_input = playlist_CurrentInput( p_playlist );
1645     if( p_input != NULL )
1646     {
1647         [o_controls setupVarMenuItem: o_mi_program target: (vlc_object_t *)p_input
1648             var: "program" selector: @selector(toggleVar:)];
1649
1650         [o_controls setupVarMenuItem: o_mi_title target: (vlc_object_t *)p_input
1651             var: "title" selector: @selector(toggleVar:)];
1652
1653         [o_controls setupVarMenuItem: o_mi_chapter target: (vlc_object_t *)p_input
1654             var: "chapter" selector: @selector(toggleVar:)];
1655
1656         [o_controls setupVarMenuItem: o_mi_audiotrack target: (vlc_object_t *)p_input
1657             var: "audio-es" selector: @selector(toggleVar:)];
1658
1659         [o_controls setupVarMenuItem: o_mi_videotrack target: (vlc_object_t *)p_input
1660             var: "video-es" selector: @selector(toggleVar:)];
1661
1662         [o_controls setupVarMenuItem: o_mi_subtitle target: (vlc_object_t *)p_input
1663             var: "spu-es" selector: @selector(toggleVar:)];
1664
1665         aout_instance_t * p_aout = vlc_object_find( p_intf, VLC_OBJECT_AOUT,
1666                                                     FIND_ANYWHERE );
1667         if( p_aout != NULL )
1668         {
1669             [o_controls setupVarMenuItem: o_mi_channels target: (vlc_object_t *)p_aout
1670                 var: "audio-channels" selector: @selector(toggleVar:)];
1671
1672             [o_controls setupVarMenuItem: o_mi_device target: (vlc_object_t *)p_aout
1673                 var: "audio-device" selector: @selector(toggleVar:)];
1674
1675             [o_controls setupVarMenuItem: o_mi_visual target: (vlc_object_t *)p_aout
1676                 var: "visual" selector: @selector(toggleVar:)];
1677             vlc_object_release( (vlc_object_t *)p_aout );
1678         }
1679
1680         vout_thread_t * p_vout = vlc_object_find( p_intf, VLC_OBJECT_VOUT,
1681                                                             FIND_ANYWHERE );
1682
1683         if( p_vout != NULL )
1684         {
1685             vlc_object_t * p_dec_obj;
1686
1687             [o_controls setupVarMenuItem: o_mi_aspect_ratio target: (vlc_object_t *)p_vout
1688                 var: "aspect-ratio" selector: @selector(toggleVar:)];
1689
1690             [o_controls setupVarMenuItem: o_mi_crop target: (vlc_object_t *) p_vout
1691                 var: "crop" selector: @selector(toggleVar:)];
1692
1693             [o_controls setupVarMenuItem: o_mi_screen target: (vlc_object_t *)p_vout
1694                 var: "video-device" selector: @selector(toggleVar:)];
1695
1696             [o_controls setupVarMenuItem: o_mi_deinterlace target: (vlc_object_t *)p_vout
1697                 var: "deinterlace" selector: @selector(toggleVar:)];
1698
1699             p_dec_obj = (vlc_object_t *)vlc_object_find(
1700                                                  (vlc_object_t *)p_vout,
1701                                                  VLC_OBJECT_DECODER,
1702                                                  FIND_PARENT );
1703             if( p_dec_obj != NULL )
1704             {
1705                [o_controls setupVarMenuItem: o_mi_ffmpeg_pp target:
1706                     (vlc_object_t *)p_dec_obj var:"ffmpeg-pp-q" selector:
1707                     @selector(toggleVar:)];
1708
1709                 vlc_object_release(p_dec_obj);
1710             }
1711             vlc_object_release( (vlc_object_t *)p_vout );
1712         }
1713         vlc_object_release( p_input );
1714     }
1715     pl_Release( p_intf );
1716 }
1717
1718 - (void)refreshVoutDeviceMenu:(NSNotification *)o_notification
1719 {
1720     int x,y = 0;
1721     vout_thread_t * p_vout = vlc_object_find( p_intf, VLC_OBJECT_VOUT,
1722                                               FIND_ANYWHERE );
1723  
1724     if(! p_vout )
1725         return;
1726  
1727     /* clean the menu before adding new entries */
1728     if( [o_mi_screen hasSubmenu] )
1729     {
1730         y = [[o_mi_screen submenu] numberOfItems] - 1;
1731         msg_Dbg( VLCIntf, "%i items in submenu", y );
1732         while( x != y )
1733         {
1734             msg_Dbg( VLCIntf, "removing item %i of %i", x, y );
1735             [[o_mi_screen submenu] removeItemAtIndex: x];
1736             x++;
1737         }
1738     }
1739
1740     [o_controls setupVarMenuItem: o_mi_screen target: (vlc_object_t *)p_vout
1741                              var: "video-device" selector: @selector(toggleVar:)];
1742     vlc_object_release( (vlc_object_t *)p_vout );
1743 }
1744
1745 - (void)setScrollField:(NSString *)o_string stopAfter:(int)timeout
1746 {
1747     if( timeout != -1 )
1748         i_end_scroll = mdate() + timeout;
1749     else
1750         i_end_scroll = -1;
1751     [o_scrollfield setStringValue: o_string];
1752 }
1753
1754 - (void)resetScrollField
1755 {
1756     playlist_t * p_playlist = pl_Yield( p_intf );
1757     input_thread_t * p_input = playlist_CurrentInput( p_playlist );
1758
1759     i_end_scroll = -1;
1760     if( p_input && vlc_object_alive (p_input) )
1761     {
1762         NSString *o_temp;
1763         if( input_item_GetNowPlaying ( p_playlist->status.p_item->p_input ) )
1764             o_temp = [NSString stringWithUTF8String: 
1765                 input_item_GetNowPlaying ( p_playlist->status.p_item->p_input )];
1766         else
1767             o_temp = [NSString stringWithUTF8String:
1768                 p_playlist->status.p_item->p_input->psz_name];
1769         [self setScrollField: o_temp stopAfter:-1];
1770         [[[self getControls] getFSPanel] setStreamTitle: o_temp];
1771         vlc_object_release( p_input );
1772         pl_Release( p_intf );
1773         return;
1774     }
1775     pl_Release( p_intf );
1776     [self setScrollField: _NS("VLC media player") stopAfter:-1];
1777 }
1778
1779 - (void)playStatusUpdated:(int)i_status
1780 {
1781     if( i_status == PLAYING_S )
1782     {
1783         [[[self getControls] getFSPanel] setPause];
1784         [o_btn_play setImage: o_img_pause];
1785         [o_btn_play setAlternateImage: o_img_pause_pressed];
1786         [o_btn_play setToolTip: _NS("Pause")];
1787         [o_mi_play setTitle: _NS("Pause")];
1788         [o_dmi_play setTitle: _NS("Pause")];
1789         [o_vmi_play setTitle: _NS("Pause")];
1790     }
1791     else
1792     {
1793         [[[self getControls] getFSPanel] setPlay];
1794         [o_btn_play setImage: o_img_play];
1795         [o_btn_play setAlternateImage: o_img_play_pressed];
1796         [o_btn_play setToolTip: _NS("Play")];
1797         [o_mi_play setTitle: _NS("Play")];
1798         [o_dmi_play setTitle: _NS("Play")];
1799         [o_vmi_play setTitle: _NS("Play")];
1800     }
1801 }
1802
1803 - (void)setSubmenusEnabled:(BOOL)b_enabled
1804 {
1805     [o_mi_program setEnabled: b_enabled];
1806     [o_mi_title setEnabled: b_enabled];
1807     [o_mi_chapter setEnabled: b_enabled];
1808     [o_mi_audiotrack setEnabled: b_enabled];
1809     [o_mi_visual setEnabled: b_enabled];
1810     [o_mi_videotrack setEnabled: b_enabled];
1811     [o_mi_subtitle setEnabled: b_enabled];
1812     [o_mi_channels setEnabled: b_enabled];
1813     [o_mi_deinterlace setEnabled: b_enabled];
1814     [o_mi_ffmpeg_pp setEnabled: b_enabled];
1815     [o_mi_device setEnabled: b_enabled];
1816     [o_mi_screen setEnabled: b_enabled];
1817     [o_mi_aspect_ratio setEnabled: b_enabled];
1818     [o_mi_crop setEnabled: b_enabled];
1819 }
1820
1821 - (IBAction)timesliderUpdate:(id)sender
1822 {
1823     float f_updated;
1824     playlist_t * p_playlist;
1825     input_thread_t * p_input;
1826
1827     switch( [[NSApp currentEvent] type] )
1828     {
1829         case NSLeftMouseUp:
1830         case NSLeftMouseDown:
1831         case NSLeftMouseDragged:
1832             f_updated = [sender floatValue];
1833             break;
1834
1835         default:
1836             return;
1837     }
1838     p_playlist = pl_Yield( p_intf );
1839     p_input = playlist_CurrentInput( p_playlist );
1840     if( p_input != NULL )
1841     {
1842         vlc_value_t time;
1843         vlc_value_t pos;
1844         NSString * o_time;
1845         char psz_time[MSTRTIME_MAX_SIZE];
1846
1847         pos.f_float = f_updated / 10000.;
1848         var_Set( p_input, "position", pos );
1849         [o_timeslider setFloatValue: f_updated];
1850
1851         var_Get( p_input, "time", &time );
1852
1853         o_time = [NSString stringWithUTF8String: secstotimestr( psz_time, (time.i_time / 1000000) )];
1854         [o_timefield setStringValue: o_time];
1855         [[[self getControls] getFSPanel] setStreamPos: f_updated andTime: o_time];
1856         [o_embedded_window setTime: o_time position: f_updated];
1857         vlc_object_release( p_input );
1858     }
1859     pl_Release( p_intf );
1860 }
1861
1862 #pragma mark -
1863 #pragma mark Recent Items
1864
1865 - (IBAction)clearRecentItems:(id)sender
1866 {
1867     [[NSDocumentController sharedDocumentController]
1868                           clearRecentDocuments: nil];
1869 }
1870
1871 - (void)openRecentItem:(id)sender
1872 {
1873     [self application: nil openFile: [sender title]];
1874 }
1875
1876 #pragma mark -
1877 #pragma mark Panels
1878
1879 - (IBAction)intfOpenFile:(id)sender
1880 {
1881     if( !nib_open_loaded )
1882     {
1883         nib_open_loaded = [NSBundle loadNibNamed:@"Open" owner:self];
1884         [o_open awakeFromNib];
1885         [o_open openFile];
1886     } else {
1887         [o_open openFile];
1888     }
1889 }
1890
1891 - (IBAction)intfOpenFileGeneric:(id)sender
1892 {
1893     if( !nib_open_loaded )
1894     {
1895         nib_open_loaded = [NSBundle loadNibNamed:@"Open" owner:self];
1896         [o_open awakeFromNib];
1897         [o_open openFileGeneric];
1898     } else {
1899         [o_open openFileGeneric];
1900     }
1901 }
1902
1903 - (IBAction)intfOpenDisc:(id)sender
1904 {
1905     if( !nib_open_loaded )
1906     {
1907         nib_open_loaded = [NSBundle loadNibNamed:@"Open" owner:self];
1908         [o_open awakeFromNib];
1909         [o_open openDisc];
1910     } else {
1911         [o_open openDisc];
1912     }
1913 }
1914
1915 - (IBAction)intfOpenNet:(id)sender
1916 {
1917     if( !nib_open_loaded )
1918     {
1919         nib_open_loaded = [NSBundle loadNibNamed:@"Open" owner:self];
1920         [o_open awakeFromNib];
1921         [o_open openNet];
1922     } else {
1923         [o_open openNet];
1924     }
1925 }
1926
1927 - (IBAction)intfOpenCapture:(id)sender
1928 {
1929     if( !nib_open_loaded )
1930     {
1931         nib_open_loaded = [NSBundle loadNibNamed:@"Open" owner:self];
1932         [o_open awakeFromNib];
1933         [o_open openCapture];
1934     } else {
1935         [o_open openCapture];
1936     }
1937 }
1938
1939 - (IBAction)showWizard:(id)sender
1940 {
1941     if( !nib_wizard_loaded )
1942     {
1943         nib_wizard_loaded = [NSBundle loadNibNamed:@"Wizard" owner:self];
1944         [o_wizard initStrings];
1945         [o_wizard resetWizard];
1946         [o_wizard showWizard];
1947     } else {
1948         [o_wizard resetWizard];
1949         [o_wizard showWizard];
1950     }
1951 }
1952
1953 - (IBAction)showExtended:(id)sender
1954 {
1955     if( o_extended == nil )
1956         o_extended = [[VLCExtended alloc] init];
1957
1958     if( !nib_extended_loaded )
1959         nib_extended_loaded = [NSBundle loadNibNamed:@"Extended" owner:self];
1960
1961     [o_extended showPanel];
1962 }
1963
1964 - (IBAction)showBookmarks:(id)sender
1965 {
1966     /* we need the wizard-nib for the bookmarks's extract functionality */
1967     if( !nib_wizard_loaded )
1968     {
1969         nib_wizard_loaded = [NSBundle loadNibNamed:@"Wizard" owner:self];
1970         [o_wizard initStrings];
1971     }
1972  
1973     if( !nib_bookmarks_loaded )
1974         nib_bookmarks_loaded = [NSBundle loadNibNamed:@"Bookmarks" owner:self];
1975
1976     [o_bookmarks showBookmarks];
1977 }
1978
1979 - (IBAction)viewPreferences:(id)sender
1980 {
1981     if( !nib_prefs_loaded )
1982     {
1983         nib_prefs_loaded = [NSBundle loadNibNamed:@"Preferences" owner: self];
1984         o_sprefs = [[VLCSimplePrefs alloc] init];
1985         o_prefs= [[VLCPrefs alloc] init];
1986     }
1987
1988     [o_sprefs showSimplePrefs];
1989 }
1990
1991 #pragma mark -
1992 #pragma mark Update
1993
1994 - (IBAction)checkForUpdate:(id)sender
1995 {
1996 #ifdef UPDATE_CHECK
1997     if( !nib_update_loaded )
1998         nib_update_loaded = [NSBundle loadNibNamed:@"Update" owner:self];
1999     [o_update showUpdateWindow];
2000 #else
2001     msg_Err( VLCIntf, "Update checker wasn't enabled in this build" );
2002     intf_UserFatal( VLCIntf, false, _("Update check failed"), _("Checking for updates was not enabled in this build.") );
2003 #endif
2004 }
2005
2006 #pragma mark -
2007 #pragma mark Help and Docs
2008
2009 - (IBAction)viewAbout:(id)sender
2010 {
2011     if( !nib_about_loaded )
2012         nib_about_loaded = [NSBundle loadNibNamed:@"About" owner:self];
2013
2014     [o_about showAbout];
2015 }
2016
2017 - (IBAction)showLicense:(id)sender
2018 {
2019     if( !nib_about_loaded )
2020         nib_about_loaded = [NSBundle loadNibNamed:@"About" owner:self];
2021
2022     [o_about showGPL: sender];
2023 }
2024     
2025 - (IBAction)viewHelp:(id)sender
2026 {
2027     if( !nib_about_loaded )
2028     {
2029         nib_about_loaded = [NSBundle loadNibNamed:@"About" owner:self];
2030         [o_about showHelp];
2031     }
2032     else
2033         [o_about showHelp];
2034 }
2035
2036 - (IBAction)openReadMe:(id)sender
2037 {
2038     NSString * o_path = [[NSBundle mainBundle]
2039         pathForResource: @"README.MacOSX" ofType: @"rtf"];
2040
2041     [[NSWorkspace sharedWorkspace] openFile: o_path
2042                                    withApplication: @"TextEdit"];
2043 }
2044
2045 - (IBAction)openDocumentation:(id)sender
2046 {
2047     NSURL * o_url = [NSURL URLWithString:
2048         @"http://www.videolan.org/doc/"];
2049
2050     [[NSWorkspace sharedWorkspace] openURL: o_url];
2051 }
2052
2053 - (IBAction)openWebsite:(id)sender
2054 {
2055     NSURL * o_url = [NSURL URLWithString: @"http://www.videolan.org/"];
2056
2057     [[NSWorkspace sharedWorkspace] openURL: o_url];
2058 }
2059
2060 - (IBAction)openForum:(id)sender
2061 {
2062     NSURL * o_url = [NSURL URLWithString: @"http://forum.videolan.org/"];
2063
2064     [[NSWorkspace sharedWorkspace] openURL: o_url];
2065 }
2066
2067 - (IBAction)openDonate:(id)sender
2068 {
2069     NSURL * o_url = [NSURL URLWithString: @"http://www.videolan.org/contribute.html#paypal"];
2070
2071     [[NSWorkspace sharedWorkspace] openURL: o_url];
2072 }
2073
2074 #pragma mark -
2075 #pragma mark Crash Log
2076 - (void)sendCrashLog:(NSString *)crashLog withUserComment:(NSString *)userComment
2077 {
2078     NSString *urlStr = @"http://jones.videolan.org/crashlog/sendcrashreport.php";
2079     NSURL *url = [NSURL URLWithString:urlStr];
2080
2081     NSMutableURLRequest *req = [NSMutableURLRequest requestWithURL:url];
2082     [req setHTTPMethod:@"POST"];
2083
2084     ABPerson * contact = [[ABAddressBook sharedAddressBook] me];
2085
2086     ABMultiValue *emails = [contact valueForProperty:kABEmailProperty];
2087     NSString * email = [emails valueAtIndex:[emails indexForIdentifier:
2088                 [emails primaryIdentifier]]];
2089
2090     NSString *postBody;
2091     postBody = [NSString stringWithFormat:@"CrashLog=%@&Comment=%@&Email=%@\r\n",
2092             [crashLog stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding],
2093             [userComment stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding],
2094             [email stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
2095
2096     [req setHTTPBody:[postBody dataUsingEncoding:NSUTF8StringEncoding]];
2097
2098     /* Released from delegate */
2099     crashLogURLConnection = [[NSURLConnection alloc] initWithRequest:req delegate:self];
2100 }
2101
2102 - (void)connectionDidFinishLoading:(NSURLConnection *)connection
2103 {
2104     NSRunInformationalAlertPanel(_NS("Crash Report successfully sent"),
2105                 _NS("Thanks for your report!"),
2106                 _NS("OK"), nil, nil, nil);
2107     [crashLogURLConnection release];
2108     crashLogURLConnection = nil;
2109 }
2110
2111 - (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error
2112 {
2113     NSRunCriticalAlertPanel(_NS("Error when sending the Crash Report"), [error localizedDescription], @"OK", nil, nil);
2114     [crashLogURLConnection release];
2115     crashLogURLConnection = nil;
2116 }
2117
2118 - (NSString *)latestCrashLogPathPreviouslySeen:(BOOL)previouslySeen
2119 {
2120     NSString * crashReporter = [@"~/Library/Logs/CrashReporter" stringByExpandingTildeInPath];
2121     NSDirectoryEnumerator *direnum = [[NSFileManager defaultManager] enumeratorAtPath:crashReporter];
2122     NSString *fname;
2123     NSString * latestLog = nil;
2124     int year  = !previouslySeen ? [[NSUserDefaults standardUserDefaults] integerForKey:@"LatestCrashReportYear"] : 0;
2125     int month = !previouslySeen ? [[NSUserDefaults standardUserDefaults] integerForKey:@"LatestCrashReportMonth"]: 0;
2126     int day   = !previouslySeen ? [[NSUserDefaults standardUserDefaults] integerForKey:@"LatestCrashReportDay"]  : 0;
2127     int hours = !previouslySeen ? [[NSUserDefaults standardUserDefaults] integerForKey:@"LatestCrashReportHours"]: 0;
2128
2129     while (fname = [direnum nextObject])
2130     {
2131         [direnum skipDescendents];
2132         if([fname hasPrefix:@"VLC"] && [fname hasSuffix:@"crash"])
2133         {
2134             NSArray * compo = [fname componentsSeparatedByString:@"_"];
2135             if( [compo count] < 3 ) continue;
2136             compo = [[compo objectAtIndex:1] componentsSeparatedByString:@"-"];
2137             if( [compo count] < 4 ) continue;
2138
2139             // Dooh. ugly.
2140             if( year < [[compo objectAtIndex:0] intValue] ||
2141                 (year ==[[compo objectAtIndex:0] intValue] && 
2142                  (month < [[compo objectAtIndex:1] intValue] ||
2143                   (month ==[[compo objectAtIndex:1] intValue] &&
2144                    (day   < [[compo objectAtIndex:2] intValue] ||
2145                     (day   ==[[compo objectAtIndex:2] intValue] &&
2146                       hours < [[compo objectAtIndex:3] intValue] ))))))
2147             {
2148                 year  = [[compo objectAtIndex:0] intValue];
2149                 month = [[compo objectAtIndex:1] intValue];
2150                 day   = [[compo objectAtIndex:2] intValue];
2151                 hours = [[compo objectAtIndex:3] intValue];
2152                 latestLog = [crashReporter stringByAppendingPathComponent:fname];
2153             }
2154         }
2155     }
2156
2157     if(!(latestLog && [[NSFileManager defaultManager] fileExistsAtPath:latestLog]))
2158         return nil;
2159
2160     if( !previouslySeen )
2161     {
2162         [[NSUserDefaults standardUserDefaults] setInteger:year  forKey:@"LatestCrashReportYear"];
2163         [[NSUserDefaults standardUserDefaults] setInteger:month forKey:@"LatestCrashReportMonth"];
2164         [[NSUserDefaults standardUserDefaults] setInteger:day   forKey:@"LatestCrashReportDay"];
2165         [[NSUserDefaults standardUserDefaults] setInteger:hours forKey:@"LatestCrashReportHours"];
2166     }
2167     return latestLog;
2168 }
2169
2170 - (NSString *)latestCrashLogPath
2171 {
2172     return [self latestCrashLogPathPreviouslySeen:YES];
2173 }
2174
2175 - (void)lookForCrashLog
2176 {
2177     NSAutoreleasePool *o_pool = [[NSAutoreleasePool alloc] init];
2178     // This pref key doesn't exists? this VLC is an upgrade, and this crash log come from previous version
2179     BOOL areCrashLogsTooOld = ![[NSUserDefaults standardUserDefaults] integerForKey:@"LatestCrashReportYear"];
2180     NSString * latestLog = [self latestCrashLogPathPreviouslySeen:NO];
2181     if( latestLog && !areCrashLogsTooOld )
2182         [NSApp runModalForWindow: o_crashrep_win];
2183     [o_pool release];
2184 }
2185
2186 - (IBAction)crashReporterAction:(id)sender
2187 {
2188     if( sender == o_crashrep_send_btn )
2189         [self sendCrashLog:[NSString stringWithContentsOfFile: [self latestCrashLogPath]] withUserComment: [o_crashrep_fld string]];
2190
2191     [NSApp stopModal];
2192     [o_crashrep_win orderOut: sender];
2193 }
2194
2195 - (IBAction)openCrashLog:(id)sender
2196 {
2197     NSString * latestLog = [self latestCrashLogPath];
2198     if( latestLog )
2199     {
2200         [[NSWorkspace sharedWorkspace] openFile: latestLog withApplication: @"Console"];
2201     }
2202     else
2203     {
2204         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.") );
2205     }
2206 }
2207
2208 #pragma mark -
2209 #pragma mark Errors, warnings and messages
2210
2211 - (IBAction)viewErrorsAndWarnings:(id)sender
2212 {
2213     [[[self getInteractionList] getErrorPanel] showPanel];
2214 }
2215
2216 - (IBAction)showMessagesPanel:(id)sender
2217 {
2218     [o_msgs_panel makeKeyAndOrderFront: sender];
2219 }
2220
2221 - (IBAction)showInformationPanel:(id)sender
2222 {
2223     if(! nib_info_loaded )
2224         nib_info_loaded = [NSBundle loadNibNamed:@"MediaInfo" owner: self];
2225     
2226     [o_info initPanel];
2227 }
2228
2229 - (void)windowDidBecomeKey:(NSNotification *)o_notification
2230 {
2231     if( [o_notification object] == o_msgs_panel )
2232     {
2233         id o_msg;
2234         NSEnumerator * o_enum;
2235
2236         [o_messages setString: @""];
2237
2238         [o_msg_lock lock];
2239
2240         o_enum = [o_msg_arr objectEnumerator];
2241
2242         while( ( o_msg = [o_enum nextObject] ) != nil )
2243         {
2244             [o_messages insertText: o_msg];
2245         }
2246
2247         [o_msg_lock unlock];
2248     }
2249 }
2250
2251 - (void)updateMessageArray
2252 {
2253     int i_start, i_stop;
2254
2255     vlc_mutex_lock( p_intf->p_sys->p_sub->p_lock );
2256     i_stop = *p_intf->p_sys->p_sub->pi_stop;
2257     vlc_mutex_unlock( p_intf->p_sys->p_sub->p_lock );
2258
2259     if( p_intf->p_sys->p_sub->i_start != i_stop )
2260     {
2261         NSColor *o_white = [NSColor whiteColor];
2262         NSColor *o_red = [NSColor redColor];
2263         NSColor *o_yellow = [NSColor yellowColor];
2264         NSColor *o_gray = [NSColor grayColor];
2265
2266         NSColor * pp_color[4] = { o_white, o_red, o_yellow, o_gray };
2267         static const char * ppsz_type[4] = { ": ", " error: ",
2268                                              " warning: ", " debug: " };
2269
2270         for( i_start = p_intf->p_sys->p_sub->i_start;
2271              i_start != i_stop;
2272              i_start = (i_start+1) % VLC_MSG_QSIZE )
2273         {
2274             NSString *o_msg;
2275             NSDictionary *o_attr;
2276             NSAttributedString *o_msg_color;
2277
2278             int i_type = p_intf->p_sys->p_sub->p_msg[i_start].i_type;
2279
2280             [o_msg_lock lock];
2281
2282             if( [o_msg_arr count] + 2 > 400 )
2283             {
2284                 unsigned rid[] = { 0, 1 };
2285                 [o_msg_arr removeObjectsFromIndices: (unsigned *)&rid
2286                            numIndices: sizeof(rid)/sizeof(rid[0])];
2287             }
2288
2289             o_attr = [NSDictionary dictionaryWithObject: o_gray
2290                 forKey: NSForegroundColorAttributeName];
2291             o_msg = [NSString stringWithFormat: @"%s%s",
2292                 p_intf->p_sys->p_sub->p_msg[i_start].psz_module,
2293                 ppsz_type[i_type]];
2294             o_msg_color = [[NSAttributedString alloc]
2295                 initWithString: o_msg attributes: o_attr];
2296             [o_msg_arr addObject: [o_msg_color autorelease]];
2297
2298             o_attr = [NSDictionary dictionaryWithObject: pp_color[i_type]
2299                 forKey: NSForegroundColorAttributeName];
2300             o_msg = [[NSString stringWithUTF8String: p_intf->p_sys->p_sub->p_msg[i_start].psz_msg] stringByAppendingString: @"\n"];
2301             o_msg_color = [[NSAttributedString alloc]
2302                 initWithString: o_msg attributes: o_attr];
2303             [o_msg_arr addObject: [o_msg_color autorelease]];
2304
2305             [o_msg_lock unlock];
2306         }
2307
2308         vlc_mutex_lock( p_intf->p_sys->p_sub->p_lock );
2309         p_intf->p_sys->p_sub->i_start = i_start;
2310         vlc_mutex_unlock( p_intf->p_sys->p_sub->p_lock );
2311     }
2312 }
2313
2314 #pragma mark -
2315 #pragma mark Playlist toggling
2316
2317 - (IBAction)togglePlaylist:(id)sender
2318 {
2319     NSRect contentRect = [o_window contentRectForFrameRect:[o_window frame]];
2320     NSRect o_rect = [o_window contentRectForFrameRect:[o_window frame]];
2321     /*First, check if the playlist is visible*/
2322     if( contentRect.size.height <= 169. )
2323     {
2324         o_restore_rect = contentRect;
2325         b_restore_size = true;
2326         b_small_window = YES; /* we know we are small, make sure this is actually set (see case below) */
2327
2328         /* make large */
2329         if( o_size_with_playlist.height > 169. )
2330             o_rect.size.height = o_size_with_playlist.height;
2331         else
2332             o_rect.size.height = 500.;
2333  
2334         if( o_size_with_playlist.width >= [o_window contentMinSize].width )
2335             o_rect.size.width = o_size_with_playlist.width;
2336         else
2337             o_rect.size.width = [o_window contentMinSize].width;
2338
2339         o_rect.origin.x = contentRect.origin.x;
2340         o_rect.origin.y = contentRect.origin.y - o_rect.size.height +
2341             [o_window contentMinSize].height;
2342
2343         o_rect = [o_window frameRectForContentRect:o_rect];
2344
2345         NSRect screenRect = [[o_window screen] visibleFrame];
2346         if( !NSContainsRect( screenRect, o_rect ) ) {
2347             if( NSMaxX(o_rect) > NSMaxX(screenRect) )
2348                 o_rect.origin.x = ( NSMaxX(screenRect) - o_rect.size.width );
2349             if( NSMinY(o_rect) < NSMinY(screenRect) )
2350                 o_rect.origin.y = ( NSMinY(screenRect) );
2351         }
2352
2353         [o_btn_playlist setState: YES];
2354     }
2355     else
2356     {
2357         NSSize curSize = o_rect.size;
2358         if( b_restore_size )
2359         {
2360             o_rect = o_restore_rect;
2361             if( o_rect.size.height < [o_window contentMinSize].height )
2362                 o_rect.size.height = [o_window contentMinSize].height;
2363             if( o_rect.size.width < [o_window contentMinSize].width )
2364                 o_rect.size.width = [o_window contentMinSize].width;
2365         }
2366         else
2367         {
2368             NSRect contentRect = [o_window contentRectForFrameRect:[o_window frame]];
2369             /* make small */
2370             o_rect.size.height = [o_window contentMinSize].height;
2371             o_rect.size.width = [o_window contentMinSize].width;
2372             o_rect.origin.x = contentRect.origin.x;
2373             /* Calculate the position of the lower right corner after resize */
2374             o_rect.origin.y = contentRect.origin.y +
2375                 contentRect.size.height - [o_window contentMinSize].height;
2376         }
2377
2378         [o_playlist_view setAutoresizesSubviews: NO];
2379         [o_playlist_view removeFromSuperview];
2380         [o_btn_playlist setState: NO];
2381         b_small_window = NO; /* we aren't small here just yet. we are doing an animated resize after this */
2382         o_rect = [o_window frameRectForContentRect:o_rect];
2383     }
2384
2385     [o_window setFrame: o_rect display:YES animate: YES];
2386 }
2387
2388 - (void)updateTogglePlaylistState
2389 {
2390     if( [o_window contentRectForFrameRect:[o_window frame]].size.height <= 169. )
2391     {
2392         [o_btn_playlist setState: NO];
2393     }
2394     else
2395     {
2396         [o_btn_playlist setState: YES];
2397     }
2398 }
2399
2400 - (NSSize)windowWillResize:(NSWindow *)sender toSize:(NSSize)proposedFrameSize
2401 {
2402
2403     /* Not triggered on a window resize or maxification of the window. only by window mouse dragging resize */
2404
2405    /*Stores the size the controller one resize, to be able to restore it when
2406      toggling the playlist*/
2407     o_size_with_playlist = proposedFrameSize;
2408
2409     NSRect rect;
2410     rect.size = proposedFrameSize;
2411     if( [o_window contentRectForFrameRect:rect].size.height <= 169. )
2412     {
2413         if( b_small_window == NO )
2414         {
2415             /* if large and going to small then hide */
2416             b_small_window = YES;
2417             [o_playlist_view setAutoresizesSubviews: NO];
2418             [o_playlist_view removeFromSuperview];
2419         }
2420         return NSMakeSize( proposedFrameSize.width, [o_window minSize].height);
2421     }
2422     return proposedFrameSize;
2423 }
2424
2425 - (void)windowDidMove:(NSNotification *)notif
2426 {
2427     b_restore_size = false;
2428 }
2429
2430 - (void)windowDidResize:(NSNotification *)notif
2431 {
2432     if( [o_window contentRectForFrameRect:[o_window frame]].size.height > 169. && b_small_window )
2433     {
2434         /* If large and coming from small then show */
2435         [o_playlist_view setAutoresizesSubviews: YES];
2436         NSRect contentRect = [o_window contentRectForFrameRect:[o_window frame]];
2437         [o_playlist_view setFrame: NSMakeRect( 0, 0, contentRect.size.width, contentRect.size.height - [o_window contentMinSize].height )];
2438         [o_playlist_view setNeedsDisplay:YES];
2439         [[o_window contentView] addSubview: o_playlist_view];
2440         b_small_window = NO;
2441     }
2442     [self updateTogglePlaylistState];
2443 }
2444
2445 #pragma mark -
2446
2447 @end
2448
2449 @implementation VLCMain (NSMenuValidation)
2450
2451 - (BOOL)validateMenuItem:(NSMenuItem *)o_mi
2452 {
2453     NSString *o_title = [o_mi title];
2454     BOOL bEnabled = TRUE;
2455
2456     /* Recent Items Menu */
2457     if( [o_title isEqualToString: _NS("Clear Menu")] )
2458     {
2459         NSMenu * o_menu = [o_mi_open_recent submenu];
2460         int i_nb_items = [o_menu numberOfItems];
2461         NSArray * o_docs = [[NSDocumentController sharedDocumentController]
2462                                                        recentDocumentURLs];
2463         UInt32 i_nb_docs = [o_docs count];
2464
2465         if( i_nb_items > 1 )
2466         {
2467             while( --i_nb_items )
2468             {
2469                 [o_menu removeItemAtIndex: 0];
2470             }
2471         }
2472
2473         if( i_nb_docs > 0 )
2474         {
2475             NSURL * o_url;
2476             NSString * o_doc;
2477
2478             [o_menu insertItem: [NSMenuItem separatorItem] atIndex: 0];
2479
2480             while( TRUE )
2481             {
2482                 i_nb_docs--;
2483
2484                 o_url = [o_docs objectAtIndex: i_nb_docs];
2485
2486                 if( [o_url isFileURL] )
2487                 {
2488                     o_doc = [o_url path];
2489                 }
2490                 else
2491                 {
2492                     o_doc = [o_url absoluteString];
2493                 }
2494
2495                 [o_menu insertItemWithTitle: o_doc
2496                     action: @selector(openRecentItem:)
2497                     keyEquivalent: @"" atIndex: 0];
2498
2499                 if( i_nb_docs == 0 )
2500                 {
2501                     break;
2502                 }
2503             }
2504         }
2505         else
2506         {
2507             bEnabled = FALSE;
2508         }
2509     }
2510     return( bEnabled );
2511 }
2512
2513 @end
2514
2515 @implementation VLCMain (Internal)
2516
2517 - (void)handlePortMessage:(NSPortMessage *)o_msg
2518 {
2519     id ** val;
2520     NSData * o_data;
2521     NSValue * o_value;
2522     NSInvocation * o_inv;
2523     NSConditionLock * o_lock;
2524
2525     o_data = [[o_msg components] lastObject];
2526     o_inv = *((NSInvocation **)[o_data bytes]);
2527     [o_inv getArgument: &o_value atIndex: 2];
2528     val = (id **)[o_value pointerValue];
2529     [o_inv setArgument: val[1] atIndex: 2];
2530     o_lock = *(val[0]);
2531
2532     [o_lock lock];
2533     [o_inv invoke];
2534     [o_lock unlockWithCondition: 1];
2535 }
2536
2537 @end