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