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