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