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