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