]> git.sesse.net Git - vlc/blob - modules/gui/macosx/intf.m
ebd7e9911c623fe30b1cf189e6c475b3cc51ba22
[vlc] / modules / gui / macosx / intf.m
1 /*****************************************************************************
2  * intf.m: MacOS X interface plugin
3  *****************************************************************************
4  * Copyright (C) 2002-2003 VideoLAN
5  * $Id: intf.m,v 1.104 2003/12/11 16:00:09 hartman Exp $
6  *
7  * Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
8  *          Christophe Massiot <massiot@via.ecp.fr>
9  *          Derk-Jan Hartman <thedj@users.sourceforge.net>
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 "info.h"
39 #include "controls.h"
40
41 /*****************************************************************************
42  * Local prototypes.
43  *****************************************************************************/
44 static void Run ( intf_thread_t *p_intf );
45
46 /*****************************************************************************
47  * OpenIntf: initialize interface
48  *****************************************************************************/
49 int E_(OpenIntf) ( vlc_object_t *p_this )
50 {   
51     intf_thread_t *p_intf = (intf_thread_t*) p_this;
52
53     p_intf->p_sys = malloc( sizeof( intf_sys_t ) );
54     if( p_intf->p_sys == NULL )
55     {
56         return( 1 );
57     }
58
59     memset( p_intf->p_sys, 0, sizeof( *p_intf->p_sys ) );
60     
61     p_intf->p_sys->o_pool = [[NSAutoreleasePool alloc] init];
62     
63     /* Put Cocoa into multithread mode as soon as possible.
64      * http://developer.apple.com/techpubs/macosx/Cocoa/
65      * TasksAndConcepts/ProgrammingTopics/Multithreading/index.html
66      * This thread does absolutely nothing at all. */
67     [NSThread detachNewThreadSelector:@selector(self) toTarget:[NSString string] withObject:nil];
68     
69     p_intf->p_sys->o_sendport = [[NSPort port] retain];
70     p_intf->p_sys->p_sub = msg_Subscribe( p_intf );
71     p_intf->pf_run = Run;
72     
73     [[VLCApplication sharedApplication] autorelease];
74     [NSApp setIntf: p_intf];
75
76     [NSBundle loadNibNamed: @"MainMenu" owner: NSApp];
77
78     return( 0 );
79 }
80
81 /*****************************************************************************
82  * CloseIntf: destroy interface
83  *****************************************************************************/
84 void E_(CloseIntf) ( vlc_object_t *p_this )
85 {
86     intf_thread_t *p_intf = (intf_thread_t*) p_this;
87
88     msg_Unsubscribe( p_intf, p_intf->p_sys->p_sub );
89
90     [p_intf->p_sys->o_sendport release];
91     [p_intf->p_sys->o_pool release];
92
93     free( p_intf->p_sys );
94 }
95
96 /*****************************************************************************
97  * Run: main loop
98  *****************************************************************************/
99 static void Run( intf_thread_t *p_intf )
100 {
101     /* Do it again - for some unknown reason, vlc_thread_create() often
102      * fails to go to real-time priority with the first launched thread
103      * (???) --Meuuh */
104     vlc_thread_set_priority( p_intf, VLC_THREAD_PRIORITY_LOW );
105
106     [NSApp run];
107 }
108
109 /*****************************************************************************
110  * VLCApplication implementation 
111  *****************************************************************************/
112 @implementation VLCApplication
113
114 - (NSString *)localizedString:(char *)psz
115 {
116     NSString * o_str = nil;
117
118     if( psz != NULL )
119     {
120         o_str = [[[NSString alloc] initWithUTF8String: psz] autorelease];
121     }
122     if ( o_str == NULL )
123     {
124         msg_Err( p_intf, "could not translate: %s", psz );
125     }
126
127     return( o_str );
128 }
129
130 - (char *)delocalizeString:(NSString *)id
131 {
132     NSData * o_data = [id dataUsingEncoding: NSUTF8StringEncoding
133                           allowLossyConversion: NO];
134     char * psz_string;
135
136     if ( o_data == nil )
137     {
138         o_data = [id dataUsingEncoding: NSUTF8StringEncoding
139                      allowLossyConversion: YES];
140         psz_string = malloc( [o_data length] + 1 ); 
141         [o_data getBytes: psz_string];
142         psz_string[ [o_data length] ] = '\0';
143         msg_Err( p_intf, "cannot convert to wanted encoding: %s",
144                  psz_string );
145     }
146     else
147     {
148         psz_string = malloc( [o_data length] + 1 ); 
149         [o_data getBytes: psz_string];
150         psz_string[ [o_data length] ] = '\0';
151     }
152
153     return psz_string;
154 }
155
156 /* i_width is in pixels */
157 - (NSString *)wrapString: (NSString *)o_in_string toWidth: (int) i_width
158 {
159     NSMutableString *o_wrapped;
160     NSString *o_out_string;
161     NSRange glyphRange, effectiveRange, charRange;
162     NSRect lineFragmentRect;
163     unsigned glyphIndex, breaksInserted = 0;
164
165     NSTextStorage *o_storage = [[NSTextStorage alloc] initWithString: o_in_string
166         attributes: [NSDictionary dictionaryWithObjectsAndKeys:
167         [NSFont labelFontOfSize: 0.0], NSFontAttributeName, nil]];
168     NSLayoutManager *o_layout_manager = [[NSLayoutManager alloc] init];
169     NSTextContainer *o_container = [[NSTextContainer alloc]
170         initWithContainerSize: NSMakeSize(i_width, 2000)];
171     
172     [o_layout_manager addTextContainer: o_container];
173     [o_container release];
174     [o_storage addLayoutManager: o_layout_manager];
175     [o_layout_manager release];
176         
177     o_wrapped = [o_in_string mutableCopy];
178     glyphRange = [o_layout_manager glyphRangeForTextContainer: o_container];
179     
180     for( glyphIndex = glyphRange.location ; glyphIndex < NSMaxRange(glyphRange) ;
181             glyphIndex += effectiveRange.length) {
182         lineFragmentRect = [o_layout_manager lineFragmentRectForGlyphAtIndex: glyphIndex
183                                             effectiveRange: &effectiveRange];
184         charRange = [o_layout_manager characterRangeForGlyphRange: effectiveRange
185                                     actualGlyphRange: &effectiveRange];
186         if ([o_wrapped lineRangeForRange:
187                 NSMakeRange(charRange.location + breaksInserted, charRange.length)].length > charRange.length) {
188             [o_wrapped insertString: @"\n" atIndex: NSMaxRange(charRange) + breaksInserted];
189             breaksInserted++;
190         }
191     }
192     o_out_string = [NSString stringWithString: o_wrapped];
193     [o_wrapped release];
194     [o_storage release];
195     
196     return o_out_string;
197 }
198
199 - (void)setIntf:(intf_thread_t *)_p_intf
200 {
201     p_intf = _p_intf;
202 }
203
204 - (intf_thread_t *)getIntf
205 {
206     return( p_intf );
207 }
208
209 - (void)terminate:(id)sender
210 {
211     p_intf->p_vlc->b_die = VLC_TRUE;
212 }
213
214 @end
215
216 int ExecuteOnMainThread( id target, SEL sel, void * p_arg )
217 {
218     int i_ret = 0;
219
220     NSAutoreleasePool * o_pool = [[NSAutoreleasePool alloc] init];
221
222     if( [target respondsToSelector: @selector(performSelectorOnMainThread:
223                                              withObject:waitUntilDone:)] )
224     {
225         [target performSelectorOnMainThread: sel
226                 withObject: [NSValue valueWithPointer: p_arg]
227                 waitUntilDone: YES];
228     }
229     else if( NSApp != nil && [NSApp respondsToSelector: @selector(getIntf)] ) 
230     {
231         NSValue * o_v1;
232         NSValue * o_v2;
233         NSArray * o_array;
234         NSPort * o_recv_port;
235         NSInvocation * o_inv;
236         NSPortMessage * o_msg;
237         intf_thread_t * p_intf;
238         NSConditionLock * o_lock;
239         NSMethodSignature * o_sig;
240
241         id * val[] = { &o_lock, &o_v2 };
242
243         p_intf = (intf_thread_t *)[NSApp getIntf];
244
245         o_recv_port = [[NSPort port] retain];
246         o_v1 = [NSValue valueWithPointer: val]; 
247         o_v2 = [NSValue valueWithPointer: p_arg];
248
249         o_sig = [target methodSignatureForSelector: sel];
250         o_inv = [NSInvocation invocationWithMethodSignature: o_sig];
251         [o_inv setArgument: &o_v1 atIndex: 2];
252         [o_inv setTarget: target];
253         [o_inv setSelector: sel];
254
255         o_array = [NSArray arrayWithObject:
256             [NSData dataWithBytes: &o_inv length: sizeof(o_inv)]];
257         o_msg = [[NSPortMessage alloc]
258             initWithSendPort: p_intf->p_sys->o_sendport
259             receivePort: o_recv_port components: o_array];
260
261         o_lock = [[NSConditionLock alloc] initWithCondition: 0];
262         [o_msg sendBeforeDate: [NSDate distantPast]];
263         [o_lock lockWhenCondition: 1];
264         [o_lock unlock];
265         [o_lock release];
266
267         [o_msg release];
268         [o_recv_port release];
269     } 
270     else
271     {
272         i_ret = 1;
273     }
274
275     [o_pool release];
276
277     return( i_ret );
278 }
279
280 /*****************************************************************************
281  * playlistChanged: Callback triggered by the intf-change playlist
282  * variable, to let the intf update the playlist.
283  *****************************************************************************/
284 int PlaylistChanged( vlc_object_t *p_this, const char *psz_variable,
285                      vlc_value_t old_val, vlc_value_t new_val, void *param )
286 {
287     intf_thread_t * p_intf = [NSApp getIntf];
288     p_intf->p_sys->b_playlist_update = VLC_TRUE;
289     p_intf->p_sys->b_intf_update = VLC_TRUE;
290     return VLC_SUCCESS;
291 }
292
293 static struct
294 {
295     unichar i_nskey;
296     unsigned int i_vlckey;
297 } nskeys_to_vlckeys[] = 
298 {
299     { NSUpArrowFunctionKey, KEY_UP },
300     { NSDownArrowFunctionKey, KEY_DOWN },
301     { NSLeftArrowFunctionKey, KEY_LEFT },
302     { NSRightArrowFunctionKey, KEY_RIGHT },
303     { NSF1FunctionKey, KEY_F1 },
304     { NSF2FunctionKey, KEY_F2 },
305     { NSF3FunctionKey, KEY_F3 },
306     { NSF4FunctionKey, KEY_F4 },
307     { NSF5FunctionKey, KEY_F5 },
308     { NSF6FunctionKey, KEY_F6 },
309     { NSF7FunctionKey, KEY_F7 },
310     { NSF8FunctionKey, KEY_F8 },
311     { NSF9FunctionKey, KEY_F9 },
312     { NSF10FunctionKey, KEY_F10 },
313     { NSF11FunctionKey, KEY_F11 },
314     { NSF12FunctionKey, KEY_F12 },
315     { NSHomeFunctionKey, KEY_HOME },
316     { NSEndFunctionKey, KEY_END },
317     { NSPageUpFunctionKey, KEY_PAGEUP },
318     { NSPageDownFunctionKey, KEY_PAGEDOWN },
319     { NSTabCharacter, KEY_TAB },
320     { NSCarriageReturnCharacter, KEY_ENTER },
321     { NSEnterCharacter, KEY_ENTER },
322     { NSBackspaceCharacter, KEY_BACKSPACE },
323     { (unichar) ' ', KEY_SPACE },
324     { (unichar) 0x1b, KEY_ESC },
325     {0,0}
326 };
327
328 unichar VLCKeyToCocoa( unsigned int i_key )
329 {
330     unsigned int i;
331     
332     for( i = 0; nskeys_to_vlckeys[i].i_vlckey != 0; i++ )
333     {
334         if( nskeys_to_vlckeys[i].i_vlckey == (i_key & ~KEY_MODIFIER) )
335         {
336             return nskeys_to_vlckeys[i].i_nskey;
337         }
338     }
339     return (unichar)(i_key & ~KEY_MODIFIER);
340 }
341
342 unsigned int CocoaKeyToVLC( unichar i_key )
343 {
344     unsigned int i;
345     
346     for( i = 0; nskeys_to_vlckeys[i].i_nskey != 0; i++ )
347     {
348         if( nskeys_to_vlckeys[i].i_nskey == i_key )
349         {
350             return nskeys_to_vlckeys[i].i_vlckey;
351         }
352     }
353     return (unsigned int)i_key;
354 }
355
356 unsigned int VLCModifiersToCocoa( unsigned int i_key )
357 {
358     unsigned int new = 0;
359     if( i_key & KEY_MODIFIER_COMMAND )
360         new |= NSCommandKeyMask;
361     if( i_key & KEY_MODIFIER_ALT )
362         new |= NSAlternateKeyMask;
363     if( i_key & KEY_MODIFIER_SHIFT )
364         new |= NSShiftKeyMask;
365     if( i_key & KEY_MODIFIER_CTRL )
366         new |= NSControlKeyMask;
367     return new;
368 }
369
370 /*****************************************************************************
371  * VLCMain implementation 
372  *****************************************************************************/
373 @implementation VLCMain
374
375 - (void)awakeFromNib
376 {
377     unsigned int i_key = 0;
378     intf_thread_t * p_intf = [NSApp getIntf];
379
380     [self initStrings];
381     [o_window setExcludedFromWindowsMenu: TRUE];
382     [o_msgs_panel setExcludedFromWindowsMenu: TRUE];
383     [o_msgs_panel setDelegate: self];
384     
385     i_key = config_GetInt( p_intf, "key-quit" );
386     [o_mi_quit setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
387     [o_mi_quit setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
388     i_key = config_GetInt( p_intf, "key-play-pause" );
389     [o_mi_play setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
390     [o_mi_play setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
391     i_key = config_GetInt( p_intf, "key-stop" );
392     [o_mi_stop setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
393     [o_mi_stop setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
394     i_key = config_GetInt( p_intf, "key-faster" );
395     [o_mi_faster setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
396     [o_mi_faster setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
397     i_key = config_GetInt( p_intf, "key-slower" );
398     [o_mi_slower setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
399     [o_mi_slower setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
400     i_key = config_GetInt( p_intf, "key-prev" );
401     [o_mi_previous setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
402     [o_mi_previous setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
403     i_key = config_GetInt( p_intf, "key-next" );
404     [o_mi_next setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
405     [o_mi_next setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
406     i_key = config_GetInt( p_intf, "key-jump+10sec" );
407     [o_mi_fwd setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
408     [o_mi_fwd setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
409     i_key = config_GetInt( p_intf, "key-jump-10sec" );
410     [o_mi_bwd setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
411     [o_mi_bwd setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
412     i_key = config_GetInt( p_intf, "key-vol-up" );
413     [o_mi_vol_up setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
414     [o_mi_vol_up setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
415     i_key = config_GetInt( p_intf, "key-vol-down" );
416     [o_mi_vol_down setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
417     [o_mi_vol_down setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
418     i_key = config_GetInt( p_intf, "key-vol-mute" );
419     [o_mi_mute setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
420     [o_mi_mute setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
421     i_key = config_GetInt( p_intf, "key-fullscreen" );
422     [o_mi_fullscreen setKeyEquivalent: [NSString stringWithFormat:@"%C", VLCKeyToCocoa( i_key )]];
423     [o_mi_fullscreen setKeyEquivalentModifierMask: VLCModifiersToCocoa(i_key)];
424
425     [self setSubmenusEnabled: FALSE];
426     [self manageVolumeSlider];
427
428 }
429
430 - (void)initStrings
431 {
432     [o_window setTitle: _NS("VLC - Controller")];
433
434     /* button controls */
435     [o_btn_playlist setToolTip: _NS("Playlist")];
436     [o_btn_prev setToolTip: _NS("Previous")];
437     [o_btn_rewind setToolTip: _NS("Rewind")];
438     [o_btn_play setToolTip: _NS("Play")];
439     [o_btn_stop setToolTip: _NS("Stop")];
440     [o_btn_ff setToolTip: _NS("Fast Forward")];
441     [o_btn_next setToolTip: _NS("Next")];
442     [o_btn_fullscreen setToolTip: _NS("Fullscreen")];
443     [o_volumeslider setToolTip: _NS("Volume")];
444     [o_timeslider setToolTip: _NS("Position")];
445
446     /* messages panel */ 
447     [o_msgs_panel setTitle: _NS("Messages")];
448     [o_msgs_btn_crashlog setTitle: _NS("Open CrashLog")];
449
450     /* main menu */
451     [o_mi_about setTitle: _NS("About VLC media player")];
452     [o_mi_prefs setTitle: _NS("Preferences...")];
453     [o_mi_hide setTitle: _NS("Hide VLC")];
454     [o_mi_hide_others setTitle: _NS("Hide Others")];
455     [o_mi_show_all setTitle: _NS("Show All")];
456     [o_mi_quit setTitle: _NS("Quit VLC")];
457
458     [o_mu_file setTitle: _ANS("1:File")];
459     [o_mi_open_generic setTitle: _NS("Open File...")];
460     [o_mi_open_file setTitle: _NS("Quick Open File...")];
461     [o_mi_open_disc setTitle: _NS("Open Disc...")];
462     [o_mi_open_net setTitle: _NS("Open Network...")];
463     [o_mi_open_recent setTitle: _NS("Open Recent")];
464     [o_mi_open_recent_cm setTitle: _NS("Clear Menu")];
465
466     [o_mu_edit setTitle: _NS("Edit")];
467     [o_mi_cut setTitle: _NS("Cut")];
468     [o_mi_copy setTitle: _NS("Copy")];
469     [o_mi_paste setTitle: _NS("Paste")];
470     [o_mi_clear setTitle: _NS("Clear")];
471     [o_mi_select_all setTitle: _NS("Select All")];
472
473     [o_mu_controls setTitle: _NS("Controls")];
474     [o_mi_play setTitle: _NS("Play")];
475     [o_mi_stop setTitle: _NS("Stop")];
476     [o_mi_faster setTitle: _NS("Faster")];
477     [o_mi_slower setTitle: _NS("Slower")];
478     [o_mi_previous setTitle: _NS("Previous")];
479     [o_mi_next setTitle: _NS("Next")];
480     [o_mi_random setTitle: _NS("Shuffle")];
481     [o_mi_repeat setTitle: _NS("Repeat Item")];
482     [o_mi_loop setTitle: _NS("Repeat Playlist")];
483     [o_mi_fwd setTitle: _NS("Step Forward")];
484     [o_mi_bwd setTitle: _NS("Step Backward")];
485     [o_mi_program setTitle: _NS("Program")];
486     [o_mu_program setTitle: _NS("Program")];
487     [o_mi_title setTitle: _NS("Title")];
488     [o_mu_title setTitle: _NS("Title")];
489     [o_mi_chapter setTitle: _NS("Chapter")];
490     [o_mu_chapter setTitle: _NS("Chapter")];
491     
492     [o_mu_audio setTitle: _NS("Audio")];
493     [o_mi_vol_up setTitle: _NS("Volume Up")];
494     [o_mi_vol_down setTitle: _NS("Volume Down")];
495     [o_mi_mute setTitle: _NS("Mute")];
496     [o_mi_audiotrack setTitle: _NS("Audio track")];
497     [o_mu_audiotrack setTitle: _NS("Audio track")];
498     [o_mi_channels setTitle: _NS("Audio channels")];
499     [o_mu_channels setTitle: _NS("Audio channels")];
500     [o_mi_device setTitle: _NS("Audio device")];
501     [o_mu_device setTitle: _NS("Audio device")];
502     [o_mi_visual setTitle: _NS("Visualizations")];
503     [o_mu_visual setTitle: _NS("Visualizations")];
504     
505     [o_mu_video setTitle: _NS("Video")];
506     [o_mi_half_window setTitle: _NS("Half Size")];
507     [o_mi_normal_window setTitle: _NS("Normal Size")];
508     [o_mi_double_window setTitle: _NS("Double Size")];
509     [o_mi_fittoscreen setTitle: _NS("Fit To Screen")];
510     [o_mi_fullscreen setTitle: _NS("Fullscreen")];
511     [o_mi_floatontop setTitle: _NS("Float On Top")];
512     [o_mi_videotrack setTitle: _NS("Video track")];
513     [o_mu_videotrack setTitle: _NS("Video track")];
514     [o_mi_screen setTitle: _NS("Video device")];
515     [o_mu_screen setTitle: _NS("Video device")];
516     [o_mi_subtitle setTitle: _NS("Subtitles track")];
517     [o_mu_subtitle setTitle: _NS("Subtitles track")];
518     [o_mi_deinterlace setTitle: _NS("Deinterlace")];
519     [o_mu_deinterlace setTitle: _NS("Deinterlace")];
520
521     [o_mu_window setTitle: _NS("Window")];
522     [o_mi_minimize setTitle: _NS("Minimize Window")];
523     [o_mi_close_window setTitle: _NS("Close Window")];
524     [o_mi_controller setTitle: _NS("Controller")];
525     [o_mi_playlist setTitle: _NS("Playlist")];
526     [o_mi_info setTitle: _NS("Info")];
527     [o_mi_messages setTitle: _NS("Messages")];
528
529     [o_mi_bring_atf setTitle: _NS("Bring All to Front")];
530
531     [o_mu_help setTitle: _NS("Help")];
532     [o_mi_readme setTitle: _NS("ReadMe...")];
533     [o_mi_documentation setTitle: _NS("Online Documentation")];
534     [o_mi_reportabug setTitle: _NS("Report a Bug")];
535     [o_mi_website setTitle: _NS("VideoLAN Website")];
536     [o_mi_license setTitle: _NS("License")];
537
538     /* dock menu */
539     [o_dmi_play setTitle: _NS("Play")];
540     [o_dmi_stop setTitle: _NS("Stop")];
541     [o_dmi_next setTitle: _NS("Next")];
542     [o_dmi_previous setTitle: _NS("Previous")];
543
544     /* error panel */
545     [o_error setTitle: _NS("Error")];
546     [o_err_lbl setStringValue: _NS("An error has occurred which probably prevented the execution of your request:")];
547     [o_err_bug_lbl setStringValue: _NS("If you believe that it is a bug, please follow the instructions at:")]; 
548     [o_err_btn_msgs setTitle: _NS("Open Messages Window")];
549     [o_err_btn_dismiss setTitle: _NS("Dismiss")];
550
551     [o_info_window setTitle: _NS("Info")];
552 }
553
554 - (void)applicationWillFinishLaunching:(NSNotification *)o_notification
555 {
556     intf_thread_t * p_intf = [NSApp getIntf];
557
558     o_msg_lock = [[NSLock alloc] init];
559     o_msg_arr = [[NSMutableArray arrayWithCapacity: 200] retain];
560
561     o_img_play = [[NSImage imageNamed: @"play"] retain];
562     o_img_play_pressed = [[NSImage imageNamed: @"play_blue"] retain];
563     o_img_pause = [[NSImage imageNamed: @"pause"] retain];
564     o_img_pause_pressed = [[NSImage imageNamed: @"pause_blue"] retain];
565
566     [p_intf->p_sys->o_sendport setDelegate: self];
567     [[NSRunLoop currentRunLoop] 
568         addPort: p_intf->p_sys->o_sendport
569         forMode: NSDefaultRunLoopMode];
570
571     [NSTimer scheduledTimerWithTimeInterval: 0.5
572         target: self selector: @selector(manageIntf:)
573         userInfo: nil repeats: FALSE];
574
575     [NSThread detachNewThreadSelector: @selector(manage)
576         toTarget: self withObject: nil];
577
578     vlc_thread_set_priority( p_intf, VLC_THREAD_PRIORITY_LOW );
579 }
580
581 - (BOOL)application:(NSApplication *)o_app openFile:(NSString *)o_filename
582 {
583     NSDictionary *o_dic = [NSDictionary dictionaryWithObjectsAndKeys: o_filename, @"ITEM_URL", nil];
584     [o_playlist appendArray:
585         [NSArray arrayWithObject: o_dic] atPos: -1 enqueue: NO];
586             
587     return( TRUE );
588 }
589
590 - (id)getControls
591 {
592     if ( o_controls )
593     {
594         return o_controls;
595     }
596     return nil;
597 }
598
599 - (id)getPlaylist
600 {
601     if ( o_playlist )
602     {
603         return o_playlist;
604     }
605     return nil;
606 }
607
608 - (void)manage
609 {
610     NSDate * o_sleep_date;
611     intf_thread_t * p_intf = [NSApp getIntf];
612     NSAutoreleasePool * o_pool = [[NSAutoreleasePool alloc] init];
613
614     vlc_thread_set_priority( p_intf, VLC_THREAD_PRIORITY_LOW );
615
616     while( !p_intf->b_die )
617     {
618         playlist_t * p_playlist;
619
620         vlc_mutex_lock( &p_intf->change_lock );
621
622         p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST, 
623                                               FIND_ANYWHERE );
624
625         if( p_playlist != NULL )
626         {
627             var_AddCallback( p_playlist, "intf-change", PlaylistChanged, self );
628 #define p_input p_playlist->p_input
629         
630             if( p_input )
631             {
632                 if( !p_input->b_die )
633                 {
634                     vlc_value_t val;
635
636                     /* New input or stream map change */
637                     if( p_input->stream.b_changed )
638                     {
639                         msg_Dbg( p_intf, "stream has changed, refreshing interface" );
640                         p_intf->p_sys->b_playing = TRUE;
641                         p_intf->p_sys->b_current_title_update = 1;
642                         p_input->stream.b_changed = 0;
643                         p_intf->p_sys->b_intf_update = TRUE;
644                     }
645
646                     if( var_Get( (vlc_object_t *)p_input, "intf-change", &val )
647                         >= 0 && val.b_bool )
648                     {
649                         p_intf->p_sys->b_input_update = TRUE;
650                     }
651                 }
652             }
653             else if( p_intf->p_sys->b_playing && !p_intf->b_die )
654             {
655                 p_intf->p_sys->b_playing = FALSE;
656                 p_intf->p_sys->b_intf_update = TRUE;
657             }
658             
659 #undef p_input
660             vlc_object_release( p_playlist );
661         }
662
663         vlc_mutex_unlock( &p_intf->change_lock );
664
665         o_sleep_date = [NSDate dateWithTimeIntervalSinceNow: .5];
666         [NSThread sleepUntilDate: o_sleep_date];
667     }
668
669     [self terminate];
670     [o_pool release];
671 }
672
673 - (void)manageIntf:(NSTimer *)o_timer
674 {
675     intf_thread_t * p_intf = [NSApp getIntf];
676
677     if( p_intf->p_vlc->b_die == VLC_TRUE )
678     {
679         [o_timer invalidate];
680         return;
681     }
682
683     playlist_t * p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
684                                                        FIND_ANYWHERE );
685
686     if( p_playlist == NULL )
687     {
688         return;
689     }
690
691     if ( p_intf->p_sys->b_playlist_update )
692     {
693         [o_playlist playlistUpdated];
694         p_intf->p_sys->b_playlist_update = VLC_FALSE;
695     }
696
697     if( p_intf->p_sys->b_current_title_update )
698     {
699         vout_thread_t   *p_vout = vlc_object_find( p_intf, VLC_OBJECT_VOUT,
700                                               FIND_ANYWHERE );
701         if( p_vout != NULL )
702         {
703             id o_vout_wnd;
704             NSEnumerator * o_enum = [[NSApp orderedWindows] objectEnumerator];
705             
706             while( ( o_vout_wnd = [o_enum nextObject] ) )
707             {
708                 if( [[o_vout_wnd className] isEqualToString: @"VLCWindow"] )
709                 {
710                     [o_vout_wnd updateTitle];
711                 }
712             }
713             vlc_object_release( (vlc_object_t *)p_vout );
714         }
715         [o_playlist updateRowSelection];
716         [o_info updateInfo];
717
718         p_intf->p_sys->b_current_title_update = FALSE;
719     }
720
721     vlc_mutex_lock( &p_playlist->object_lock );
722
723 #define p_input p_playlist->p_input
724
725     if( p_intf->p_sys->b_intf_update )
726     {
727         vlc_bool_t b_input = VLC_FALSE;
728         vlc_bool_t b_plmul = VLC_FALSE;
729         vlc_bool_t b_control = VLC_FALSE;
730         vlc_bool_t b_seekable = VLC_FALSE;
731         vlc_bool_t b_chapters = VLC_FALSE;
732
733         b_plmul = p_playlist->i_size > 1;
734
735         if( ( b_input = ( p_input != NULL ) ) )
736         {
737             vlc_mutex_lock( &p_input->stream.stream_lock );
738
739             /* seekable streams */
740             b_seekable = p_input->stream.b_seekable;
741
742             /* control buttons for free pace streams */
743             b_control = p_input->stream.b_pace_control; 
744
745             /* chapters & titles */
746             b_chapters = p_input->stream.i_area_nb > 1; 
747  
748             vlc_mutex_unlock( &p_input->stream.stream_lock );
749         }
750
751         [o_btn_stop setEnabled: b_input];
752         [o_btn_ff setEnabled: b_control];
753         [o_btn_rewind setEnabled: b_control];
754         [o_btn_prev setEnabled: (b_plmul || b_chapters)];
755         [o_btn_next setEnabled: (b_plmul || b_chapters)];
756
757         [o_timeslider setFloatValue: 0.0];
758         [o_timeslider setEnabled: b_seekable];
759         [o_timefield setStringValue: @"0:00:00"];
760
761         [self manageVolumeSlider];
762
763         p_intf->p_sys->b_intf_update = VLC_FALSE;
764     }
765
766     if( p_intf->p_sys->b_playing && p_input != NULL )
767     {
768         vlc_value_t time;
769         NSString * o_time;
770         mtime_t i_seconds;
771
772         if( p_input->stream.b_seekable )
773         {
774             vlc_value_t pos;
775             float f_updated;
776             
777             var_Get( p_input, "position", &pos );
778             f_updated = 10000. * pos.f_float;
779
780             if( f_slider != f_updated )
781             {
782                 [o_timeslider setFloatValue: f_updated];
783             }
784         }
785             
786         var_Get( p_input, "time", &time );
787         i_seconds = time.i_time / 1000000;
788         
789         o_time = [NSString stringWithFormat: @"%d:%02d:%02d",
790                         (int) (i_seconds / (60 * 60)),
791                         (int) (i_seconds / 60 % 60),
792                         (int) (i_seconds % 60)];
793         [o_timefield setStringValue: o_time];
794     }
795     if( p_input )
796     {
797         vlc_value_t val;
798         var_Get( p_input, "state", &val );
799
800         if( val.i_int != PAUSE_S )
801         {
802             p_intf->p_sys->b_play_status = TRUE;
803         }
804         else
805         {
806             p_intf->p_sys->b_play_status = FALSE;
807         }
808         [self playStatusUpdated: p_intf->p_sys->b_play_status];
809     }
810     else
811     {
812         p_intf->p_sys->b_play_status = FALSE;
813         [self playStatusUpdated: p_intf->p_sys->b_play_status];
814         [self setSubmenusEnabled: FALSE];
815     }
816
817 #undef p_input
818
819     vlc_mutex_unlock( &p_playlist->object_lock );
820     vlc_object_release( p_playlist );
821
822     [self updateMessageArray];
823
824     [NSTimer scheduledTimerWithTimeInterval: 0.5
825         target: self selector: @selector(manageIntf:)
826         userInfo: nil repeats: FALSE];
827 }
828
829 - (void)setupMenus
830 {
831     intf_thread_t * p_intf = [NSApp getIntf];
832     playlist_t *p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST, 
833                                                 FIND_ANYWHERE );
834     
835     if( p_playlist != NULL )
836     {
837 #define p_input p_playlist->p_input
838         if( p_input != NULL )
839         {
840             [o_controls setupVarMenuItem: o_mi_program target: (vlc_object_t *)p_input
841                 var: "program" selector: @selector(toggleVar:)];
842             
843             [o_controls setupVarMenuItem: o_mi_title target: (vlc_object_t *)p_input
844                 var: "title" selector: @selector(toggleVar:)];
845             
846             [o_controls setupVarMenuItem: o_mi_chapter target: (vlc_object_t *)p_input
847                 var: "chapter" selector: @selector(toggleVar:)];
848             
849             [o_controls setupVarMenuItem: o_mi_audiotrack target: (vlc_object_t *)p_input
850                 var: "audio-es" selector: @selector(toggleVar:)];
851             
852             [o_controls setupVarMenuItem: o_mi_videotrack target: (vlc_object_t *)p_input
853                 var: "video-es" selector: @selector(toggleVar:)];
854             
855             [o_controls setupVarMenuItem: o_mi_subtitle target: (vlc_object_t *)p_input
856                 var: "spu-es" selector: @selector(toggleVar:)];
857         
858             aout_instance_t * p_aout = vlc_object_find( p_intf, VLC_OBJECT_AOUT,
859                                                         FIND_ANYWHERE );
860             if ( p_aout != NULL )
861             {
862                 [o_controls setupVarMenuItem: o_mi_channels target: (vlc_object_t *)p_aout
863                     var: "audio-channels" selector: @selector(toggleVar:)];
864             
865                 [o_controls setupVarMenuItem: o_mi_device target: (vlc_object_t *)p_aout
866                     var: "audio-device" selector: @selector(toggleVar:)];
867                     
868                 [o_controls setupVarMenuItem: o_mi_visual target: (vlc_object_t *)p_aout
869                     var: "visual" selector: @selector(toggleVar:)];
870                 vlc_object_release( (vlc_object_t *)p_aout );
871             }
872             
873             vout_thread_t * p_vout = vlc_object_find( p_intf, VLC_OBJECT_VOUT,
874                                                                 FIND_ANYWHERE );
875             
876             if ( p_vout != NULL )
877             {
878                 [o_controls setupVarMenuItem: o_mi_screen target: (vlc_object_t *)p_vout
879                     var: "video-device" selector: @selector(toggleVar:)];
880                 
881                 [o_controls setupVarMenuItem: o_mi_deinterlace target: (vlc_object_t *)p_vout
882                     var: "deinterlace" selector: @selector(toggleVar:)];
883                 vlc_object_release( (vlc_object_t *)p_vout );
884             }
885         }
886 #undef p_input
887     }
888     vlc_object_release( (vlc_object_t *)p_playlist );
889 }
890
891 - (void)updateMessageArray
892 {
893     int i_start, i_stop;
894     intf_thread_t * p_intf = [NSApp getIntf];
895
896     vlc_mutex_lock( p_intf->p_sys->p_sub->p_lock );
897     i_stop = *p_intf->p_sys->p_sub->pi_stop;
898     vlc_mutex_unlock( p_intf->p_sys->p_sub->p_lock );
899
900     if( p_intf->p_sys->p_sub->i_start != i_stop )
901     {
902         NSColor *o_white = [NSColor whiteColor];
903         NSColor *o_red = [NSColor redColor];
904         NSColor *o_yellow = [NSColor yellowColor];
905         NSColor *o_gray = [NSColor grayColor];
906
907         NSColor * pp_color[4] = { o_white, o_red, o_yellow, o_gray };
908         static const char * ppsz_type[4] = { ": ", " error: ",
909                                              " warning: ", " debug: " };
910
911         for( i_start = p_intf->p_sys->p_sub->i_start;
912              i_start != i_stop;
913              i_start = (i_start+1) % VLC_MSG_QSIZE )
914         {
915             NSString *o_msg;
916             NSDictionary *o_attr;
917             NSAttributedString *o_msg_color;
918
919             int i_type = p_intf->p_sys->p_sub->p_msg[i_start].i_type;
920
921             [o_msg_lock lock];
922
923             if( [o_msg_arr count] + 2 > 400 )
924             {
925                 unsigned rid[] = { 0, 1 };
926                 [o_msg_arr removeObjectsFromIndices: (unsigned *)&rid
927                            numIndices: sizeof(rid)/sizeof(rid[0])];
928             }
929
930             o_attr = [NSDictionary dictionaryWithObject: o_gray
931                 forKey: NSForegroundColorAttributeName];
932             o_msg = [NSString stringWithFormat: @"%s%s",
933                 p_intf->p_sys->p_sub->p_msg[i_start].psz_module,
934                 ppsz_type[i_type]];
935             o_msg_color = [[NSAttributedString alloc]
936                 initWithString: o_msg attributes: o_attr];
937             [o_msg_arr addObject: [o_msg_color autorelease]];
938
939             o_attr = [NSDictionary dictionaryWithObject: pp_color[i_type]
940                 forKey: NSForegroundColorAttributeName];
941             o_msg = [NSString stringWithFormat: @"%s\n",
942                 p_intf->p_sys->p_sub->p_msg[i_start].psz_msg];
943             o_msg_color = [[NSAttributedString alloc]
944                 initWithString: o_msg attributes: o_attr];
945             [o_msg_arr addObject: [o_msg_color autorelease]];
946
947             [o_msg_lock unlock];
948
949             if( i_type == 1 )
950             {
951                 NSString *o_my_msg = [NSString stringWithFormat: @"%s: %s\n",
952                     p_intf->p_sys->p_sub->p_msg[i_start].psz_module,
953                     p_intf->p_sys->p_sub->p_msg[i_start].psz_msg];
954
955                 NSRange s_r = NSMakeRange( [[o_err_msg string] length], 0 );
956                 [o_err_msg setEditable: YES];
957                 [o_err_msg setSelectedRange: s_r];
958                 [o_err_msg insertText: o_my_msg];
959
960                 [o_error makeKeyAndOrderFront: self];
961                 [o_err_msg setEditable: NO];
962             }
963         }
964
965         vlc_mutex_lock( p_intf->p_sys->p_sub->p_lock );
966         p_intf->p_sys->p_sub->i_start = i_start;
967         vlc_mutex_unlock( p_intf->p_sys->p_sub->p_lock );
968     }
969 }
970
971 - (void)playStatusUpdated:(BOOL)b_pause
972 {
973     if( b_pause )
974     {
975         [o_btn_play setImage: o_img_pause];
976         [o_btn_play setAlternateImage: o_img_pause_pressed];
977         [o_btn_play setToolTip: _NS("Pause")];
978         [o_mi_play setTitle: _NS("Pause")];
979         [o_dmi_play setTitle: _NS("Pause")];
980     }
981     else
982     {
983         [o_btn_play setImage: o_img_play];
984         [o_btn_play setAlternateImage: o_img_play_pressed];
985         [o_btn_play setToolTip: _NS("Play")];
986         [o_mi_play setTitle: _NS("Play")];
987         [o_dmi_play setTitle: _NS("Play")];
988     }
989 }
990
991 - (void)setSubmenusEnabled:(BOOL)b_enabled
992 {
993     [o_mi_program setEnabled: b_enabled];
994     [o_mi_title setEnabled: b_enabled];
995     [o_mi_chapter setEnabled: b_enabled];
996     [o_mi_audiotrack setEnabled: b_enabled];
997     [o_mi_visual setEnabled: b_enabled];
998     [o_mi_videotrack setEnabled: b_enabled];
999     [o_mi_subtitle setEnabled: b_enabled];
1000     [o_mi_channels setEnabled: b_enabled];
1001     [o_mi_deinterlace setEnabled: b_enabled];
1002     [o_mi_device setEnabled: b_enabled];
1003     [o_mi_screen setEnabled: b_enabled];
1004 }
1005
1006 - (void)manageVolumeSlider
1007 {
1008     audio_volume_t i_volume;
1009     intf_thread_t * p_intf = [NSApp getIntf];
1010
1011     aout_VolumeGet( p_intf, &i_volume );
1012
1013     [o_volumeslider setFloatValue: (float)i_volume / AOUT_VOLUME_STEP]; 
1014     [o_volumeslider setEnabled: TRUE];
1015
1016     p_intf->p_sys->b_mute = ( i_volume == 0 );
1017 }
1018
1019 - (IBAction)timesliderUpdate:(id)sender
1020 {
1021     intf_thread_t * p_intf;
1022     input_thread_t * p_input;
1023     float f_updated;
1024
1025     switch( [[NSApp currentEvent] type] )
1026     {
1027         case NSLeftMouseUp:
1028         case NSLeftMouseDown:
1029         case NSLeftMouseDragged:
1030             f_updated = [sender floatValue];
1031             break;
1032
1033         default:
1034             return;
1035     }
1036
1037     p_intf = [NSApp getIntf];
1038     p_input = vlc_object_find( p_intf, VLC_OBJECT_INPUT,
1039                                             FIND_ANYWHERE );
1040
1041     if( p_input != NULL )
1042     {
1043         vlc_value_t time;
1044         mtime_t i_seconds;
1045         NSString * o_time;
1046
1047         if( p_input->stream.b_seekable )
1048         {
1049                 vlc_value_t pos;
1050                 pos.f_float = f_updated / 10000.;
1051                 if( f_slider != f_updated )
1052                 {
1053                     var_Set( p_input, "position", pos );
1054                     [o_timeslider setFloatValue: f_updated];
1055                 }
1056         }
1057             
1058         var_Get( p_input, "time", &time );
1059         i_seconds = time.i_time / 1000000;
1060         
1061         o_time = [NSString stringWithFormat: @"%d:%02d:%02d",
1062                         (int) (i_seconds / (60 * 60)),
1063                         (int) (i_seconds / 60 % 60),
1064                         (int) (i_seconds % 60)];
1065         [o_timefield setStringValue: o_time];
1066         vlc_object_release( p_input );
1067     }
1068 }
1069
1070 - (void)terminate
1071 {
1072     NSEvent * o_event;
1073     playlist_t * p_playlist;
1074     vout_thread_t * p_vout;
1075     intf_thread_t * p_intf = [NSApp getIntf];
1076
1077     /* Stop playback */
1078     if( ( p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
1079                                         FIND_ANYWHERE ) ) )
1080     {
1081         playlist_Stop( p_playlist );
1082         vlc_object_release( p_playlist );
1083     }
1084
1085     /* FIXME - Wait here until all vouts are terminated because
1086        libvlc's VLC_Stop destroys interfaces before vouts, which isn't
1087        good on OS X. We definitly need a cleaner way to handle this,
1088        but this may hopefully be good enough for now.
1089          -- titer 2003/11/22 */
1090     while( ( p_vout = vlc_object_find( p_intf, VLC_OBJECT_VOUT,
1091                                        FIND_ANYWHERE ) ) )
1092     {
1093         vlc_object_release( p_vout );
1094         msleep( 100000 );
1095     }
1096     msleep( 500000 );
1097
1098     if( o_img_pause_pressed != nil )
1099     {
1100         [o_img_pause_pressed release];
1101         o_img_pause_pressed = nil;
1102     }
1103     
1104     if( o_img_pause_pressed != nil )
1105     {
1106         [o_img_pause_pressed release];
1107         o_img_pause_pressed = nil;
1108     }
1109     
1110     if( o_img_pause != nil )
1111     {
1112         [o_img_pause release];
1113         o_img_pause = nil;
1114     }
1115
1116     if( o_img_play != nil )
1117     {
1118         [o_img_play release];
1119         o_img_play = nil;
1120     }
1121
1122     if( o_msg_arr != nil )
1123     {
1124         [o_msg_arr removeAllObjects];
1125         [o_msg_arr release];
1126         o_msg_arr = nil;
1127     }
1128
1129     if( o_msg_lock != nil )
1130     {
1131         [o_msg_lock release];
1132         o_msg_lock = nil;
1133     }
1134
1135     [NSApp stop: nil];
1136
1137     /* write cached user defaults to disk */
1138     [[NSUserDefaults standardUserDefaults] synchronize];
1139
1140     /* send a dummy event to break out of the event loop */
1141     o_event = [NSEvent mouseEventWithType: NSLeftMouseDown
1142                 location: NSMakePoint( 1, 1 ) modifierFlags: 0
1143                 timestamp: 1 windowNumber: [[NSApp mainWindow] windowNumber]
1144                 context: [NSGraphicsContext currentContext] eventNumber: 1
1145                 clickCount: 1 pressure: 0.0];
1146     [NSApp postEvent: o_event atStart: YES];
1147 }
1148
1149 - (IBAction)clearRecentItems:(id)sender
1150 {
1151     [[NSDocumentController sharedDocumentController]
1152                           clearRecentDocuments: nil];
1153 }
1154
1155 - (void)openRecentItem:(id)sender
1156 {
1157     [self application: nil openFile: [sender title]]; 
1158 }
1159
1160 - (IBAction)viewPreferences:(id)sender
1161 {
1162     [o_prefs showPrefs];
1163 }
1164
1165 - (IBAction)closeError:(id)sender
1166 {
1167     [o_err_msg setString: @""];
1168     [o_error performClose: self];
1169 }
1170
1171 - (IBAction)openReadMe:(id)sender
1172 {
1173     NSString * o_path = [[NSBundle mainBundle] 
1174         pathForResource: @"README.MacOSX" ofType: @"rtf"]; 
1175
1176     [[NSWorkspace sharedWorkspace] openFile: o_path 
1177                                    withApplication: @"TextEdit"];
1178 }
1179
1180 - (IBAction)openDocumentation:(id)sender
1181 {
1182     NSURL * o_url = [NSURL URLWithString: 
1183         @"http://www.videolan.org/doc/"];
1184
1185     [[NSWorkspace sharedWorkspace] openURL: o_url];
1186 }
1187
1188 - (IBAction)reportABug:(id)sender
1189 {
1190     NSURL * o_url = [NSURL URLWithString: 
1191         @"http://www.videolan.org/support/bug-reporting.html"];
1192
1193     [[NSWorkspace sharedWorkspace] openURL: o_url];
1194 }
1195
1196 - (IBAction)openWebsite:(id)sender
1197 {
1198     NSURL * o_url = [NSURL URLWithString: @"http://www.videolan.org"];
1199
1200     [[NSWorkspace sharedWorkspace] openURL: o_url];
1201 }
1202
1203 - (IBAction)openLicense:(id)sender
1204 {
1205     NSString * o_path = [[NSBundle mainBundle] 
1206         pathForResource: @"COPYING" ofType: nil];
1207
1208     [[NSWorkspace sharedWorkspace] openFile: o_path 
1209                                    withApplication: @"TextEdit"];
1210 }
1211
1212 - (IBAction)openCrashLog:(id)sender
1213 {
1214     NSString * o_path = [@"~/Library/Logs/CrashReporter/VLC.crash.log"
1215                                     stringByExpandingTildeInPath]; 
1216
1217     
1218     if ( [[NSFileManager defaultManager] fileExistsAtPath: o_path ] )
1219     {
1220         [[NSWorkspace sharedWorkspace] openFile: o_path 
1221                                     withApplication: @"Console"];
1222     }
1223     else
1224     {
1225         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.") );
1226
1227     }
1228 }
1229
1230 - (void)windowDidBecomeKey:(NSNotification *)o_notification
1231 {
1232     if( [o_notification object] == o_msgs_panel )
1233     {
1234         id o_msg;
1235         NSEnumerator * o_enum;
1236
1237         [o_messages setString: @""]; 
1238
1239         [o_msg_lock lock];
1240
1241         o_enum = [o_msg_arr objectEnumerator];
1242
1243         while( ( o_msg = [o_enum nextObject] ) != nil )
1244         {
1245             [o_messages insertText: o_msg];
1246         }
1247
1248         [o_msg_lock unlock];
1249     }
1250 }
1251
1252 @end
1253
1254 @implementation VLCMain (NSMenuValidation)
1255
1256 - (BOOL)validateMenuItem:(NSMenuItem *)o_mi
1257 {
1258     NSString *o_title = [o_mi title];
1259     BOOL bEnabled = TRUE;
1260
1261     if( [o_title isEqualToString: _NS("License")] )
1262     {
1263         /* we need to do this only once */
1264         [self setupMenus];
1265     }
1266
1267     /* Recent Items Menu */
1268     if( [o_title isEqualToString: _NS("Clear Menu")] )
1269     {
1270         NSMenu * o_menu = [o_mi_open_recent submenu];
1271         int i_nb_items = [o_menu numberOfItems];
1272         NSArray * o_docs = [[NSDocumentController sharedDocumentController]
1273                                                        recentDocumentURLs];
1274         UInt32 i_nb_docs = [o_docs count];
1275
1276         if( i_nb_items > 1 )
1277         {
1278             while( --i_nb_items )
1279             {
1280                 [o_menu removeItemAtIndex: 0];
1281             }
1282         }
1283
1284         if( i_nb_docs > 0 )
1285         {
1286             NSURL * o_url;
1287             NSString * o_doc;
1288
1289             [o_menu insertItem: [NSMenuItem separatorItem] atIndex: 0];
1290
1291             while( TRUE )
1292             {
1293                 i_nb_docs--;
1294
1295                 o_url = [o_docs objectAtIndex: i_nb_docs];
1296
1297                 if( [o_url isFileURL] )
1298                 {
1299                     o_doc = [o_url path];
1300                 }
1301                 else
1302                 {
1303                     o_doc = [o_url absoluteString];
1304                 }
1305
1306                 [o_menu insertItemWithTitle: o_doc
1307                     action: @selector(openRecentItem:)
1308                     keyEquivalent: @"" atIndex: 0]; 
1309
1310                 if( i_nb_docs == 0 )
1311                 {
1312                     break;
1313                 }
1314             } 
1315         }
1316         else
1317         {
1318             bEnabled = FALSE;
1319         }
1320     }
1321     return( bEnabled );
1322 }
1323
1324 @end
1325
1326 @implementation VLCMain (Internal)
1327
1328 - (void)handlePortMessage:(NSPortMessage *)o_msg
1329 {
1330     id ** val;
1331     NSData * o_data;
1332     NSValue * o_value;
1333     NSInvocation * o_inv;
1334     NSConditionLock * o_lock;
1335  
1336     o_data = [[o_msg components] lastObject];
1337     o_inv = *((NSInvocation **)[o_data bytes]); 
1338     [o_inv getArgument: &o_value atIndex: 2];
1339     val = (id **)[o_value pointerValue];
1340     [o_inv setArgument: val[1] atIndex: 2];
1341     o_lock = *(val[0]);
1342
1343     [o_lock lock];
1344     [o_inv invoke];
1345     [o_lock unlockWithCondition: 1];
1346 }
1347
1348 @end