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