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