1 /*****************************************************************************
2 * open.m: MacOS X module for vlc
3 *****************************************************************************
4 * Copyright (C) 2002-2007 the VideoLAN team
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 * Benjamin Pracht <bigben at videolan dot org>
11 * Felix K
\9fhne <fkuehne at videolan dot org>
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
26 *****************************************************************************/
28 /*****************************************************************************
30 *****************************************************************************/
31 #include <stdlib.h> /* malloc(), free() */
32 #include <sys/param.h> /* for MAXPATHLEN */
36 #include <IOKit/IOKitLib.h>
37 #include <IOKit/IOBSD.h>
38 #include <IOKit/storage/IOMedia.h>
39 #include <IOKit/storage/IOCDMedia.h>
40 #include <IOKit/storage/IODVDMedia.h>
48 /*****************************************************************************
49 * GetEjectableMediaOfClass
50 *****************************************************************************/
51 NSArray *GetEjectableMediaOfClass( const char *psz_class )
53 io_object_t next_media;
54 mach_port_t master_port;
55 kern_return_t kern_result;
56 NSArray *o_devices = nil;
57 NSMutableArray *p_list = nil;
58 io_iterator_t media_iterator;
59 CFMutableDictionaryRef classes_to_match;
61 kern_result = IOMasterPort( MACH_PORT_NULL, &master_port );
62 if( kern_result != KERN_SUCCESS )
67 classes_to_match = IOServiceMatching( psz_class );
68 if( classes_to_match == NULL )
73 CFDictionarySetValue( classes_to_match, CFSTR( kIOMediaEjectableKey ),
76 kern_result = IOServiceGetMatchingServices( master_port, classes_to_match,
78 if( kern_result != KERN_SUCCESS )
83 p_list = [NSMutableArray arrayWithCapacity: 1];
85 next_media = IOIteratorNext( media_iterator );
86 if( next_media != nil )
89 size_t dev_path_length;
90 CFTypeRef str_bsd_path;
94 str_bsd_path = IORegistryEntryCreateCFProperty( next_media,
95 CFSTR( kIOBSDNameKey ),
98 if( str_bsd_path == NULL )
100 IOObjectRelease( next_media );
104 snprintf( psz_buf, sizeof(psz_buf), "%s%c", _PATH_DEV, 'r' );
105 dev_path_length = strlen( psz_buf );
107 if( CFStringGetCString( str_bsd_path,
108 (char*)&psz_buf + dev_path_length,
109 sizeof(psz_buf) - dev_path_length,
110 kCFStringEncodingASCII ) )
112 [p_list addObject: [NSString stringWithCString: psz_buf]];
115 CFRelease( str_bsd_path );
117 IOObjectRelease( next_media );
119 } while( ( next_media = IOIteratorNext( media_iterator ) ) != nil );
122 IOObjectRelease( media_iterator );
124 o_devices = [NSArray arrayWithArray: p_list];
129 /*****************************************************************************
130 * VLCOpen implementation
131 *****************************************************************************/
132 @implementation VLCOpen
134 static VLCOpen *_o_sharedMainInstance = nil;
136 + (VLCOpen *)sharedInstance
138 return _o_sharedMainInstance ? _o_sharedMainInstance : [[self alloc] init];
143 if( _o_sharedMainInstance) {
146 _o_sharedMainInstance = [super init];
149 return _o_sharedMainInstance;
154 intf_thread_t * p_intf = VLCIntf;
156 [o_panel setTitle: _NS("Open Source")];
157 [o_mrl_lbl setTitle: _NS("Media Resource Locator (MRL)")];
159 [o_btn_ok setTitle: _NS("OK")];
160 [o_btn_cancel setTitle: _NS("Cancel")];
162 [[o_tabview tabViewItemAtIndex: 0] setLabel: _NS("File")];
163 [[o_tabview tabViewItemAtIndex: 1] setLabel: _NS("Disc")];
164 [[o_tabview tabViewItemAtIndex: 2] setLabel: _NS("Network")];
166 [o_file_btn_browse setTitle: _NS("Browse...")];
167 [o_file_stream setTitle: _NS("Treat as a pipe rather than as a file")];
169 [o_disc_device_lbl setStringValue: _NS("Device name")];
170 [o_disc_title_lbl setStringValue: _NS("Title")];
171 [o_disc_chapter_lbl setStringValue: _NS("Chapter")];
172 [o_disc_videots_btn_browse setTitle: _NS("Browse...")];
173 [o_disc_dvd_menus setTitle: _NS("Use DVD menus")];
175 [[o_disc_type cellAtRow:0 column:0] setTitle: _NS("VIDEO_TS directory")];
176 [[o_disc_type cellAtRow:1 column:0] setTitle: _NS("DVD")];
177 [[o_disc_type cellAtRow:2 column:0] setTitle: _NS("VCD")];
178 [[o_disc_type cellAtRow:3 column:0] setTitle: _NS("Audio CD")];
180 [o_net_udp_port_lbl setStringValue: _NS("Port")];
181 [o_net_udpm_addr_lbl setStringValue: _NS("Address")];
182 [o_net_udpm_port_lbl setStringValue: _NS("Port")];
183 [o_net_http_url_lbl setStringValue: _NS("URL")];
185 [[o_net_mode cellAtRow:0 column:0] setTitle: _NS("UDP/RTP")];
186 [[o_net_mode cellAtRow:1 column:0] setTitle: _NS("UDP/RTP Multicast")];
187 [[o_net_mode cellAtRow:2 column:0] setTitle: _NS("HTTP/FTP/MMS/RTSP")];
188 [o_net_timeshift_ckbox setTitle: _NS("Allow timeshifting")];
190 [o_net_udp_port setIntValue: config_GetInt( p_intf, "server-port" )];
191 [o_net_udp_port_stp setIntValue: config_GetInt( p_intf, "server-port" )];
193 [o_eyetv_chn_bgbar setUsesThreadedAnimation: YES];
194 /* FIXME: implement EyeTV l10n here */
199 [[NSNotificationCenter defaultCenter] addObserver: self
200 selector: @selector(openFilePathChanged:)
201 name: NSControlTextDidChangeNotification
202 object: o_file_path];
204 [[NSNotificationCenter defaultCenter] addObserver: self
205 selector: @selector(openDiscInfoChanged:)
206 name: NSControlTextDidChangeNotification
207 object: o_disc_device];
208 [[NSNotificationCenter defaultCenter] addObserver: self
209 selector: @selector(openDiscInfoChanged:)
210 name: NSControlTextDidChangeNotification
211 object: o_disc_title];
212 [[NSNotificationCenter defaultCenter] addObserver: self
213 selector: @selector(openDiscInfoChanged:)
214 name: NSControlTextDidChangeNotification
215 object: o_disc_chapter];
216 [[NSNotificationCenter defaultCenter] addObserver: self
217 selector: @selector(openDiscInfoChanged:)
218 name: NSControlTextDidChangeNotification
219 object: o_disc_videots_folder];
221 [[NSNotificationCenter defaultCenter] addObserver: self
222 selector: @selector(openNetInfoChanged:)
223 name: NSControlTextDidChangeNotification
224 object: o_net_udp_port];
225 [[NSNotificationCenter defaultCenter] addObserver: self
226 selector: @selector(openNetInfoChanged:)
227 name: NSControlTextDidChangeNotification
228 object: o_net_udpm_addr];
229 [[NSNotificationCenter defaultCenter] addObserver: self
230 selector: @selector(openNetInfoChanged:)
231 name: NSControlTextDidChangeNotification
232 object: o_net_udpm_port];
233 [[NSNotificationCenter defaultCenter] addObserver: self
234 selector: @selector(openNetInfoChanged:)
235 name: NSControlTextDidChangeNotification
236 object: o_net_http_url];
238 /* wake up with the correct GUI */
239 if( [[[VLCMain sharedInstance] getEyeTVController] isEyeTVrunning] == YES )
240 [o_eyetv_tabView selectTabViewItemWithIdentifier:@"nodevice"];
241 if( [[[VLCMain sharedInstance] getEyeTVController] isDeviceConnected] == YES )
243 [o_eyetv_tabView selectTabViewItemWithIdentifier:@"eyetvup"];
244 [self setupChannelInfo];
247 [[NSDistributedNotificationCenter defaultCenter] addObserver: self
248 selector: @selector(eyetvChanged:)
250 object: @"VLCEyeTVSupport"
251 suspensionBehavior: NSNotificationSuspensionBehaviorDeliverImmediately];
253 /* register clicks on text fields */
254 [[NSNotificationCenter defaultCenter] addObserver: self
255 selector: @selector(textFieldWasClicked:)
256 name: @"VLCOpenTextFieldWasClicked"
262 intf_thread_t * p_intf = VLCIntf;
264 module_config_t * p_item;
266 [o_file_sub_ckbox setTitle: _NS("Load subtitles file:")];
267 [o_file_sub_btn_settings setTitle: _NS("Settings...")];
268 [o_file_sub_btn_browse setTitle: _NS("Browse...")];
269 [o_file_sub_override setTitle: _NS("Override parametters")];
270 [o_file_sub_delay_lbl setStringValue: _NS("Delay")];
271 [o_file_sub_delay_stp setEnabled: NO];
272 [o_file_sub_fps_lbl setStringValue: _NS("FPS")];
273 [o_file_sub_fps_stp setEnabled: NO];
274 [o_file_sub_encoding_lbl setStringValue: _NS("Subtitles encoding")];
275 [o_file_sub_encoding_pop removeAllItems];
276 [o_file_sub_size_lbl setStringValue: _NS("Font size")];
277 [o_file_sub_size_pop removeAllItems];
278 [o_file_sub_align_lbl setStringValue: _NS("Subtitles alignment")];
279 [o_file_sub_align_pop removeAllItems];
280 [o_file_sub_ok_btn setStringValue: _NS("OK")];
281 [o_file_sub_font_box setTitle: _NS("Font Properties")];
282 [o_file_sub_file_box setTitle: _NS("Subtitle File")];
284 p_item = config_FindConfig( VLC_OBJECT(p_intf), "subsdec-encoding" );
288 for( i_index = 0; p_item->ppsz_list && p_item->ppsz_list[i_index];
291 [o_file_sub_encoding_pop addItemWithTitle:
292 [NSString stringWithCString:
293 p_item->ppsz_list[i_index]]];
295 [o_file_sub_encoding_pop selectItemWithTitle:
296 [NSString stringWithCString:
300 p_item = config_FindConfig( VLC_OBJECT(p_intf), "subsdec-align" );
304 for ( i_index = 0; i_index < p_item->i_list; i_index++ )
306 [o_file_sub_align_pop addItemWithTitle:
307 [NSString stringWithUTF8String:
308 p_item->ppsz_list_text[i_index]]];
310 [o_file_sub_align_pop selectItemAtIndex: p_item->value.i];
313 p_item = config_FindConfig( VLC_OBJECT(p_intf), "freetype-rel-fontsize" );
317 for ( i_index = 0; i_index < p_item->i_list; i_index++ )
319 [o_file_sub_size_pop addItemWithTitle:
320 [NSString stringWithUTF8String:
321 p_item->ppsz_list_text[i_index]]];
322 if ( p_item->value.i == p_item->pi_list[i_index] )
324 [o_file_sub_size_pop selectItemAtIndex: i_index];
330 - (void)openTarget:(int)i_type
333 intf_thread_t * p_intf = VLCIntf;
335 b_autoplay = config_GetInt( VLCIntf, "macosx-autoplay" );
337 [o_tabview selectTabViewItemAtIndex: i_type];
338 [o_file_sub_ckbox setState: NSOffState];
340 i_result = [NSApp runModalForWindow: o_panel];
345 NSMutableDictionary *o_dic;
346 NSMutableArray *o_options = [NSMutableArray array];
349 o_dic = [NSMutableDictionary dictionaryWithObject: [o_mrl stringValue] forKey: @"ITEM_URL"];
350 if( [o_file_sub_ckbox state] == NSOnState )
352 module_config_t * p_item;
354 [o_options addObject: [NSString stringWithFormat: @"sub-file=%@", [o_file_sub_path stringValue]]];
355 if( [o_file_sub_override state] == NSOnState )
357 [o_options addObject: [NSString stringWithFormat: @"sub-delay=%i", (int)( [o_file_sub_delay intValue] * 10 )]];
358 [o_options addObject: [NSString stringWithFormat: @"sub-fps=%f", [o_file_sub_fps floatValue]]];
360 [o_options addObject: [NSString stringWithFormat:
361 @"subsdec-encoding=%@",
362 [o_file_sub_encoding_pop titleOfSelectedItem]]];
363 [o_options addObject: [NSString stringWithFormat:
365 [o_file_sub_align_pop indexOfSelectedItem]]];
367 p_item = config_FindConfig( VLC_OBJECT(p_intf),
368 "freetype-rel-fontsize" );
372 [o_options addObject: [NSString stringWithFormat:
373 @"freetype-rel-fontsize=%i",
374 p_item->pi_list[[o_file_sub_size_pop indexOfSelectedItem]]]];
377 if( [o_output_ckbox state] == NSOnState )
379 for (i = 0 ; i < [[o_sout_options getMRL] count] ; i++)
381 [o_options addObject: [NSString stringWithString:
382 [[(VLCOutput *)o_sout_options getMRL] objectAtIndex: i]]];
385 if( [o_net_timeshift_ckbox state] == NSOnState )
387 [o_options addObject: [NSString stringWithString:
388 @"access-filter=timeshift"]];
390 [o_dic setObject: (NSArray *)[o_options copy] forKey: @"ITEM_OPTIONS"];
392 [o_playlist appendArray: [NSArray arrayWithObject: o_dic] atPos: -1 enqueue:NO];
394 [o_playlist appendArray: [NSArray arrayWithObject: o_dic] atPos: -1 enqueue:YES];
398 - (void)tabView:(NSTabView *)o_tv didSelectTabViewItem:(NSTabViewItem *)o_tvi
400 NSString *o_label = [o_tvi label];
402 if( [o_label isEqualToString: _NS("File")] )
404 [self openFilePathChanged: nil];
406 else if( [o_label isEqualToString: _NS("Disc")] )
408 [self openDiscTypeChanged: nil];
410 else if( [o_label isEqualToString: _NS("Network")] )
412 [self openNetInfoChanged: nil];
416 - (void)openFileGeneric
418 [self openFilePathChanged: nil];
419 [self openTarget: 0];
424 [self openDiscTypeChanged: nil];
425 [self openTarget: 1];
430 [self openNetInfoChanged: nil];
431 [self openTarget: 2];
434 - (void)openFilePathChanged:(NSNotification *)o_notification
436 NSString *o_mrl_string;
437 NSString *o_filename = [o_file_path stringValue];
438 NSString *o_ext = [o_filename pathExtension];
439 vlc_bool_t b_stream = [o_file_stream state];
442 [[NSFileManager defaultManager] fileExistsAtPath:o_filename isDirectory:&b_dir];
446 o_mrl_string = [NSString stringWithFormat: @"dir:%@", o_filename];
448 else if( [o_ext isEqualToString: @"bin"] ||
449 [o_ext isEqualToString: @"cue"] ||
450 [o_ext isEqualToString: @"vob"] ||
451 [o_ext isEqualToString: @"iso"] )
453 o_mrl_string = o_filename;
457 o_mrl_string = [NSString stringWithFormat: @"%s://%@",
458 b_stream ? "stream" : "file",
461 [o_mrl setStringValue: o_mrl_string];
464 - (IBAction)openFileBrowse:(id)sender
466 NSOpenPanel *o_open_panel = [NSOpenPanel openPanel];
468 [o_open_panel setAllowsMultipleSelection: NO];
469 [o_open_panel setCanChooseDirectories: YES];
470 [o_open_panel setTitle: _NS("Open File")];
471 [o_open_panel setPrompt: _NS("Open")];
473 [o_open_panel beginSheetForDirectory:nil
476 modalForWindow:[sender window]
478 didEndSelector: @selector(pathChosenInPanel:
484 - (void)pathChosenInPanel: (NSOpenPanel *) sheet withReturn:(int)returnCode contextInfo:(void *)contextInfo
486 if (returnCode == NSFileHandlingPanelOKButton)
488 NSString *o_filename = [[sheet filenames] objectAtIndex: 0];
489 [o_file_path setStringValue: o_filename];
490 [self openFilePathChanged: nil];
494 - (IBAction)openFileStreamChanged:(id)sender
496 [self openFilePathChanged: nil];
499 - (IBAction)openDiscTypeChanged:(id)sender
502 vlc_bool_t b_device, b_menus, b_title_chapter;
504 [o_disc_device removeAllItems];
505 b_title_chapter = ![o_disc_dvd_menus state];
507 o_type = [[o_disc_type selectedCell] title];
509 if ( [o_type isEqualToString: _NS("VIDEO_TS directory")] )
511 b_device = 0; b_menus = 1;
517 const char *psz_class = NULL;
520 if ( [o_type isEqualToString: _NS("VCD")] )
522 psz_class = kIOCDMediaClass;
524 b_menus = 0; b_title_chapter = 1;
525 [o_disc_dvd_menus setState: FALSE];
527 else if ( [o_type isEqualToString: _NS("Audio CD")])
529 psz_class = kIOCDMediaClass;
531 b_menus = 0; b_title_chapter = 0;
532 [o_disc_dvd_menus setState: FALSE];
536 psz_class = kIODVDMediaClass;
541 o_devices = GetEjectableMediaOfClass( psz_class );
542 if ( o_devices != nil )
544 int i_devices = [o_devices count];
550 for( i = 0; i < i_devices; i++ )
553 addItemWithObjectValue: [o_devices objectAtIndex: i]];
556 [o_disc_device selectItemAtIndex: 0];
560 [o_disc_device setStringValue:
561 [NSString stringWithFormat: _NS("No %@s found"), o_disc]];
566 [o_disc_device setEnabled: b_device];
567 [o_disc_title setEnabled: b_title_chapter];
568 [o_disc_title_stp setEnabled: b_title_chapter];
569 [o_disc_chapter setEnabled: b_title_chapter];
570 [o_disc_chapter_stp setEnabled: b_title_chapter];
571 [o_disc_videots_folder setEnabled: !b_device];
572 [o_disc_videots_btn_browse setEnabled: !b_device];
573 [o_disc_dvd_menus setEnabled: b_menus];
575 [self openDiscInfoChanged: nil];
578 - (IBAction)openDiscStepperChanged:(id)sender
580 int i_tag = [sender tag];
584 [o_disc_title setIntValue: [o_disc_title_stp intValue]];
586 else if( i_tag == 1 )
588 [o_disc_chapter setIntValue: [o_disc_chapter_stp intValue]];
591 [self openDiscInfoChanged: nil];
594 - (void)openDiscInfoChanged:(NSNotification *)o_notification
599 NSString *o_mrl_string;
600 int i_title, i_chapter;
603 o_type = [[o_disc_type selectedCell] title];
604 o_device = [o_disc_device stringValue];
605 i_title = [o_disc_title intValue];
606 i_chapter = [o_disc_chapter intValue];
607 o_videots = [o_disc_videots_folder stringValue];
608 b_menus = [o_disc_dvd_menus state];
610 if ( [o_type isEqualToString: _NS("VCD")] )
612 if ( [o_device isEqualToString:
613 [NSString stringWithFormat: _NS("No %@s found"), o_type]] )
615 o_mrl_string = [NSString stringWithFormat: @"vcd://%@@%i:%i",
616 o_device, i_title, i_chapter];
618 else if ( [o_type isEqualToString: _NS("Audio CD")] )
620 if ( [o_device isEqualToString:
621 [NSString stringWithFormat: _NS("No %@s found"), o_type]] )
623 o_mrl_string = [NSString stringWithFormat: @"cdda://%@",
626 else if ( [o_type isEqualToString: _NS("DVD")] )
628 if ( [o_device isEqualToString:
629 [NSString stringWithFormat: _NS("No %@s found"), o_type]] )
632 o_mrl_string = [NSString stringWithFormat: @"dvdnav://%@",
635 o_mrl_string = [NSString stringWithFormat: @"dvdread://%@@%i:%i-",
636 o_device, i_title, i_chapter];
638 else /* VIDEO_TS folder */
641 o_mrl_string = [NSString stringWithFormat: @"dvdnav://%@",
644 o_mrl_string = [NSString stringWithFormat: @"dvdread://%@@%i:%i",
645 o_videots, i_title, i_chapter];
648 [o_mrl setStringValue: o_mrl_string];
651 - (IBAction)openDiscMenusChanged:(id)sender
653 [self openDiscInfoChanged: nil];
654 [self openDiscTypeChanged: nil];
657 - (IBAction)openVTSBrowse:(id)sender
659 NSOpenPanel *o_open_panel = [NSOpenPanel openPanel];
661 [o_open_panel setAllowsMultipleSelection: NO];
662 [o_open_panel setCanChooseFiles: NO];
663 [o_open_panel setCanChooseDirectories: YES];
664 [o_open_panel setTitle: _NS("Open VIDEO_TS Directory")];
665 [o_open_panel setPrompt: _NS("Open")];
667 if( [o_open_panel runModalForDirectory: nil
668 file: nil types: nil] == NSOKButton )
670 NSString *o_dirname = [[o_open_panel filenames] objectAtIndex: 0];
671 [o_disc_videots_folder setStringValue: o_dirname];
672 [self openDiscInfoChanged: nil];
676 - (void)textFieldWasClicked:(NSNotification *)o_notification
678 if( [o_notification object] == o_net_udp_port )
679 [o_net_mode selectCellAtRow: 0 column: 0];
680 else if( [o_notification object] == o_net_udpm_addr ||
681 [o_notification object] == o_net_udpm_port )
682 [o_net_mode selectCellAtRow: 1 column: 0];
684 [o_net_mode selectCellAtRow: 2 column: 0];
686 [self openNetInfoChanged: nil];
689 - (IBAction)openNetModeChanged:(id)sender
691 if( [[sender selectedCell] tag] == 0 )
692 [o_panel makeFirstResponder: o_net_udp_port];
693 else if ( [[sender selectedCell] tag] == 1 )
694 [o_panel makeFirstResponder: o_net_udpm_addr];
696 [o_panel makeFirstResponder: o_net_http_url];
698 [self openNetInfoChanged: nil];
701 - (IBAction)openNetStepperChanged:(id)sender
703 int i_tag = [sender tag];
707 [o_net_udp_port setIntValue: [o_net_udp_port_stp intValue]];
708 [[NSNotificationCenter defaultCenter] postNotificationName: @"VLCOpenTextFieldWasClicked"
709 object: o_net_udp_port];
710 [o_panel makeFirstResponder: o_net_udp_port];
712 else if( i_tag == 1 )
714 [o_net_udpm_port setIntValue: [o_net_udpm_port_stp intValue]];
715 [[NSNotificationCenter defaultCenter] postNotificationName: @"VLCOpenTextFieldWasClicked"
716 object: o_net_udpm_port];
717 [o_panel makeFirstResponder: o_net_udpm_port];
720 [self openNetInfoChanged: nil];
723 - (void)openNetInfoChanged:(NSNotification *)o_notification
726 NSString *o_mrl_string = [NSString string];
727 intf_thread_t * p_intf = VLCIntf;
729 o_mode = [[o_net_mode selectedCell] title];
731 if( [o_mode isEqualToString: _NS("UDP/RTP")] )
733 int i_port = [o_net_udp_port intValue];
735 o_mrl_string = [NSString stringWithString: @"udp://"];
737 if( i_port != config_GetInt( p_intf, "server-port" ) )
740 [o_mrl_string stringByAppendingFormat: @"@:%i", i_port];
743 else if( [o_mode isEqualToString: _NS("UDP/RTP Multicast")] )
745 NSString *o_addr = [o_net_udpm_addr stringValue];
746 int i_port = [o_net_udpm_port intValue];
748 o_mrl_string = [NSString stringWithFormat: @"udp://@%@", o_addr];
750 if( i_port != config_GetInt( p_intf, "server-port" ) )
753 [o_mrl_string stringByAppendingFormat: @":%i", i_port];
756 else if( [o_mode isEqualToString: _NS("HTTP/FTP/MMS/RTSP")] )
758 NSString *o_url = [o_net_http_url stringValue];
760 if ( ![o_url hasPrefix:@"http:"] && ![o_url hasPrefix:@"ftp:"]
761 && ![o_url hasPrefix:@"mms"] && ![o_url hasPrefix:@"rtsp"] )
762 o_mrl_string = [NSString stringWithFormat: @"http://%@", o_url];
764 o_mrl_string = o_url;
766 [o_mrl setStringValue: o_mrl_string];
771 NSOpenPanel *o_open_panel = [NSOpenPanel openPanel];
773 b_autoplay = config_GetInt( VLCIntf, "macosx-autoplay" );
775 [o_open_panel setAllowsMultipleSelection: YES];
776 [o_open_panel setCanChooseDirectories: YES];
777 [o_open_panel setTitle: _NS("Open File")];
778 [o_open_panel setPrompt: _NS("Open")];
780 if( [o_open_panel runModalForDirectory: nil
781 file: nil types: nil] == NSOKButton )
783 NSArray *o_array = [NSArray array];
784 NSArray *o_values = [[o_open_panel filenames]
785 sortedArrayUsingSelector:@selector(caseInsensitiveCompare:)];
787 for( i = 0; i < (int)[o_values count]; i++)
790 o_dic = [NSDictionary dictionaryWithObject:[o_values objectAtIndex:i] forKey:@"ITEM_URL"];
791 o_array = [o_array arrayByAddingObject: o_dic];
794 [o_playlist appendArray: o_array atPos: -1 enqueue:NO];
796 [o_playlist appendArray: o_array atPos: -1 enqueue:YES];
800 - (IBAction)eyetvSwitchChannel:(id)sender
802 if( sender == o_eyetv_nextProgram_btn )
803 [[[VLCMain sharedInstance] getEyeTVController] switchChannelUp: YES];
804 else if( sender == o_eyetv_previousProgram_btn )
805 [[[VLCMain sharedInstance] getEyeTVController] switchChannelUp: NO];
806 else if( sender == o_eyetv_channels_pop )
807 [[[VLCMain sharedInstance] getEyeTVController] selectChannel:
808 [sender indexOfSelectedItem]];
810 msg_Err( VLCIntf, "eyetvSwitchChannel sent by unknown object" );
813 - (IBAction)eyetvLaunch:(id)sender
815 [[[VLCMain sharedInstance] getEyeTVController] launchEyeTV];
818 - (void)eyetvChanged:(NSNotification *)o_notification
820 if( [[o_notification name] isEqualToString: @"DeviceAdded"] )
822 msg_Dbg( VLCIntf, "eyetv device was added" );
823 [o_eyetv_tabView selectTabViewItemWithIdentifier:@"eyetvup"];
824 [self setupChannelInfo];
826 else if( [[o_notification name] isEqualToString: @"DeviceRemoved"] )
828 /* leave the channel selection like that,
829 * switch to our "no device" tab */
830 msg_Dbg( VLCIntf, "eyetv device was removed" );
831 [o_eyetv_tabView selectTabViewItemWithIdentifier:@"nodevice"];
833 else if( [[o_notification name] isEqualToString: @"PluginQuit"] )
835 /* switch to the "launch eyetv" tab */
836 msg_Dbg( VLCIntf, "eyetv was terminated" );
837 [o_eyetv_tabView selectTabViewItemWithIdentifier:@"noeyetv"];
839 else if( [[o_notification name] isEqualToString: @"PluginInit"] )
841 /* we got no device yet */
842 msg_Dbg( VLCIntf, "eyetv was launched, no device yet" );
843 [o_eyetv_tabView selectTabViewItemWithIdentifier:@"nodevice"];
846 msg_Warn( VLCIntf, "unknown external notify '%s' received", [[o_notification name] UTF8String] );
849 /* little helper method, since this code needs to be run by multiple objects */
850 - (void)setupChannelInfo
852 /* set up channel selection */
853 [o_eyetv_channels_pop removeAllItems];
854 [o_eyetv_chn_bgbar setHidden: NO];
855 [o_eyetv_chn_bgbar animate: self];
856 [o_eyetv_chn_status_txt setStringValue: _NS("Retrieving Channel Info...")];
857 [o_eyetv_chn_status_txt setHidden: NO];
861 int channelCount = ( [[[VLCMain sharedInstance] getEyeTVController] getNumberOfChannels] + 1 );
862 while( x != channelCount )
864 /* we have to add items this way, because we accept duplicates
865 * additionally, we save a bit of time */
866 [[o_eyetv_channels_pop menu] addItemWithTitle: [[[VLCMain sharedInstance] getEyeTVController] getNameOfChannel: x]
873 [o_eyetv_chn_bgbar setHidden: YES];
874 [o_eyetv_chn_status_txt setHidden: YES];
877 - (IBAction)subsChanged:(id)sender
879 if ([o_file_sub_ckbox state] == NSOnState)
881 [o_file_sub_btn_settings setEnabled:YES];
885 [o_file_sub_btn_settings setEnabled:NO];
889 - (IBAction)subSettings:(id)sender
891 [NSApp beginSheet: o_file_sub_sheet
892 modalForWindow: [sender window]
898 - (IBAction)subFileBrowse:(id)sender
900 NSOpenPanel *o_open_panel = [NSOpenPanel openPanel];
902 [o_open_panel setAllowsMultipleSelection: NO];
903 [o_open_panel setTitle: _NS("Open File")];
904 [o_open_panel setPrompt: _NS("Open")];
906 if( [o_open_panel runModalForDirectory: nil
907 file: nil types: nil] == NSOKButton )
909 NSString *o_filename = [[o_open_panel filenames] objectAtIndex: 0];
910 [o_file_sub_path setStringValue: o_filename];
914 - (IBAction)subOverride:(id)sender
916 BOOL b_state = [o_file_sub_override state];
917 [o_file_sub_delay setEnabled: b_state];
918 [o_file_sub_delay_stp setEnabled: b_state];
919 [o_file_sub_fps setEnabled: b_state];
920 [o_file_sub_fps_stp setEnabled: b_state];
923 - (IBAction)subDelayStepperChanged:(id)sender
925 [o_file_sub_delay setIntValue: [o_file_sub_delay_stp intValue]];
928 - (IBAction)subFpsStepperChanged:(id)sender;
930 [o_file_sub_fps setFloatValue: [o_file_sub_fps_stp floatValue]];
933 - (IBAction)subCloseSheet:(id)sender
935 [o_file_sub_sheet orderOut:sender];
936 [NSApp endSheet: o_file_sub_sheet];
939 - (IBAction)panelCancel:(id)sender
941 [NSApp stopModalWithCode: 0];
944 - (IBAction)panelOk:(id)sender
946 if( [[o_mrl stringValue] length] )
948 [NSApp stopModalWithCode: 1];
958 @implementation VLCOpenTextField
960 - (void)mouseDown:(NSEvent *)theEvent
962 [[NSNotificationCenter defaultCenter] postNotificationName: @"VLCOpenTextFieldWasClicked"
964 [super mouseDown: theEvent];