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