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