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