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