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