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