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