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