]> git.sesse.net Git - vlc/blob - modules/gui/macosx/intf.m
macosx: ExecuteOnMainThread is not used, delete it.
[vlc] / modules / gui / macosx / intf.m
1 /*****************************************************************************
2  * intf.m: MacOS X interface module
3  *****************************************************************************
4  * Copyright (C) 2002-2008 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
8  *          Christophe Massiot <massiot@via.ecp.fr>
9  *          Derk-Jan Hartman <hartman at videolan.org>
10  *          Felix Paul Kühne <fkuehne at videolan dot org>
11  *
12  * This program is free software; you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation; either version 2 of the License, or
15  * (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
25  *****************************************************************************/
26
27 /*****************************************************************************
28  * Preamble
29  *****************************************************************************/
30 #include <stdlib.h>                                      /* malloc(), free() */
31 #include <sys/param.h>                                    /* for MAXPATHLEN */
32 #include <string.h>
33 #include <vlc_keys.h>
34
35 #ifdef HAVE_CONFIG_H
36 #   include "config.h"
37 #endif
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 "sfilters.h"
52 #import "interaction.h"
53 #import "embeddedwindow.h"
54 #import "update.h"
55 #import "AppleRemote.h"
56 #import "eyetv.h"
57 #import "simple_prefs.h"
58
59 #import <vlc_input.h>
60 #import <vlc_interface.h>
61
62 /*****************************************************************************
63  * Local prototypes.
64  *****************************************************************************/
65 static void Run ( intf_thread_t *p_intf );
66
67 /* Quick hack */
68 /*****************************************************************************
69  * VLCApplication implementation (this hack is really disgusting now,
70  *                                feel free to fix.)
71  *****************************************************************************/
72 @interface VLCApplication : NSApplication
73 {
74    libvlc_int_t *o_libvlc;
75 }
76 - (void)setVLC: (libvlc_int_t *)p_libvlc;
77 @end
78
79
80 @implementation VLCApplication
81 - (void)setVLC: (libvlc_int_t *) p_libvlc
82 {
83     o_libvlc = p_libvlc;
84 }
85 - (void)terminate: (id)sender
86 {
87     vlc_object_kill( o_libvlc );
88     [super terminate: sender];
89 }
90 @end
91
92 /*****************************************************************************
93  * OpenIntf: initialize interface
94  *****************************************************************************/
95 int OpenIntf ( vlc_object_t *p_this )
96 {
97     intf_thread_t *p_intf = (intf_thread_t*) p_this;
98
99     p_intf->p_sys = malloc( sizeof( intf_sys_t ) );
100     if( p_intf->p_sys == NULL )
101     {
102         return( 1 );
103     }
104
105     memset( p_intf->p_sys, 0, sizeof( *p_intf->p_sys ) );
106
107     p_intf->p_sys->o_pool = [[NSAutoreleasePool alloc] init];
108
109     p_intf->p_sys->o_sendport = [[NSPort port] retain];
110     p_intf->p_sys->p_sub = msg_Subscribe( p_intf );
111     p_intf->pf_run = Run;
112     p_intf->b_should_run_on_first_thread = true;
113
114     return( 0 );
115 }
116
117 /*****************************************************************************
118  * CloseIntf: destroy interface
119  *****************************************************************************/
120 void CloseIntf ( vlc_object_t *p_this )
121 {
122     intf_thread_t *p_intf = (intf_thread_t*) p_this;
123
124     [[VLCMain sharedInstance] setIntf: nil];
125     
126     msg_Unsubscribe( p_intf, p_intf->p_sys->p_sub );
127
128     [p_intf->p_sys->o_sendport release];
129     [p_intf->p_sys->o_pool release];
130
131     free( p_intf->p_sys );
132 }
133
134 /*****************************************************************************
135  * Run: main loop
136  *****************************************************************************/
137 jmp_buf jmpbuffer;
138
139 static void Run( intf_thread_t *p_intf )
140 {
141     sigset_t set;
142
143     /* Do it again - for some unknown reason, vlc_thread_create() often
144      * fails to go to real-time priority with the first launched thread
145      * (???) --Meuuh */
146     vlc_thread_set_priority( p_intf, VLC_THREAD_PRIORITY_LOW );
147
148     /* Make sure the "force quit" menu item does quit instantly.
149      * VLC overrides SIGTERM which is sent by the "force quit"
150      * menu item to make sure deamon mode quits gracefully, so
151      * we un-override SIGTERM here. */
152     sigemptyset( &set );
153     sigaddset( &set, SIGTERM );
154     pthread_sigmask( SIG_UNBLOCK, &set, NULL );
155
156     NSAutoreleasePool * o_pool = [[NSAutoreleasePool alloc] init];
157
158     /* Install a jmpbuffer to where we can go back before the NSApp exit
159      * see applicationWillTerminate: */
160     /* We need that code to run on main thread */
161     [VLCApplication sharedApplication];
162     [NSApp setVLC: p_intf->p_libvlc];
163
164     [[VLCMain sharedInstance] setIntf: p_intf];
165     [NSBundle loadNibNamed: @"MainMenu" owner: NSApp];
166
167     /* Install a jmpbuffer to where we can go back before the NSApp exit
168      * see applicationWillTerminate: */
169     if(setjmp(jmpbuffer) == 0)
170         [NSApp run];
171
172     [o_pool release];
173 }
174
175 /*****************************************************************************
176  * ManageThread: An ugly thread that polls
177  *****************************************************************************/
178 static void * ManageThread( void *user_data )
179 {
180     id self = user_data;
181
182     [self manage];
183
184     return NULL;
185 }
186
187 /*****************************************************************************
188  * playlistChanged: Callback triggered by the intf-change playlist
189  * variable, to let the intf update the playlist.
190  *****************************************************************************/
191 static int PlaylistChanged( vlc_object_t *p_this, const char *psz_variable,
192                      vlc_value_t old_val, vlc_value_t new_val, void *param )
193 {
194     intf_thread_t * p_intf = VLCIntf;
195     p_intf->p_sys->b_intf_update = true;
196     p_intf->p_sys->b_playlist_update = true;
197     p_intf->p_sys->b_playmode_update = true;
198     p_intf->p_sys->b_current_title_update = true;
199     return VLC_SUCCESS;
200 }
201
202 /*****************************************************************************
203  * ShowController: Callback triggered by the show-intf playlist variable
204  * through the ShowIntf-control-intf, to let us show the controller-win;
205  * usually when in fullscreen-mode
206  *****************************************************************************/
207 static int ShowController( vlc_object_t *p_this, const char *psz_variable,
208                      vlc_value_t old_val, vlc_value_t new_val, void *param )
209 {
210     intf_thread_t * p_intf = VLCIntf;
211     p_intf->p_sys->b_intf_show = true;
212     return VLC_SUCCESS;
213 }
214
215 /*****************************************************************************
216  * FullscreenChanged: Callback triggered by the fullscreen-change playlist
217  * variable, to let the intf update the controller.
218  *****************************************************************************/
219 static int FullscreenChanged( vlc_object_t *p_this, const char *psz_variable,
220                      vlc_value_t old_val, vlc_value_t new_val, void *param )
221 {
222     intf_thread_t * p_intf = VLCIntf;
223     p_intf->p_sys->b_fullscreen_update = true;
224     return VLC_SUCCESS;
225 }
226
227 /*****************************************************************************
228  * InteractCallback: Callback triggered by the interaction
229  * variable, to let the intf display error and interaction dialogs
230  *****************************************************************************/
231 static int InteractCallback( vlc_object_t *p_this, const char *psz_variable,
232                      vlc_value_t old_val, vlc_value_t new_val, void *param )
233 {
234     NSAutoreleasePool * o_pool = [[NSAutoreleasePool alloc] init];
235     VLCMain *interface = (VLCMain *)param;
236     interaction_dialog_t *p_dialog = (interaction_dialog_t *)(new_val.p_address);
237     NSValue *o_value = [NSValue valueWithPointer:p_dialog];
238  
239     [[NSNotificationCenter defaultCenter] postNotificationName: @"VLCNewInteractionEventNotification" object:[interface getInteractionList]
240      userInfo:[NSDictionary dictionaryWithObject:o_value forKey:@"VLCDialogPointer"]];
241  
242     [o_pool release];
243     return VLC_SUCCESS;
244 }
245
246 static struct
247 {
248     unichar i_nskey;
249     unsigned int i_vlckey;
250 } nskeys_to_vlckeys[] =
251 {
252     { NSUpArrowFunctionKey, KEY_UP },
253     { NSDownArrowFunctionKey, KEY_DOWN },
254     { NSLeftArrowFunctionKey, KEY_LEFT },
255     { NSRightArrowFunctionKey, KEY_RIGHT },
256     { NSF1FunctionKey, KEY_F1 },
257     { NSF2FunctionKey, KEY_F2 },
258     { NSF3FunctionKey, KEY_F3 },
259     { NSF4FunctionKey, KEY_F4 },
260     { NSF5FunctionKey, KEY_F5 },
261     { NSF6FunctionKey, KEY_F6 },
262     { NSF7FunctionKey, KEY_F7 },
263     { NSF8FunctionKey, KEY_F8 },
264     { NSF9FunctionKey, KEY_F9 },
265     { NSF10FunctionKey, KEY_F10 },
266     { NSF11FunctionKey, KEY_F11 },
267     { NSF12FunctionKey, KEY_F12 },
268     { NSHomeFunctionKey, KEY_HOME },
269     { NSEndFunctionKey, KEY_END },
270     { NSPageUpFunctionKey, KEY_PAGEUP },
271     { NSPageDownFunctionKey, KEY_PAGEDOWN },
272     { NSTabCharacter, KEY_TAB },
273     { NSCarriageReturnCharacter, KEY_ENTER },
274     { NSEnterCharacter, KEY_ENTER },
275     { NSBackspaceCharacter, KEY_BACKSPACE },
276     { (unichar) ' ', KEY_SPACE },
277     { (unichar) 0x1b, KEY_ESC },
278     {0,0}
279 };
280
281 unichar VLCKeyToCocoa( unsigned int i_key )
282 {
283     unsigned int i;
284
285     for( i = 0; nskeys_to_vlckeys[i].i_vlckey != 0; i++ )
286     {
287         if( nskeys_to_vlckeys[i].i_vlckey == (i_key & ~KEY_MODIFIER) )
288         {
289             return nskeys_to_vlckeys[i].i_nskey;
290         }
291     }
292     return (unichar)(i_key & ~KEY_MODIFIER);
293 }
294
295 unsigned int CocoaKeyToVLC( unichar i_key )
296 {
297     unsigned int i;
298
299     for( i = 0; nskeys_to_vlckeys[i].i_nskey != 0; i++ )
300     {
301         if( nskeys_to_vlckeys[i].i_nskey == i_key )
302         {
303             return nskeys_to_vlckeys[i].i_vlckey;
304         }
305     }
306     return (unsigned int)i_key;
307 }
308
309 unsigned int VLCModifiersToCocoa( unsigned int i_key )
310 {
311     unsigned int new = 0;
312     if( i_key & KEY_MODIFIER_COMMAND )
313         new |= NSCommandKeyMask;
314     if( i_key & KEY_MODIFIER_ALT )
315         new |= NSAlternateKeyMask;
316     if( i_key & KEY_MODIFIER_SHIFT )
317         new |= NSShiftKeyMask;
318     if( i_key & KEY_MODIFIER_CTRL )
319         new |= NSControlKeyMask;
320     return new;
321 }
322
323 /*****************************************************************************
324  * VLCMain implementation
325  *****************************************************************************/
326 @implementation VLCMain
327
328 static VLCMain *_o_sharedMainInstance = nil;
329
330 + (VLCMain *)sharedInstance
331 {
332     return _o_sharedMainInstance ? _o_sharedMainInstance : [[self alloc] init];
333 }
334
335 - (id)init
336 {
337     if( _o_sharedMainInstance) 
338     {
339         [self dealloc];
340         return _o_sharedMainInstance;
341     } 
342     else
343         _o_sharedMainInstance = [super init];
344
345     o_about = [[VLAboutBox alloc] init];
346     o_prefs = nil;
347     o_open = [[VLCOpen alloc] init];
348     o_wizard = [[VLCWizard alloc] init];
349     o_extended = nil;
350     o_bookmarks = [[VLCBookmarks alloc] init];
351     o_embedded_list = [[VLCEmbeddedList alloc] init];
352     o_interaction_list = [[VLCInteractionList alloc] init];
353     o_info = [[VLCInfo alloc] init];
354     o_sfilters = nil;
355 #ifdef UPDATE_CHECK
356     o_update = [[VLCUpdate alloc] init];
357 #endif
358
359     i_lastShownVolume = -1;
360
361     o_remote = [[AppleRemote alloc] init];
362     [o_remote setClickCountEnabledButtons: kRemoteButtonPlay];
363     [o_remote setDelegate: _o_sharedMainInstance];
364
365     o_eyetv = [[VLCEyeTVController alloc] init];
366
367     /* announce our launch to a potential eyetv plugin */
368     [[NSDistributedNotificationCenter defaultCenter] postNotificationName: @"VLCOSXGUIInit"
369                                                                    object: @"VLCEyeTVSupport"
370                                                                  userInfo: NULL
371                                                        deliverImmediately: YES];
372
373     return _o_sharedMainInstance;
374 }
375
376 - (void)setIntf: (intf_thread_t *)p_mainintf {
377     p_intf = p_mainintf;
378 }
379
380 - (intf_thread_t *)getIntf {
381     return p_intf;
382 }
383
384 - (void)awakeFromNib
385 {
386     unsigned int i_key = 0;
387     playlist_t *p_playlist;
388     vlc_value_t val;
389
390     /* Check if we already did this once. Opening the other nibs calls it too, because VLCMain is the owner */
391     if( nib_main_loaded ) return;
392
393     [self initStrings];
394     [o_window setExcludedFromWindowsMenu: TRUE];
395     [o_msgs_panel setExcludedFromWindowsMenu: TRUE];
396     [o_msgs_panel setDelegate: self];
397
398     i_key = config_GetInt( p_intf, "key-quit" );
399     [o_mi_quit setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
400     [o_mi_quit setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
401     i_key = config_GetInt( p_intf, "key-play-pause" );
402     [o_mi_play setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
403     [o_mi_play setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
404     i_key = config_GetInt( p_intf, "key-stop" );
405     [o_mi_stop setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
406     [o_mi_stop setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
407     i_key = config_GetInt( p_intf, "key-faster" );
408     [o_mi_faster setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
409     [o_mi_faster setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
410     i_key = config_GetInt( p_intf, "key-slower" );
411     [o_mi_slower setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
412     [o_mi_slower setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
413     i_key = config_GetInt( p_intf, "key-prev" );
414     [o_mi_previous setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
415     [o_mi_previous setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
416     i_key = config_GetInt( p_intf, "key-next" );
417     [o_mi_next setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
418     [o_mi_next setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
419     i_key = config_GetInt( p_intf, "key-jump+short" );
420     [o_mi_fwd setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
421     [o_mi_fwd setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
422     i_key = config_GetInt( p_intf, "key-jump-short" );
423     [o_mi_bwd setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
424     [o_mi_bwd setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
425     i_key = config_GetInt( p_intf, "key-jump+medium" );
426     [o_mi_fwd1m setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
427     [o_mi_fwd1m setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
428     i_key = config_GetInt( p_intf, "key-jump-medium" );
429     [o_mi_bwd1m setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
430     [o_mi_bwd1m setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
431     i_key = config_GetInt( p_intf, "key-jump+long" );
432     [o_mi_fwd5m setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
433     [o_mi_fwd5m setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
434     i_key = config_GetInt( p_intf, "key-jump-long" );
435     [o_mi_bwd5m setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
436     [o_mi_bwd5m setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
437     i_key = config_GetInt( p_intf, "key-vol-up" );
438     [o_mi_vol_up setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
439     [o_mi_vol_up setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
440     i_key = config_GetInt( p_intf, "key-vol-down" );
441     [o_mi_vol_down setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
442     [o_mi_vol_down setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
443     i_key = config_GetInt( p_intf, "key-vol-mute" );
444     [o_mi_mute setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
445     [o_mi_mute setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
446     i_key = config_GetInt( p_intf, "key-fullscreen" );
447     [o_mi_fullscreen setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
448     [o_mi_fullscreen setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
449     i_key = config_GetInt( p_intf, "key-snapshot" );
450     [o_mi_snapshot setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
451     [o_mi_snapshot setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
452
453     var_Create( p_intf, "intf-change", VLC_VAR_BOOL );
454
455     [self setSubmenusEnabled: FALSE];
456     [self manageVolumeSlider];
457     [o_window setDelegate: self];
458  
459     b_restore_size = false;
460     if( [o_window frame].size.height <= 200 )
461     {
462         b_small_window = YES;
463         [o_window setFrame: NSMakeRect( [o_window frame].origin.x,
464             [o_window frame].origin.y, [o_window frame].size.width,
465             [o_window minSize].height ) display: YES animate:YES];
466         [o_playlist_view setAutoresizesSubviews: NO];
467     }
468     else
469     {
470         b_small_window = NO;
471         [o_playlist_view setFrame: NSMakeRect( 0, 0, [o_window frame].size.width, [o_window frame].size.height - 95 )];
472         [o_playlist_view setNeedsDisplay:YES];
473         [o_playlist_view setAutoresizesSubviews: YES];
474         [[o_window contentView] addSubview: o_playlist_view];
475     }
476     [self updateTogglePlaylistState];
477
478     o_size_with_playlist = [o_window frame].size;
479
480     p_playlist = pl_Yield( p_intf );
481
482     var_Create( p_playlist, "fullscreen", VLC_VAR_BOOL | VLC_VAR_DOINHERIT);
483     val.b_bool = false;
484
485     var_AddCallback( p_playlist, "fullscreen", FullscreenChanged, self);
486     var_AddCallback( p_intf->p_libvlc, "intf-show", ShowController, self);
487
488     vlc_object_release( p_playlist );
489  
490     var_Create( p_intf, "interaction", VLC_VAR_ADDRESS );
491     var_AddCallback( p_intf, "interaction", InteractCallback, self );
492     p_intf->b_interaction = true;
493
494     /* update the playmode stuff */
495     p_intf->p_sys->b_playmode_update = true;
496
497     [[NSNotificationCenter defaultCenter] addObserver: self
498                                              selector: @selector(refreshVoutDeviceMenu:)
499                                                  name: NSApplicationDidChangeScreenParametersNotification
500                                                object: nil];
501
502     o_img_play = [NSImage imageNamed: @"play"];
503     o_img_pause = [NSImage imageNamed: @"pause"];    
504     
505     [self controlTintChanged];
506
507     [[NSNotificationCenter defaultCenter] addObserver: self
508                                              selector: @selector( controlTintChanged )
509                                                  name: NSControlTintDidChangeNotification
510                                                object: nil];
511     
512     nib_main_loaded = TRUE;
513 }
514
515 - (void)controlTintChanged
516 {
517     BOOL b_playing = NO;
518     
519     if( [o_btn_play alternateImage] == o_img_play_pressed )
520         b_playing = YES;
521     
522     if( [NSColor currentControlTint] == NSGraphiteControlTint )
523     {
524         o_img_play_pressed = [NSImage imageNamed: @"play_graphite"];
525         o_img_pause_pressed = [NSImage imageNamed: @"pause_graphite"];
526         
527         [o_btn_prev setAlternateImage: [NSImage imageNamed: @"previous_graphite"]];
528         [o_btn_rewind setAlternateImage: [NSImage imageNamed: @"skip_previous_graphite"]];
529         [o_btn_stop setAlternateImage: [NSImage imageNamed: @"stop_graphite"]];
530         [o_btn_ff setAlternateImage: [NSImage imageNamed: @"skip_forward_graphite"]];
531         [o_btn_next setAlternateImage: [NSImage imageNamed: @"next_graphite"]];
532         [o_btn_fullscreen setAlternateImage: [NSImage imageNamed: @"fullscreen_graphite"]];
533         [o_btn_playlist setAlternateImage: [NSImage imageNamed: @"playlistdrawer_graphite"]];
534         [o_btn_equalizer setAlternateImage: [NSImage imageNamed: @"equalizerdrawer_graphite"]];
535     }
536     else
537     {
538         o_img_play_pressed = [NSImage imageNamed: @"play_blue"];
539         o_img_pause_pressed = [NSImage imageNamed: @"pause_blue"];
540         
541         [o_btn_prev setAlternateImage: [NSImage imageNamed: @"previous_blue"]];
542         [o_btn_rewind setAlternateImage: [NSImage imageNamed: @"skip_previous_blue"]];
543         [o_btn_stop setAlternateImage: [NSImage imageNamed: @"stop_blue"]];
544         [o_btn_ff setAlternateImage: [NSImage imageNamed: @"skip_forward_blue"]];
545         [o_btn_next setAlternateImage: [NSImage imageNamed: @"next_blue"]];
546         [o_btn_fullscreen setAlternateImage: [NSImage imageNamed: @"fullscreen_blue"]];
547         [o_btn_playlist setAlternateImage: [NSImage imageNamed: @"playlistdrawer_blue"]];
548         [o_btn_equalizer setAlternateImage: [NSImage imageNamed: @"equalizerdrawer_blue"]];
549     }
550     
551     if( b_playing )
552         [o_btn_play setAlternateImage: o_img_play_pressed];
553     else
554         [o_btn_play setAlternateImage: o_img_pause_pressed];
555 }
556
557 - (void)initStrings
558 {
559     [o_window setTitle: _NS("VLC - Controller")];
560     [self setScrollField:_NS("VLC media player") stopAfter:-1];
561
562     /* button controls */
563     [o_btn_prev setToolTip: _NS("Previous")];
564     [o_btn_rewind setToolTip: _NS("Rewind")];
565     [o_btn_play setToolTip: _NS("Play")];
566     [o_btn_stop setToolTip: _NS("Stop")];
567     [o_btn_ff setToolTip: _NS("Fast Forward")];
568     [o_btn_next setToolTip: _NS("Next")];
569     [o_btn_fullscreen setToolTip: _NS("Fullscreen")];
570     [o_volumeslider setToolTip: _NS("Volume")];
571     [o_timeslider setToolTip: _NS("Position")];
572     [o_btn_playlist setToolTip: _NS("Playlist")];
573
574     /* messages panel */
575     [o_msgs_panel setTitle: _NS("Messages")];
576     [o_msgs_btn_crashlog setTitle: _NS("Open CrashLog...")];
577
578     /* main menu */
579     [o_mi_about setTitle: [_NS("About VLC media player") \
580         stringByAppendingString: @"..."]];
581     [o_mi_checkForUpdate setTitle: _NS("Check for Update...")];
582     [o_mi_prefs setTitle: _NS("Preferences...")];
583     [o_mi_add_intf setTitle: _NS("Add Interface")];
584     [o_mu_add_intf setTitle: _NS("Add Interface")];
585     [o_mi_services setTitle: _NS("Services")];
586     [o_mi_hide setTitle: _NS("Hide VLC")];
587     [o_mi_hide_others setTitle: _NS("Hide Others")];
588     [o_mi_show_all setTitle: _NS("Show All")];
589     [o_mi_quit setTitle: _NS("Quit VLC")];
590
591     [o_mu_file setTitle: _ANS("1:File")];
592     [o_mi_open_generic setTitle: _NS("Open File...")];
593     [o_mi_open_file setTitle: _NS("Quick Open File...")];
594     [o_mi_open_disc setTitle: _NS("Open Disc...")];
595     [o_mi_open_net setTitle: _NS("Open Network...")];
596     [o_mi_open_capture setTitle: _NS("Open Capture Device...")];
597     [o_mi_open_recent setTitle: _NS("Open Recent")];
598     [o_mi_open_recent_cm setTitle: _NS("Clear Menu")];
599     [o_mi_open_wizard setTitle: _NS("Streaming/Exporting Wizard...")];
600
601     [o_mu_edit setTitle: _NS("Edit")];
602     [o_mi_cut setTitle: _NS("Cut")];
603     [o_mi_copy setTitle: _NS("Copy")];
604     [o_mi_paste setTitle: _NS("Paste")];
605     [o_mi_clear setTitle: _NS("Clear")];
606     [o_mi_select_all setTitle: _NS("Select All")];
607
608     [o_mu_controls setTitle: _NS("Playback")];
609     [o_mi_play setTitle: _NS("Play")];
610     [o_mi_stop setTitle: _NS("Stop")];
611     [o_mi_faster setTitle: _NS("Faster")];
612     [o_mi_slower setTitle: _NS("Slower")];
613     [o_mi_previous setTitle: _NS("Previous")];
614     [o_mi_next setTitle: _NS("Next")];
615     [o_mi_random setTitle: _NS("Random")];
616     [o_mi_repeat setTitle: _NS("Repeat One")];
617     [o_mi_loop setTitle: _NS("Repeat All")];
618     [o_mi_fwd setTitle: _NS("Step Forward")];
619     [o_mi_bwd setTitle: _NS("Step Backward")];
620
621     [o_mi_program setTitle: _NS("Program")];
622     [o_mu_program setTitle: _NS("Program")];
623     [o_mi_title setTitle: _NS("Title")];
624     [o_mu_title setTitle: _NS("Title")];
625     [o_mi_chapter setTitle: _NS("Chapter")];
626     [o_mu_chapter setTitle: _NS("Chapter")];
627
628     [o_mu_audio setTitle: _NS("Audio")];
629     [o_mi_vol_up setTitle: _NS("Volume Up")];
630     [o_mi_vol_down setTitle: _NS("Volume Down")];
631     [o_mi_mute setTitle: _NS("Mute")];
632     [o_mi_audiotrack setTitle: _NS("Audio Track")];
633     [o_mu_audiotrack setTitle: _NS("Audio Track")];
634     [o_mi_channels setTitle: _NS("Audio Channels")];
635     [o_mu_channels setTitle: _NS("Audio Channels")];
636     [o_mi_device setTitle: _NS("Audio Device")];
637     [o_mu_device setTitle: _NS("Audio Device")];
638     [o_mi_visual setTitle: _NS("Visualizations")];
639     [o_mu_visual setTitle: _NS("Visualizations")];
640
641     [o_mu_video setTitle: _NS("Video")];
642     [o_mi_half_window setTitle: _NS("Half Size")];
643     [o_mi_normal_window setTitle: _NS("Normal Size")];
644     [o_mi_double_window setTitle: _NS("Double Size")];
645     [o_mi_fittoscreen setTitle: _NS("Fit to Screen")];
646     [o_mi_fullscreen setTitle: _NS("Fullscreen")];
647     [o_mi_floatontop setTitle: _NS("Float on Top")];
648     [o_mi_snapshot setTitle: _NS("Snapshot")];
649     [o_mi_videotrack setTitle: _NS("Video Track")];
650     [o_mu_videotrack setTitle: _NS("Video Track")];
651     [o_mi_aspect_ratio setTitle: _NS("Aspect-ratio")];
652     [o_mu_aspect_ratio setTitle: _NS("Aspect-ratio")];
653     [o_mi_crop setTitle: _NS("Crop")];
654     [o_mu_crop setTitle: _NS("Crop")];
655     [o_mi_screen setTitle: _NS("Fullscreen Video Device")];
656     [o_mu_screen setTitle: _NS("Fullscreen Video Device")];
657     [o_mi_subtitle setTitle: _NS("Subtitles Track")];
658     [o_mu_subtitle setTitle: _NS("Subtitles Track")];
659     [o_mi_deinterlace setTitle: _NS("Deinterlace")];
660     [o_mu_deinterlace setTitle: _NS("Deinterlace")];
661     [o_mi_ffmpeg_pp setTitle: _NS("Post processing")];
662     [o_mu_ffmpeg_pp setTitle: _NS("Post processing")];
663
664     [o_mu_window setTitle: _NS("Window")];
665     [o_mi_minimize setTitle: _NS("Minimize Window")];
666     [o_mi_close_window setTitle: _NS("Close Window")];
667     [o_mi_controller setTitle: _NS("Controller...")];
668     [o_mi_equalizer setTitle: _NS("Equalizer...")];
669     [o_mi_extended setTitle: _NS("Extended Controls...")];
670     [o_mi_bookmarks setTitle: _NS("Bookmarks...")];
671     [o_mi_playlist setTitle: _NS("Playlist...")];
672     [o_mi_info setTitle: _NS("Media Information...")];
673     [o_mi_messages setTitle: _NS("Messages...")];
674     [o_mi_errorsAndWarnings setTitle: _NS("Errors and Warnings...")];
675
676     [o_mi_bring_atf setTitle: _NS("Bring All to Front")];
677
678     [o_mu_help setTitle: _NS("Help")];
679     [o_mi_help setTitle: _NS("VLC media player Help...")];
680     [o_mi_readme setTitle: _NS("ReadMe / FAQ...")];
681     [o_mi_license setTitle: _NS("License")];
682     [o_mi_documentation setTitle: _NS("Online Documentation...")];
683     [o_mi_website setTitle: _NS("VideoLAN Website...")];
684     [o_mi_donation setTitle: _NS("Make a donation...")];
685     [o_mi_forum setTitle: _NS("Online Forum...")];
686
687     /* dock menu */
688     [o_dmi_play setTitle: _NS("Play")];
689     [o_dmi_stop setTitle: _NS("Stop")];
690     [o_dmi_next setTitle: _NS("Next")];
691     [o_dmi_previous setTitle: _NS("Previous")];
692     [o_dmi_mute setTitle: _NS("Mute")];
693  
694     /* vout menu */
695     [o_vmi_play setTitle: _NS("Play")];
696     [o_vmi_stop setTitle: _NS("Stop")];
697     [o_vmi_prev setTitle: _NS("Previous")];
698     [o_vmi_next setTitle: _NS("Next")];
699     [o_vmi_volup setTitle: _NS("Volume Up")];
700     [o_vmi_voldown setTitle: _NS("Volume Down")];
701     [o_vmi_mute setTitle: _NS("Mute")];
702     [o_vmi_fullscreen setTitle: _NS("Fullscreen")];
703     [o_vmi_snapshot setTitle: _NS("Snapshot")];
704 }
705
706 - (void)applicationWillFinishLaunching:(NSNotification *)o_notification
707 {
708     o_msg_lock = [[NSLock alloc] init];
709     o_msg_arr = [[NSMutableArray arrayWithCapacity: 200] retain];
710
711     [p_intf->p_sys->o_sendport setDelegate: self];
712     [[NSRunLoop currentRunLoop]
713         addPort: p_intf->p_sys->o_sendport
714         forMode: NSDefaultRunLoopMode];
715
716     /* FIXME: don't poll */
717     interfaceTimer = [[NSTimer scheduledTimerWithTimeInterval: 0.5
718                                      target: self selector: @selector(manageIntf:)
719                                    userInfo: nil repeats: FALSE] retain];
720
721     /* Note: we use the pthread API to support pre-10.5 */
722     pthread_create( &manage_thread, NULL, ManageThread, self );
723
724     [o_controls setupVarMenuItem: o_mi_add_intf target: (vlc_object_t *)p_intf
725         var: "intf-add" selector: @selector(toggleVar:)];
726
727     /* check whether the user runs a valid version of OSX; alert is auto-released */
728     if( MACOS_VERSION < 10.4f )
729     {
730         NSAlert *ourAlert;
731         int i_returnValue;
732         ourAlert = [NSAlert alertWithMessageText: _NS("Your version of Mac OS X is not supported")
733                         defaultButton: _NS("Quit")
734                       alternateButton: NULL
735                           otherButton: NULL
736             informativeTextWithFormat: _NS("VLC media player requires Mac OS X 10.4 or higher.")];
737         [ourAlert setAlertStyle: NSCriticalAlertStyle];
738         i_returnValue = [ourAlert runModal];
739         [NSApp terminate: self];
740     }
741
742     vlc_thread_set_priority( p_intf, VLC_THREAD_PRIORITY_LOW );
743 }
744
745 - (BOOL)application:(NSApplication *)o_app openFile:(NSString *)o_filename
746 {
747     BOOL b_autoplay = config_GetInt( VLCIntf, "macosx-autoplay" );
748     NSDictionary *o_dic = [NSDictionary dictionaryWithObjectsAndKeys: o_filename, @"ITEM_URL", nil];
749     if( b_autoplay )
750         [o_playlist appendArray: [NSArray arrayWithObject: o_dic] atPos: -1 enqueue: NO];
751     else
752         [o_playlist appendArray: [NSArray arrayWithObject: o_dic] atPos: -1 enqueue: YES];
753
754     return( TRUE );
755 }
756
757 - (NSString *)localizedString:(const char *)psz
758 {
759     NSString * o_str = nil;
760
761     if( psz != NULL )
762     {
763         o_str = [[[NSString alloc] initWithUTF8String: psz] autorelease];
764
765         if( o_str == NULL )
766         {
767             msg_Err( VLCIntf, "could not translate: %s", psz );
768             return( @"" );
769         }
770     }
771     else
772     {
773         msg_Warn( VLCIntf, "can't translate empty strings" );
774         return( @"" );
775     }
776
777     return( o_str );
778 }
779
780 /* When user click in the Dock icon our double click in the finder */
781 - (BOOL)applicationShouldHandleReopen:(NSApplication *)theApplication hasVisibleWindows:(BOOL)hasVisibleWindows
782 {    
783     if(!hasVisibleWindows)
784         [o_window makeKeyAndOrderFront:self];
785
786     return YES;
787 }
788
789 - (void)applicationDidFinishLaunching:(NSNotification *)aNotification
790 {
791 #ifdef UPDATE_CHECK
792     /* Check for update silently on startup */
793     if( !nib_update_loaded )
794         nib_update_loaded = [NSBundle loadNibNamed:@"Update" owner:self];
795
796     if([o_update shouldCheckForUpdate])
797         [NSThread detachNewThreadSelector:@selector(checkForUpdate) toTarget:o_update withObject:NULL];
798 #endif
799
800     /* Handle sleep notification */
801     [[[NSWorkspace sharedWorkspace] notificationCenter] addObserver:self selector:@selector(computerWillSleep:)
802            name:NSWorkspaceWillSleepNotification object:nil];
803 }
804
805 /* Listen to the remote in exclusive mode, only when VLC is the active
806    application */
807 - (void)applicationDidBecomeActive:(NSNotification *)aNotification
808 {
809     [o_remote startListening: self];
810 }
811 - (void)applicationDidResignActive:(NSNotification *)aNotification
812 {
813     [o_remote stopListening: self];
814 }
815
816 /* Triggered when the computer goes to sleep */
817 - (void)computerWillSleep: (NSNotification *)notification
818 {
819     /* Pause */
820     if( p_intf->p_sys->i_play_status == PLAYING_S )
821     {
822         vlc_value_t val;
823         val.i_int = config_GetInt( p_intf, "key-play-pause" );
824         var_Set( p_intf->p_libvlc, "key-pressed", val );
825     }
826 }
827
828 /* Helper method for the remote control interface in order to trigger forward/backward and volume
829    increase/decrease as long as the user holds the left/right, plus/minus button */
830 - (void) executeHoldActionForRemoteButton: (NSNumber*) buttonIdentifierNumber
831 {
832     if(b_remote_button_hold)
833     {
834         switch([buttonIdentifierNumber intValue])
835         {
836             case kRemoteButtonRight_Hold:
837                   [o_controls forward: self];
838             break;
839             case kRemoteButtonLeft_Hold:
840                   [o_controls backward: self];
841             break;
842             case kRemoteButtonVolume_Plus_Hold:
843                 [o_controls volumeUp: self];
844             break;
845             case kRemoteButtonVolume_Minus_Hold:
846                 [o_controls volumeDown: self];
847             break;
848         }
849         if(b_remote_button_hold)
850         {
851             /* trigger event */
852             [self performSelector:@selector(executeHoldActionForRemoteButton:)
853                          withObject:buttonIdentifierNumber
854                          afterDelay:0.25];
855         }
856     }
857 }
858
859 /* Apple Remote callback */
860 - (void) appleRemoteButton: (AppleRemoteEventIdentifier)buttonIdentifier
861                pressedDown: (BOOL) pressedDown
862                 clickCount: (unsigned int) count
863 {
864     switch( buttonIdentifier )
865     {
866         case kRemoteButtonPlay:
867             if(count >= 2) {
868                 [o_controls toogleFullscreen:self];
869             } else {
870                 [o_controls play: self];
871             }
872             break;
873         case kRemoteButtonVolume_Plus:
874             [o_controls volumeUp: self];
875             break;
876         case kRemoteButtonVolume_Minus:
877             [o_controls volumeDown: self];
878             break;
879         case kRemoteButtonRight:
880             [o_controls next: self];
881             break;
882         case kRemoteButtonLeft:
883             [o_controls prev: self];
884             break;
885         case kRemoteButtonRight_Hold:
886         case kRemoteButtonLeft_Hold:
887         case kRemoteButtonVolume_Plus_Hold:
888         case kRemoteButtonVolume_Minus_Hold:
889             /* simulate an event as long as the user holds the button */
890             b_remote_button_hold = pressedDown;
891             if( pressedDown )
892             {
893                 NSNumber* buttonIdentifierNumber = [NSNumber numberWithInt: buttonIdentifier];
894                 [self performSelector:@selector(executeHoldActionForRemoteButton:)
895                            withObject:buttonIdentifierNumber];
896             }
897             break;
898         case kRemoteButtonMenu:
899             [o_controls showPosition: self];
900             break;
901         default:
902             /* Add here whatever you want other buttons to do */
903             break;
904     }
905 }
906
907 - (char *)delocalizeString:(NSString *)id
908 {
909     NSData * o_data = [id dataUsingEncoding: NSUTF8StringEncoding
910                           allowLossyConversion: NO];
911     char * psz_string;
912
913     if( o_data == nil )
914     {
915         o_data = [id dataUsingEncoding: NSUTF8StringEncoding
916                      allowLossyConversion: YES];
917         psz_string = malloc( [o_data length] + 1 );
918         [o_data getBytes: psz_string];
919         psz_string[ [o_data length] ] = '\0';
920         msg_Err( VLCIntf, "cannot convert to the requested encoding: %s",
921                  psz_string );
922     }
923     else
924     {
925         psz_string = malloc( [o_data length] + 1 );
926         [o_data getBytes: psz_string];
927         psz_string[ [o_data length] ] = '\0';
928     }
929
930     return psz_string;
931 }
932
933 /* i_width is in pixels */
934 - (NSString *)wrapString: (NSString *)o_in_string toWidth: (int) i_width
935 {
936     NSMutableString *o_wrapped;
937     NSString *o_out_string;
938     NSRange glyphRange, effectiveRange, charRange;
939     NSRect lineFragmentRect;
940     unsigned glyphIndex, breaksInserted = 0;
941
942     NSTextStorage *o_storage = [[NSTextStorage alloc] initWithString: o_in_string
943         attributes: [NSDictionary dictionaryWithObjectsAndKeys:
944         [NSFont labelFontOfSize: 0.0], NSFontAttributeName, nil]];
945     NSLayoutManager *o_layout_manager = [[NSLayoutManager alloc] init];
946     NSTextContainer *o_container = [[NSTextContainer alloc]
947         initWithContainerSize: NSMakeSize(i_width, 2000)];
948
949     [o_layout_manager addTextContainer: o_container];
950     [o_container release];
951     [o_storage addLayoutManager: o_layout_manager];
952     [o_layout_manager release];
953
954     o_wrapped = [o_in_string mutableCopy];
955     glyphRange = [o_layout_manager glyphRangeForTextContainer: o_container];
956
957     for( glyphIndex = glyphRange.location ; glyphIndex < NSMaxRange(glyphRange) ;
958             glyphIndex += effectiveRange.length) {
959         lineFragmentRect = [o_layout_manager lineFragmentRectForGlyphAtIndex: glyphIndex
960                                             effectiveRange: &effectiveRange];
961         charRange = [o_layout_manager characterRangeForGlyphRange: effectiveRange
962                                     actualGlyphRange: &effectiveRange];
963         if([o_wrapped lineRangeForRange:
964                 NSMakeRange(charRange.location + breaksInserted, charRange.length)].length > charRange.length) {
965             [o_wrapped insertString: @"\n" atIndex: NSMaxRange(charRange) + breaksInserted];
966             breaksInserted++;
967         }
968     }
969     o_out_string = [NSString stringWithString: o_wrapped];
970     [o_wrapped release];
971     [o_storage release];
972
973     return o_out_string;
974 }
975
976
977 /*****************************************************************************
978  * hasDefinedShortcutKey: Check to see if the key press is a defined VLC
979  * shortcut key.  If it is, pass it off to VLC for handling and return YES,
980  * otherwise ignore it and return NO (where it will get handled by Cocoa).
981  *****************************************************************************/
982 - (BOOL)hasDefinedShortcutKey:(NSEvent *)o_event
983 {
984     unichar key = 0;
985     vlc_value_t val;
986     unsigned int i_pressed_modifiers = 0;
987     struct hotkey *p_hotkeys;
988     int i;
989
990     val.i_int = 0;
991     p_hotkeys = p_intf->p_libvlc->p_hotkeys;
992
993     i_pressed_modifiers = [o_event modifierFlags];
994
995     if( i_pressed_modifiers & NSShiftKeyMask )
996         val.i_int |= KEY_MODIFIER_SHIFT;
997     if( i_pressed_modifiers & NSControlKeyMask )
998         val.i_int |= KEY_MODIFIER_CTRL;
999     if( i_pressed_modifiers & NSAlternateKeyMask )
1000         val.i_int |= KEY_MODIFIER_ALT;
1001     if( i_pressed_modifiers & NSCommandKeyMask )
1002         val.i_int |= KEY_MODIFIER_COMMAND;
1003
1004     key = [[o_event charactersIgnoringModifiers] characterAtIndex: 0];
1005
1006     switch( key )
1007     {
1008         case NSDeleteCharacter:
1009         case NSDeleteFunctionKey:
1010         case NSDeleteCharFunctionKey:
1011         case NSBackspaceCharacter:
1012         case NSUpArrowFunctionKey:
1013         case NSDownArrowFunctionKey:
1014         case NSRightArrowFunctionKey:
1015         case NSLeftArrowFunctionKey:
1016         case NSEnterCharacter:
1017         case NSCarriageReturnCharacter:
1018             return NO;
1019     }
1020
1021     val.i_int |= CocoaKeyToVLC( key );
1022
1023     for( i = 0; p_hotkeys[i].psz_action != NULL; i++ )
1024     {
1025         if( p_hotkeys[i].i_key == val.i_int )
1026         {
1027             var_Set( p_intf->p_libvlc, "key-pressed", val );
1028             return YES;
1029         }
1030     }
1031
1032     return NO;
1033 }
1034
1035 - (id)getControls
1036 {
1037     if( o_controls )
1038         return o_controls;
1039
1040     return nil;
1041 }
1042
1043 - (id)getSimplePreferences
1044 {
1045     if( !o_sprefs )
1046         return nil;
1047
1048     if( !nib_prefs_loaded )
1049         nib_prefs_loaded = [NSBundle loadNibNamed:@"Preferences" owner: self];
1050
1051     return o_sprefs;
1052 }
1053
1054 - (id)getPreferences
1055 {
1056     if( !o_prefs )
1057         return nil;
1058
1059     if( !nib_prefs_loaded )
1060         nib_prefs_loaded = [NSBundle loadNibNamed:@"Preferences" owner: self];
1061
1062     return o_prefs;
1063 }
1064
1065 - (id)getPlaylist
1066 {
1067     if( o_playlist )
1068         return o_playlist;
1069
1070     return nil;
1071 }
1072
1073 - (id)getInfo
1074 {
1075     if( o_info )
1076         return o_info;
1077
1078     return nil;
1079 }
1080
1081 - (id)getWizard
1082 {
1083     if( o_wizard )
1084         return o_wizard;
1085
1086     return nil;
1087 }
1088
1089 - (id)getBookmarks
1090 {
1091     if( o_bookmarks )
1092         return o_bookmarks;
1093
1094     return nil;
1095 }
1096
1097 - (id)getEmbeddedList
1098 {
1099     if( o_embedded_list )
1100         return o_embedded_list;
1101
1102     return nil;
1103 }
1104
1105 - (id)getInteractionList
1106 {
1107     if( o_interaction_list )
1108         return o_interaction_list;
1109
1110     return nil;
1111 }
1112
1113 - (id)getMainIntfPgbar
1114 {
1115     if( o_main_pgbar )
1116         return o_main_pgbar;
1117
1118     return nil;
1119 }
1120
1121 - (id)getControllerWindow
1122 {
1123     if( o_window )
1124         return o_window;
1125     return nil;
1126 }
1127
1128 - (id)getVoutMenu
1129 {
1130     return o_vout_menu;
1131 }
1132
1133 - (id)getEyeTVController
1134 {
1135     if( o_eyetv )
1136         return o_eyetv;
1137
1138     return nil;
1139 }
1140
1141 - (void)manage
1142 {
1143     playlist_t * p_playlist;
1144
1145     /* new thread requires a new pool */
1146     NSAutoreleasePool * o_pool = [[NSAutoreleasePool alloc] init];
1147
1148     vlc_thread_set_priority( p_intf, VLC_THREAD_PRIORITY_LOW );
1149
1150     p_playlist = pl_Yield( p_intf );
1151
1152     var_AddCallback( p_playlist, "playlist-current", PlaylistChanged, self );
1153     var_AddCallback( p_playlist, "intf-change", PlaylistChanged, self );
1154     var_AddCallback( p_playlist, "item-change", PlaylistChanged, self );
1155     var_AddCallback( p_playlist, "item-append", PlaylistChanged, self );
1156     var_AddCallback( p_playlist, "item-deleted", PlaylistChanged, self );
1157
1158     pl_Release( p_intf );
1159
1160     vlc_object_lock( p_intf );
1161     while( vlc_object_alive( p_intf ) )
1162     {
1163         vlc_mutex_lock( &p_intf->change_lock );
1164
1165         if( p_intf->p_sys->p_input == NULL )
1166         {
1167             p_intf->p_sys->p_input = p_playlist->p_input;
1168
1169             /* Refresh the interface */
1170             if( p_intf->p_sys->p_input )
1171             {
1172                 msg_Dbg( p_intf, "input has changed, refreshing interface" );
1173                 p_intf->p_sys->b_input_update = true;
1174             }
1175         }
1176         else if( p_intf->p_sys->p_input->b_die || p_intf->p_sys->p_input->b_dead )
1177         {
1178             /* input stopped */
1179             p_intf->p_sys->b_intf_update = true;
1180             p_intf->p_sys->i_play_status = END_S;
1181             msg_Dbg( p_intf, "input has stopped, refreshing interface" );
1182             p_intf->p_sys->p_input = NULL;
1183         }
1184
1185         /* Manage volume status */
1186         [self manageVolumeSlider];
1187
1188         vlc_mutex_unlock( &p_intf->change_lock );
1189
1190         vlc_object_timedwait( p_intf, 100000 + mdate());
1191     }
1192     vlc_object_unlock( p_intf );
1193     [o_pool release];
1194
1195     var_DelCallback( p_playlist, "playlist-current", PlaylistChanged, self );
1196     var_DelCallback( p_playlist, "intf-change", PlaylistChanged, self );
1197     var_DelCallback( p_playlist, "item-change", PlaylistChanged, self );
1198     var_DelCallback( p_playlist, "item-append", PlaylistChanged, self );
1199     var_DelCallback( p_playlist, "item-deleted", PlaylistChanged, self );
1200
1201     pthread_testcancel(); /* If we were cancelled stop here */
1202
1203     msg_Info( p_intf, "Killing the Mac OS X module" );
1204
1205     /* We are dead, terminate */
1206     [NSApp performSelectorOnMainThread: @selector(terminate:) withObject:nil waitUntilDone:NO];
1207 }
1208
1209 - (void)manageIntf:(NSTimer *)o_timer
1210 {
1211     vlc_value_t val;
1212     playlist_t * p_playlist;
1213     input_thread_t * p_input;
1214
1215     if( p_intf->p_sys->b_input_update )
1216     {
1217         /* Called when new input is opened */
1218         p_intf->p_sys->b_current_title_update = true;
1219         p_intf->p_sys->b_intf_update = true;
1220         p_intf->p_sys->b_input_update = false;
1221     }
1222     if( p_intf->p_sys->b_intf_update )
1223     {
1224         bool b_input = false;
1225         bool b_plmul = false;
1226         bool b_control = false;
1227         bool b_seekable = false;
1228         bool b_chapters = false;
1229
1230         playlist_t * p_playlist = pl_Yield( p_intf );
1231     /* TODO: fix i_size use */
1232         b_plmul = p_playlist->items.i_size > 1;
1233
1234         p_input = vlc_object_find( p_playlist, VLC_OBJECT_INPUT,
1235                                    FIND_CHILD );
1236
1237         if( ( b_input = ( p_input != NULL ) ) )
1238         {
1239             /* seekable streams */
1240             b_seekable = var_GetBool( p_input, "seekable" );
1241
1242             /* check whether slow/fast motion is possible */
1243             b_control = p_input->b_can_pace_control;
1244
1245             /* chapters & titles */
1246             //b_chapters = p_input->stream.i_area_nb > 1;
1247             vlc_object_release( p_input );
1248         }
1249         vlc_object_release( p_playlist );
1250
1251         [o_btn_stop setEnabled: b_input];
1252         [o_btn_ff setEnabled: b_seekable];
1253         [o_btn_rewind setEnabled: b_seekable];
1254         [o_btn_prev setEnabled: (b_plmul || b_chapters)];
1255         [o_btn_next setEnabled: (b_plmul || b_chapters)];
1256
1257         [o_timeslider setFloatValue: 0.0];
1258         [o_timeslider setEnabled: b_seekable];
1259         [o_timefield setStringValue: @"00:00"];
1260         [[[self getControls] getFSPanel] setStreamPos: 0 andTime: @"00:00"];
1261         [[[self getControls] getFSPanel] setSeekable: b_seekable];
1262
1263         [o_embedded_window setSeekable: b_seekable];
1264
1265         p_intf->p_sys->b_current_title_update = true;
1266         
1267         p_intf->p_sys->b_intf_update = false;
1268     }
1269
1270     if( p_intf->p_sys->b_playmode_update )
1271     {
1272         [o_playlist playModeUpdated];
1273         p_intf->p_sys->b_playmode_update = false;
1274     }
1275     if( p_intf->p_sys->b_playlist_update )
1276     {
1277         [o_playlist playlistUpdated];
1278         p_intf->p_sys->b_playlist_update = false;
1279     }
1280
1281     if( p_intf->p_sys->b_fullscreen_update )
1282     {
1283         p_intf->p_sys->b_fullscreen_update = false;
1284     }
1285
1286     if( p_intf->p_sys->b_intf_show )
1287     {
1288         [o_window makeKeyAndOrderFront: self];
1289
1290         p_intf->p_sys->b_intf_show = false;
1291     }
1292
1293     p_playlist = pl_Yield( p_intf );
1294     p_input = vlc_object_find( p_playlist, VLC_OBJECT_INPUT,
1295                                FIND_CHILD );
1296
1297     if( p_input && !p_input->b_die )
1298     {
1299         vlc_value_t val;
1300
1301         if( p_intf->p_sys->b_current_title_update )
1302         {
1303             NSString *o_temp;
1304
1305             if( p_playlist->status.p_item == NULL )
1306             {
1307                 vlc_object_release( p_input );
1308                 vlc_object_release( p_playlist );
1309                 return;
1310             }
1311             if( input_item_GetNowPlaying ( p_playlist->status.p_item->p_input ) )
1312                 o_temp = [NSString stringWithUTF8String: 
1313                     input_item_GetNowPlaying ( p_playlist->status.p_item->p_input )];
1314             else
1315                 o_temp = [NSString stringWithUTF8String:
1316                     p_playlist->status.p_item->p_input->psz_name];
1317             [self setScrollField: o_temp stopAfter:-1];
1318             [[[self getControls] getFSPanel] setStreamTitle: o_temp];
1319
1320             [[o_controls getVoutView] updateTitle];
1321  
1322             [o_playlist updateRowSelection];
1323             p_intf->p_sys->b_current_title_update = FALSE;
1324         }
1325
1326         if( [o_timeslider isEnabled] )
1327         {
1328             /* Update the slider */
1329             vlc_value_t time;
1330             NSString * o_time;
1331             vlc_value_t pos;
1332             char psz_time[MSTRTIME_MAX_SIZE];
1333             float f_updated;
1334
1335             var_Get( p_input, "position", &pos );
1336             f_updated = 10000. * pos.f_float;
1337             [o_timeslider setFloatValue: f_updated];
1338
1339             var_Get( p_input, "time", &time );
1340
1341             o_time = [NSString stringWithUTF8String: secstotimestr( psz_time, (time.i_time / 1000000) )];
1342
1343             [o_timefield setStringValue: o_time];
1344             [[[self getControls] getFSPanel] setStreamPos: f_updated andTime: o_time];
1345             [o_embedded_window setTime: o_time position: f_updated];
1346         }
1347
1348         if( p_intf->p_sys->b_volume_update )
1349         {
1350             NSString *o_text;
1351             int i_volume_step = 0;
1352             o_text = [NSString stringWithFormat: _NS("Volume: %d%%"), i_lastShownVolume * 400 / AOUT_VOLUME_MAX];
1353             if( i_lastShownVolume != -1 )
1354             [self setScrollField:o_text stopAfter:1000000];
1355             i_volume_step = config_GetInt( p_intf->p_libvlc, "volume-step" );
1356             [o_volumeslider setFloatValue: (float)i_lastShownVolume / i_volume_step];
1357             [o_volumeslider setEnabled: TRUE];
1358             [[[self getControls] getFSPanel] setVolumeLevel: (float)i_lastShownVolume / i_volume_step];
1359             p_intf->p_sys->b_mute = ( i_lastShownVolume == 0 );
1360             p_intf->p_sys->b_volume_update = FALSE;
1361         }
1362
1363         /* Manage Playing status */
1364         var_Get( p_input, "state", &val );
1365         if( p_intf->p_sys->i_play_status != val.i_int )
1366         {
1367             p_intf->p_sys->i_play_status = val.i_int;
1368             [self playStatusUpdated: p_intf->p_sys->i_play_status];
1369             [o_embedded_window playStatusUpdated: p_intf->p_sys->i_play_status];
1370         }
1371         vlc_object_release( p_input );
1372     }
1373     else
1374     {
1375         p_intf->p_sys->i_play_status = END_S;
1376         p_intf->p_sys->b_playlist_update = true;
1377         [self playStatusUpdated: p_intf->p_sys->i_play_status];
1378         [o_embedded_window playStatusUpdated: p_intf->p_sys->i_play_status];
1379         [self setSubmenusEnabled: FALSE];
1380     }
1381     vlc_object_release( p_playlist );
1382
1383     [self updateMessageArray];
1384
1385     if( ((i_end_scroll != -1) && (mdate() > i_end_scroll)) || !p_input )
1386         [self resetScrollField];
1387
1388     [interfaceTimer autorelease];
1389
1390     interfaceTimer = [[NSTimer scheduledTimerWithTimeInterval: 0.3
1391         target: self selector: @selector(manageIntf:)
1392         userInfo: nil repeats: FALSE] retain];
1393 }
1394
1395 - (void)setupMenus
1396 {
1397     playlist_t * p_playlist = pl_Yield( p_intf );
1398     input_thread_t * p_input = p_playlist->p_input;
1399     if( p_input != NULL )
1400     {
1401         vlc_object_yield( p_input );
1402         [o_controls setupVarMenuItem: o_mi_program target: (vlc_object_t *)p_input
1403             var: "program" selector: @selector(toggleVar:)];
1404
1405         [o_controls setupVarMenuItem: o_mi_title target: (vlc_object_t *)p_input
1406             var: "title" selector: @selector(toggleVar:)];
1407
1408         [o_controls setupVarMenuItem: o_mi_chapter target: (vlc_object_t *)p_input
1409             var: "chapter" selector: @selector(toggleVar:)];
1410
1411         [o_controls setupVarMenuItem: o_mi_audiotrack target: (vlc_object_t *)p_input
1412             var: "audio-es" selector: @selector(toggleVar:)];
1413
1414         [o_controls setupVarMenuItem: o_mi_videotrack target: (vlc_object_t *)p_input
1415             var: "video-es" selector: @selector(toggleVar:)];
1416
1417         [o_controls setupVarMenuItem: o_mi_subtitle target: (vlc_object_t *)p_input
1418             var: "spu-es" selector: @selector(toggleVar:)];
1419
1420         aout_instance_t * p_aout = vlc_object_find( p_intf, VLC_OBJECT_AOUT,
1421                                                     FIND_ANYWHERE );
1422         if( p_aout != NULL )
1423         {
1424             [o_controls setupVarMenuItem: o_mi_channels target: (vlc_object_t *)p_aout
1425                 var: "audio-channels" selector: @selector(toggleVar:)];
1426
1427             [o_controls setupVarMenuItem: o_mi_device target: (vlc_object_t *)p_aout
1428                 var: "audio-device" selector: @selector(toggleVar:)];
1429
1430             [o_controls setupVarMenuItem: o_mi_visual target: (vlc_object_t *)p_aout
1431                 var: "visual" selector: @selector(toggleVar:)];
1432             vlc_object_release( (vlc_object_t *)p_aout );
1433         }
1434
1435         vout_thread_t * p_vout = vlc_object_find( p_intf, VLC_OBJECT_VOUT,
1436                                                             FIND_ANYWHERE );
1437
1438         if( p_vout != NULL )
1439         {
1440             vlc_object_t * p_dec_obj;
1441
1442             [o_controls setupVarMenuItem: o_mi_aspect_ratio target: (vlc_object_t *)p_vout
1443                 var: "aspect-ratio" selector: @selector(toggleVar:)];
1444
1445             [o_controls setupVarMenuItem: o_mi_crop target: (vlc_object_t *) p_vout
1446                 var: "crop" selector: @selector(toggleVar:)];
1447
1448             [o_controls setupVarMenuItem: o_mi_screen target: (vlc_object_t *)p_vout
1449                 var: "video-device" selector: @selector(toggleVar:)];
1450
1451             [o_controls setupVarMenuItem: o_mi_deinterlace target: (vlc_object_t *)p_vout
1452                 var: "deinterlace" selector: @selector(toggleVar:)];
1453
1454             p_dec_obj = (vlc_object_t *)vlc_object_find(
1455                                                  (vlc_object_t *)p_vout,
1456                                                  VLC_OBJECT_DECODER,
1457                                                  FIND_PARENT );
1458             if( p_dec_obj != NULL )
1459             {
1460                [o_controls setupVarMenuItem: o_mi_ffmpeg_pp target:
1461                     (vlc_object_t *)p_dec_obj var:"ffmpeg-pp-q" selector:
1462                     @selector(toggleVar:)];
1463
1464                 vlc_object_release(p_dec_obj);
1465             }
1466             vlc_object_release( (vlc_object_t *)p_vout );
1467         }
1468         vlc_object_release( p_input );
1469     }
1470     vlc_object_release( p_playlist );
1471 }
1472
1473 - (void)refreshVoutDeviceMenu:(NSNotification *)o_notification
1474 {
1475     int x,y = 0;
1476     vout_thread_t * p_vout = vlc_object_find( p_intf, VLC_OBJECT_VOUT,
1477                                               FIND_ANYWHERE );
1478  
1479     if(! p_vout )
1480         return;
1481  
1482     /* clean the menu before adding new entries */
1483     if( [o_mi_screen hasSubmenu] )
1484     {
1485         y = [[o_mi_screen submenu] numberOfItems] - 1;
1486         msg_Dbg( VLCIntf, "%i items in submenu", y );
1487         while( x != y )
1488         {
1489             msg_Dbg( VLCIntf, "removing item %i of %i", x, y );
1490             [[o_mi_screen submenu] removeItemAtIndex: x];
1491             x++;
1492         }
1493     }
1494
1495     [o_controls setupVarMenuItem: o_mi_screen target: (vlc_object_t *)p_vout
1496                              var: "video-device" selector: @selector(toggleVar:)];
1497     vlc_object_release( (vlc_object_t *)p_vout );
1498 }
1499
1500 - (void)setScrollField:(NSString *)o_string stopAfter:(int)timeout
1501 {
1502     if( timeout != -1 )
1503         i_end_scroll = mdate() + timeout;
1504     else
1505         i_end_scroll = -1;
1506     [o_scrollfield setStringValue: o_string];
1507 }
1508
1509 - (void)resetScrollField
1510 {
1511     playlist_t * p_playlist = pl_Yield( p_intf );
1512     input_thread_t * p_input = p_playlist->p_input;
1513
1514     i_end_scroll = -1;
1515     if( p_input && !p_input->b_die )
1516     {
1517         NSString *o_temp;
1518         vlc_object_yield( p_input );
1519         if( input_item_GetNowPlaying ( p_playlist->status.p_item->p_input ) )
1520             o_temp = [NSString stringWithUTF8String: 
1521                 input_item_GetNowPlaying ( p_playlist->status.p_item->p_input )];
1522         else
1523             o_temp = [NSString stringWithUTF8String:
1524                 p_playlist->status.p_item->p_input->psz_name];
1525         [self setScrollField: o_temp stopAfter:-1];
1526         [[[self getControls] getFSPanel] setStreamTitle: o_temp];
1527         vlc_object_release( p_input );
1528         vlc_object_release( p_playlist );
1529         return;
1530     }
1531     vlc_object_release( p_playlist );
1532     [self setScrollField: _NS("VLC media player") stopAfter:-1];
1533 }
1534
1535 - (void)updateMessageArray
1536 {
1537     int i_start, i_stop;
1538
1539     vlc_mutex_lock( p_intf->p_sys->p_sub->p_lock );
1540     i_stop = *p_intf->p_sys->p_sub->pi_stop;
1541     vlc_mutex_unlock( p_intf->p_sys->p_sub->p_lock );
1542
1543     if( p_intf->p_sys->p_sub->i_start != i_stop )
1544     {
1545         NSColor *o_white = [NSColor whiteColor];
1546         NSColor *o_red = [NSColor redColor];
1547         NSColor *o_yellow = [NSColor yellowColor];
1548         NSColor *o_gray = [NSColor grayColor];
1549
1550         NSColor * pp_color[4] = { o_white, o_red, o_yellow, o_gray };
1551         static const char * ppsz_type[4] = { ": ", " error: ",
1552                                              " warning: ", " debug: " };
1553
1554         for( i_start = p_intf->p_sys->p_sub->i_start;
1555              i_start != i_stop;
1556              i_start = (i_start+1) % VLC_MSG_QSIZE )
1557         {
1558             NSString *o_msg;
1559             NSDictionary *o_attr;
1560             NSAttributedString *o_msg_color;
1561
1562             int i_type = p_intf->p_sys->p_sub->p_msg[i_start].i_type;
1563
1564             [o_msg_lock lock];
1565
1566             if( [o_msg_arr count] + 2 > 400 )
1567             {
1568                 unsigned rid[] = { 0, 1 };
1569                 [o_msg_arr removeObjectsFromIndices: (unsigned *)&rid
1570                            numIndices: sizeof(rid)/sizeof(rid[0])];
1571             }
1572
1573             o_attr = [NSDictionary dictionaryWithObject: o_gray
1574                 forKey: NSForegroundColorAttributeName];
1575             o_msg = [NSString stringWithFormat: @"%s%s",
1576                 p_intf->p_sys->p_sub->p_msg[i_start].psz_module,
1577                 ppsz_type[i_type]];
1578             o_msg_color = [[NSAttributedString alloc]
1579                 initWithString: o_msg attributes: o_attr];
1580             [o_msg_arr addObject: [o_msg_color autorelease]];
1581
1582             o_attr = [NSDictionary dictionaryWithObject: pp_color[i_type]
1583                 forKey: NSForegroundColorAttributeName];
1584             o_msg = [NSString stringWithFormat: @"%s\n",
1585                 p_intf->p_sys->p_sub->p_msg[i_start].psz_msg];
1586             o_msg_color = [[NSAttributedString alloc]
1587                 initWithString: o_msg attributes: o_attr];
1588             [o_msg_arr addObject: [o_msg_color autorelease]];
1589
1590             [o_msg_lock unlock];
1591         }
1592
1593         vlc_mutex_lock( p_intf->p_sys->p_sub->p_lock );
1594         p_intf->p_sys->p_sub->i_start = i_start;
1595         vlc_mutex_unlock( p_intf->p_sys->p_sub->p_lock );
1596     }
1597 }
1598
1599 - (void)playStatusUpdated:(int)i_status
1600 {
1601     if( i_status == PLAYING_S )
1602     {
1603         [[[self getControls] getFSPanel] setPause];
1604         [o_btn_play setImage: o_img_pause];
1605         [o_btn_play setAlternateImage: o_img_pause_pressed];
1606         [o_btn_play setToolTip: _NS("Pause")];
1607         [o_mi_play setTitle: _NS("Pause")];
1608         [o_dmi_play setTitle: _NS("Pause")];
1609         [o_vmi_play setTitle: _NS("Pause")];
1610     }
1611     else
1612     {
1613         [[[self getControls] getFSPanel] setPlay];
1614         [o_btn_play setImage: o_img_play];
1615         [o_btn_play setAlternateImage: o_img_play_pressed];
1616         [o_btn_play setToolTip: _NS("Play")];
1617         [o_mi_play setTitle: _NS("Play")];
1618         [o_dmi_play setTitle: _NS("Play")];
1619         [o_vmi_play setTitle: _NS("Play")];
1620     }
1621 }
1622
1623 - (void)setSubmenusEnabled:(BOOL)b_enabled
1624 {
1625     [o_mi_program setEnabled: b_enabled];
1626     [o_mi_title setEnabled: b_enabled];
1627     [o_mi_chapter setEnabled: b_enabled];
1628     [o_mi_audiotrack setEnabled: b_enabled];
1629     [o_mi_visual setEnabled: b_enabled];
1630     [o_mi_videotrack setEnabled: b_enabled];
1631     [o_mi_subtitle setEnabled: b_enabled];
1632     [o_mi_channels setEnabled: b_enabled];
1633     [o_mi_deinterlace setEnabled: b_enabled];
1634     [o_mi_ffmpeg_pp setEnabled: b_enabled];
1635     [o_mi_device setEnabled: b_enabled];
1636     [o_mi_screen setEnabled: b_enabled];
1637     [o_mi_aspect_ratio setEnabled: b_enabled];
1638     [o_mi_crop setEnabled: b_enabled];
1639 }
1640
1641 - (void)manageVolumeSlider
1642 {
1643     audio_volume_t i_volume;
1644     aout_VolumeGet( p_intf, &i_volume );
1645
1646     if( i_volume != i_lastShownVolume )
1647     {
1648         i_lastShownVolume = i_volume;
1649         p_intf->p_sys->b_volume_update = TRUE;
1650     }
1651 }
1652
1653 - (IBAction)timesliderUpdate:(id)sender
1654 {
1655     float f_updated;
1656     playlist_t * p_playlist;
1657     input_thread_t * p_input;
1658
1659     switch( [[NSApp currentEvent] type] )
1660     {
1661         case NSLeftMouseUp:
1662         case NSLeftMouseDown:
1663         case NSLeftMouseDragged:
1664             f_updated = [sender floatValue];
1665             break;
1666
1667         default:
1668             return;
1669     }
1670     p_playlist = pl_Yield( p_intf );
1671     p_input = p_playlist->p_input;
1672     if( p_input != NULL )
1673     {
1674         vlc_value_t time;
1675         vlc_value_t pos;
1676         NSString * o_time;
1677         char psz_time[MSTRTIME_MAX_SIZE];
1678         vlc_object_yield( p_input );
1679
1680         pos.f_float = f_updated / 10000.;
1681         var_Set( p_input, "position", pos );
1682         [o_timeslider setFloatValue: f_updated];
1683
1684         var_Get( p_input, "time", &time );
1685
1686         o_time = [NSString stringWithUTF8String: secstotimestr( psz_time, (time.i_time / 1000000) )];
1687         [o_timefield setStringValue: o_time];
1688         [[[self getControls] getFSPanel] setStreamPos: f_updated andTime: o_time];
1689         [o_embedded_window setTime: o_time position: f_updated];
1690         vlc_object_release( p_input );
1691     }
1692     vlc_object_release( p_playlist );
1693 }
1694
1695 - (void)applicationWillTerminate:(NSNotification *)notification
1696 {
1697     playlist_t * p_playlist;
1698     vout_thread_t * p_vout;
1699     int returnedValue = 0;
1700  
1701     msg_Dbg( p_intf, "Terminating" );
1702
1703     /* Make sure the manage_thread won't call -terminate: again */
1704     pthread_cancel( manage_thread );
1705
1706     /* Make sure the intf object is getting killed */
1707     vlc_object_kill( p_intf );
1708
1709     /* Make sure our manage_thread ends */
1710     pthread_join( manage_thread, NULL );
1711
1712     /* Make sure the interfaceTimer is destroyed */
1713     [interfaceTimer invalidate];
1714     [interfaceTimer release];
1715     interfaceTimer = nil;
1716
1717     /* make sure that the current volume is saved */
1718     config_PutInt( p_intf->p_libvlc, "volume", i_lastShownVolume );
1719     returnedValue = config_SaveConfigFile( p_intf->p_libvlc, "main" );
1720     if( returnedValue != 0 )
1721         msg_Err( p_intf,
1722                  "error while saving volume in osx's terminate method (%i)",
1723                  returnedValue );
1724
1725     /* save the prefs if they were changed in the extended panel */
1726     if(o_extended && [o_extended getConfigChanged])
1727     {
1728         [o_extended savePrefs];
1729     }
1730  
1731     p_intf->b_interaction = false;
1732     var_DelCallback( p_intf, "interaction", InteractCallback, self );
1733
1734     /* remove global observer watching for vout device changes correctly */
1735     [[NSNotificationCenter defaultCenter] removeObserver: self];
1736
1737     /* release some other objects here, because it isn't sure whether dealloc
1738      * will be called later on */
1739
1740     if( nib_about_loaded )
1741         [o_about release];
1742
1743     if( nib_prefs_loaded )
1744     {
1745         [o_sprefs release];
1746         [o_prefs release];
1747     }
1748
1749     if( nib_open_loaded )
1750         [o_open release];
1751
1752     if( nib_extended_loaded )
1753     {
1754         [o_extended release];
1755     }
1756
1757     if( nib_bookmarks_loaded )
1758         [o_bookmarks release];
1759
1760     if( nib_info_loaded )
1761         [o_info release];
1762     
1763     if( nib_wizard_loaded )
1764         [o_wizard release];
1765  
1766     [o_embedded_list release];
1767     [o_interaction_list release];
1768     [o_eyetv release];
1769
1770     [o_img_pause_pressed release];
1771     [o_img_play_pressed release];
1772     [o_img_pause release];
1773     [o_img_play release];
1774
1775     [o_msg_arr removeAllObjects];
1776     [o_msg_arr release];
1777
1778     [o_msg_lock release];
1779
1780     /* write cached user defaults to disk */
1781     [[NSUserDefaults standardUserDefaults] synchronize];
1782
1783     vlc_object_kill( p_intf->p_libvlc );
1784
1785     /* Go back to Run() and make libvlc exit properly */
1786     if( jmpbuffer )
1787         longjmp( jmpbuffer, 1 );
1788     /* not reached */
1789 }
1790
1791
1792 - (IBAction)clearRecentItems:(id)sender
1793 {
1794     [[NSDocumentController sharedDocumentController]
1795                           clearRecentDocuments: nil];
1796 }
1797
1798 - (void)openRecentItem:(id)sender
1799 {
1800     [self application: nil openFile: [sender title]];
1801 }
1802
1803 - (IBAction)intfOpenFile:(id)sender
1804 {
1805     if( !nib_open_loaded )
1806     {
1807         nib_open_loaded = [NSBundle loadNibNamed:@"Open" owner:self];
1808         [o_open awakeFromNib];
1809         [o_open openFile];
1810     } else {
1811         [o_open openFile];
1812     }
1813 }
1814
1815 - (IBAction)intfOpenFileGeneric:(id)sender
1816 {
1817     if( !nib_open_loaded )
1818     {
1819         nib_open_loaded = [NSBundle loadNibNamed:@"Open" owner:self];
1820         [o_open awakeFromNib];
1821         [o_open openFileGeneric];
1822     } else {
1823         [o_open openFileGeneric];
1824     }
1825 }
1826
1827 - (IBAction)intfOpenDisc:(id)sender
1828 {
1829     if( !nib_open_loaded )
1830     {
1831         nib_open_loaded = [NSBundle loadNibNamed:@"Open" owner:self];
1832         [o_open awakeFromNib];
1833         [o_open openDisc];
1834     } else {
1835         [o_open openDisc];
1836     }
1837 }
1838
1839 - (IBAction)intfOpenNet:(id)sender
1840 {
1841     if( !nib_open_loaded )
1842     {
1843         nib_open_loaded = [NSBundle loadNibNamed:@"Open" owner:self];
1844         [o_open awakeFromNib];
1845         [o_open openNet];
1846     } else {
1847         [o_open openNet];
1848     }
1849 }
1850
1851 - (IBAction)intfOpenCapture:(id)sender
1852 {
1853     if( !nib_open_loaded )
1854     {
1855         nib_open_loaded = [NSBundle loadNibNamed:@"Open" owner:self];
1856         [o_open awakeFromNib];
1857         [o_open openCapture];
1858     } else {
1859         [o_open openCapture];
1860     }
1861 }
1862
1863 - (IBAction)showWizard:(id)sender
1864 {
1865     if( !nib_wizard_loaded )
1866     {
1867         nib_wizard_loaded = [NSBundle loadNibNamed:@"Wizard" owner:self];
1868         [o_wizard initStrings];
1869         [o_wizard resetWizard];
1870         [o_wizard showWizard];
1871     } else {
1872         [o_wizard resetWizard];
1873         [o_wizard showWizard];
1874     }
1875 }
1876
1877 - (IBAction)showExtended:(id)sender
1878 {
1879     if( o_extended == nil )
1880         o_extended = [[VLCExtended alloc] init];
1881
1882     if( !nib_extended_loaded )
1883         nib_extended_loaded = [NSBundle loadNibNamed:@"Extended" owner:self];
1884
1885     [o_extended showPanel];
1886 }
1887
1888 - (IBAction)showSFilters:(id)sender
1889 {
1890     if( o_sfilters == nil )
1891     {
1892         o_sfilters = [[VLCsFilters alloc] init];
1893     }
1894     if( !nib_sfilters_loaded )
1895     {
1896         nib_sfilters_loaded = [NSBundle loadNibNamed:@"SFilters" owner:self];
1897         [o_sfilters initStrings];
1898         [o_sfilters showAsPanel];
1899     } else {
1900         [o_sfilters showAsPanel];
1901     }
1902 }
1903
1904 - (IBAction)showBookmarks:(id)sender
1905 {
1906     /* we need the wizard-nib for the bookmarks's extract functionality */
1907     if( !nib_wizard_loaded )
1908     {
1909         nib_wizard_loaded = [NSBundle loadNibNamed:@"Wizard" owner:self];
1910         [o_wizard initStrings];
1911     }
1912  
1913     if( !nib_bookmarks_loaded )
1914         nib_bookmarks_loaded = [NSBundle loadNibNamed:@"Bookmarks" owner:self];
1915
1916     [o_bookmarks showBookmarks];
1917 }
1918
1919 - (IBAction)viewAbout:(id)sender
1920 {
1921     if( !nib_about_loaded )
1922         nib_about_loaded = [NSBundle loadNibNamed:@"About" owner:self];
1923
1924     [o_about showAbout];
1925 }
1926
1927 - (IBAction)showLicense:(id)sender
1928 {
1929     if( !nib_about_loaded )
1930         nib_about_loaded = [NSBundle loadNibNamed:@"About" owner:self];
1931
1932     [o_about showGPL: sender];
1933 }
1934     
1935 - (IBAction)viewPreferences:(id)sender
1936 {
1937     if( !nib_prefs_loaded )
1938     {
1939         nib_prefs_loaded = [NSBundle loadNibNamed:@"Preferences" owner: self];
1940         o_sprefs = [[VLCSimplePrefs alloc] init];
1941         o_prefs= [[VLCPrefs alloc] init];
1942     }
1943
1944     if( sender == o_mi_sprefs )
1945     {
1946         [o_sprefs showSimplePrefs];
1947     }
1948     else
1949         [o_prefs showPrefs];
1950 }
1951
1952 - (IBAction)checkForUpdate:(id)sender
1953 {
1954 #ifdef UPDATE_CHECK
1955     if( !nib_update_loaded )
1956         nib_update_loaded = [NSBundle loadNibNamed:@"Update" owner:self];
1957     [o_update showUpdateWindow];
1958 #else
1959     msg_Err( VLCIntf, "Update checker wasn't enabled in this build" );
1960     intf_UserFatal( VLCIntf, false, _("Update check failed"), _("Checking for updates was not enabled in this build.") );
1961 #endif
1962 }
1963
1964 - (IBAction)viewHelp:(id)sender
1965 {
1966     if( !nib_about_loaded )
1967     {
1968         nib_about_loaded = [NSBundle loadNibNamed:@"About" owner:self];
1969         [o_about showHelp];
1970     }
1971     else
1972         [o_about showHelp];
1973 }
1974
1975 - (IBAction)openReadMe:(id)sender
1976 {
1977     NSString * o_path = [[NSBundle mainBundle]
1978         pathForResource: @"README.MacOSX" ofType: @"rtf"];
1979
1980     [[NSWorkspace sharedWorkspace] openFile: o_path
1981                                    withApplication: @"TextEdit"];
1982 }
1983
1984 - (IBAction)openDocumentation:(id)sender
1985 {
1986     NSURL * o_url = [NSURL URLWithString:
1987         @"http://www.videolan.org/doc/"];
1988
1989     [[NSWorkspace sharedWorkspace] openURL: o_url];
1990 }
1991
1992 - (IBAction)openWebsite:(id)sender
1993 {
1994     NSURL * o_url = [NSURL URLWithString: @"http://www.videolan.org/"];
1995
1996     [[NSWorkspace sharedWorkspace] openURL: o_url];
1997 }
1998
1999 - (IBAction)openForum:(id)sender
2000 {
2001     NSURL * o_url = [NSURL URLWithString: @"http://forum.videolan.org/"];
2002
2003     [[NSWorkspace sharedWorkspace] openURL: o_url];
2004 }
2005
2006 - (IBAction)openDonate:(id)sender
2007 {
2008     NSURL * o_url = [NSURL URLWithString: @"http://www.videolan.org/contribute.html#paypal"];
2009
2010     [[NSWorkspace sharedWorkspace] openURL: o_url];
2011 }
2012
2013 - (IBAction)openCrashLog:(id)sender
2014 {
2015     NSString * o_path = [@"~/Library/Logs/CrashReporter/VLC.crash.log"
2016                                     stringByExpandingTildeInPath];
2017
2018
2019     if( [[NSFileManager defaultManager] fileExistsAtPath: o_path ] )
2020     {
2021         [[NSWorkspace sharedWorkspace] openFile: o_path
2022                                     withApplication: @"Console"];
2023     }
2024     else
2025     {
2026         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.") );
2027
2028     }
2029 }
2030
2031 - (IBAction)viewErrorsAndWarnings:(id)sender
2032 {
2033     [[[self getInteractionList] getErrorPanel] showPanel];
2034 }
2035
2036 - (IBAction)showMessagesPanel:(id)sender
2037 {
2038     [o_msgs_panel makeKeyAndOrderFront: sender];
2039 }
2040
2041 - (IBAction)showInformationPanel:(id)sender
2042 {
2043     if(! nib_info_loaded )
2044         nib_info_loaded = [NSBundle loadNibNamed:@"MediaInfo" owner: self];
2045     
2046     [o_info initPanel];
2047 }
2048
2049 - (void)windowDidBecomeKey:(NSNotification *)o_notification
2050 {
2051     if( [o_notification object] == o_msgs_panel )
2052     {
2053         id o_msg;
2054         NSEnumerator * o_enum;
2055
2056         [o_messages setString: @""];
2057
2058         [o_msg_lock lock];
2059
2060         o_enum = [o_msg_arr objectEnumerator];
2061
2062         while( ( o_msg = [o_enum nextObject] ) != nil )
2063         {
2064             [o_messages insertText: o_msg];
2065         }
2066
2067         [o_msg_lock unlock];
2068     }
2069 }
2070
2071 - (IBAction)togglePlaylist:(id)sender
2072 {
2073     NSRect o_rect = [o_window frame];
2074     /*First, check if the playlist is visible*/
2075     if( o_rect.size.height <= 200 )
2076     {
2077         o_restore_rect = o_rect;
2078         b_restore_size = true;
2079         b_small_window = YES; /* we know we are small, make sure this is actually set (see case below) */
2080         /* make large */
2081         if( o_size_with_playlist.height > 200 )
2082         {
2083             o_rect.size.height = o_size_with_playlist.height;
2084         } else {
2085             o_rect.size.height = 500;
2086         }
2087  
2088         if( o_size_with_playlist.width > [o_window minSize].width )
2089         {
2090             o_rect.size.width = o_size_with_playlist.width;
2091         } else {
2092             o_rect.size.width = 500;
2093         }
2094  
2095         o_rect.size.height = (o_size_with_playlist.height > 200) ?
2096             o_size_with_playlist.height : 500;
2097         o_rect.origin.x = [o_window frame].origin.x;
2098         o_rect.origin.y = [o_window frame].origin.y - o_rect.size.height +
2099                                                 [o_window minSize].height;
2100
2101         NSRect screenRect = [[o_window screen] visibleFrame];
2102         if( !NSContainsRect( screenRect, o_rect ) ) {
2103             if( NSMaxX(o_rect) > NSMaxX(screenRect) )
2104                 o_rect.origin.x = ( NSMaxX(screenRect) - o_rect.size.width );
2105             if( NSMinY(o_rect) < NSMinY(screenRect) )
2106                 o_rect.origin.y = ( NSMinY(screenRect) );
2107         }
2108
2109         [o_btn_playlist setState: YES];
2110     }
2111     else
2112     {
2113         NSSize curSize = o_rect.size;
2114         /* make small */
2115         o_rect.size.height = [o_window minSize].height;
2116         o_rect.size.width = [o_window minSize].width;
2117         o_rect.origin.x = [o_window frame].origin.x;
2118         /* Calculate the position of the lower right corner after resize */
2119         o_rect.origin.y = [o_window frame].origin.y +
2120             [o_window frame].size.height - [o_window minSize].height;
2121
2122         if( b_restore_size )
2123             o_rect = o_restore_rect;
2124
2125         [o_playlist_view setAutoresizesSubviews: NO];
2126         [o_playlist_view removeFromSuperview];
2127         [o_btn_playlist setState: NO];
2128         b_small_window = NO; /* we aren't small here just yet. we are doing an animated resize after this */
2129     }
2130
2131     [o_window setFrame: o_rect display:YES animate: YES];
2132 }
2133
2134 - (void)updateTogglePlaylistState
2135 {
2136     if( [o_window frame].size.height <= 200 )
2137     {
2138         [o_btn_playlist setState: NO];
2139     }
2140     else
2141     {
2142         [o_btn_playlist setState: YES];
2143     }
2144 }
2145
2146 - (NSSize)windowWillResize:(NSWindow *)sender toSize:(NSSize)proposedFrameSize
2147 {
2148     /* Not triggered on a window resize or maxification of the window. only by window mouse dragging resize */
2149
2150    /*Stores the size the controller one resize, to be able to restore it when
2151      toggling the playlist*/
2152     o_size_with_playlist = proposedFrameSize;
2153
2154     if( proposedFrameSize.height <= 200 )
2155     {
2156         if( b_small_window == NO )
2157         {
2158             /* if large and going to small then hide */
2159             b_small_window = YES;
2160             [o_playlist_view setAutoresizesSubviews: NO];
2161             [o_playlist_view removeFromSuperview];
2162         }
2163         return NSMakeSize( proposedFrameSize.width, [o_window minSize].height);
2164     }
2165     return proposedFrameSize;
2166 }
2167
2168 - (void)windowDidMove:(NSNotification *)notif
2169 {
2170     b_restore_size = false;
2171 }
2172
2173 - (void)windowDidResize:(NSNotification *)notif
2174 {
2175     if( [o_window frame].size.height > 200 && b_small_window )
2176     {
2177         /* If large and coming from small then show */
2178         [o_playlist_view setAutoresizesSubviews: YES];
2179         [o_playlist_view setFrame: NSMakeRect( 0, 0, [o_window frame].size.width, [o_window frame].size.height - [o_window minSize].height )];
2180         [o_playlist_view setNeedsDisplay:YES];
2181         [[o_window contentView] addSubview: o_playlist_view];
2182         b_small_window = NO;
2183     }
2184     [self updateTogglePlaylistState];
2185 }
2186
2187 @end
2188
2189 @implementation VLCMain (NSMenuValidation)
2190
2191 - (BOOL)validateMenuItem:(NSMenuItem *)o_mi
2192 {
2193     NSString *o_title = [o_mi title];
2194     BOOL bEnabled = TRUE;
2195
2196     /* Recent Items Menu */
2197     if( [o_title isEqualToString: _NS("Clear Menu")] )
2198     {
2199         NSMenu * o_menu = [o_mi_open_recent submenu];
2200         int i_nb_items = [o_menu numberOfItems];
2201         NSArray * o_docs = [[NSDocumentController sharedDocumentController]
2202                                                        recentDocumentURLs];
2203         UInt32 i_nb_docs = [o_docs count];
2204
2205         if( i_nb_items > 1 )
2206         {
2207             while( --i_nb_items )
2208             {
2209                 [o_menu removeItemAtIndex: 0];
2210             }
2211         }
2212
2213         if( i_nb_docs > 0 )
2214         {
2215             NSURL * o_url;
2216             NSString * o_doc;
2217
2218             [o_menu insertItem: [NSMenuItem separatorItem] atIndex: 0];
2219
2220             while( TRUE )
2221             {
2222                 i_nb_docs--;
2223
2224                 o_url = [o_docs objectAtIndex: i_nb_docs];
2225
2226                 if( [o_url isFileURL] )
2227                 {
2228                     o_doc = [o_url path];
2229                 }
2230                 else
2231                 {
2232                     o_doc = [o_url absoluteString];
2233                 }
2234
2235                 [o_menu insertItemWithTitle: o_doc
2236                     action: @selector(openRecentItem:)
2237                     keyEquivalent: @"" atIndex: 0];
2238
2239                 if( i_nb_docs == 0 )
2240                 {
2241                     break;
2242                 }
2243             }
2244         }
2245         else
2246         {
2247             bEnabled = FALSE;
2248         }
2249     }
2250     return( bEnabled );
2251 }
2252
2253 @end
2254
2255 @implementation VLCMain (Internal)
2256
2257 - (void)handlePortMessage:(NSPortMessage *)o_msg
2258 {
2259     id ** val;
2260     NSData * o_data;
2261     NSValue * o_value;
2262     NSInvocation * o_inv;
2263     NSConditionLock * o_lock;
2264
2265     o_data = [[o_msg components] lastObject];
2266     o_inv = *((NSInvocation **)[o_data bytes]);
2267     [o_inv getArgument: &o_value atIndex: 2];
2268     val = (id **)[o_value pointerValue];
2269     [o_inv setArgument: val[1] atIndex: 2];
2270     o_lock = *(val[0]);
2271
2272     [o_lock lock];
2273     [o_inv invoke];
2274     [o_lock unlockWithCondition: 1];
2275 }
2276
2277 @end