X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Fgui%2Fmacosx%2Fopen.m;h=36fac3802ee4bb78b325bd078ee46e64499d64e2;hb=3734ddc989adbde820ede4eb256edcb9410dc577;hp=324c1bdc6eb29c68f93acae709a2790b44c65435;hpb=85b29bdc288a1573d43bd524908be5748a9b3640;p=vlc diff --git a/modules/gui/macosx/open.m b/modules/gui/macosx/open.m index 324c1bdc6e..36fac3802e 100644 --- a/modules/gui/macosx/open.m +++ b/modules/gui/macosx/open.m @@ -1,19 +1,20 @@ /***************************************************************************** * open.m: MacOS X module for vlc ***************************************************************************** - * Copyright (C) 2002-2005 VideoLAN (Centrale Réseaux) and its contributors + * Copyright (C) 2002-2008 the VideoLAN team * $Id$ * - * Authors: Jon Lech Johansen + * Authors: Jon Lech Johansen * Christophe Massiot * Derk-Jan Hartman * Benjamin Pracht + * Felix Kühne * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. - * + * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -21,7 +22,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/ /***************************************************************************** @@ -38,13 +39,22 @@ #include #include -#include "intf.h" -#include "playlist.h" -#include "open.h" -#include "output.h" +#import "intf.h" +#import "playlist.h" +#import "open.h" +#import "output.h" +#import "eyetv.h" + +#define setEyeTVUnconnected \ +[o_capture_lbl setStringValue: _NS("No device connected")]; \ +[o_capture_long_lbl setStringValue: _NS("VLC could not detect any EyeTV compatible device.\n\nCheck the device's connection, make sure that the latest EyeTV software is installed and try again.")]; \ +[o_capture_lbl displayIfNeeded]; \ +[o_capture_long_lbl displayIfNeeded]; \ +[self showCaptureView: o_capture_label_view] + /***************************************************************************** - * GetEjectableMediaOfClass + * GetEjectableMediaOfClass *****************************************************************************/ NSArray *GetEjectableMediaOfClass( const char *psz_class ) { @@ -61,17 +71,17 @@ NSArray *GetEjectableMediaOfClass( const char *psz_class ) { return( nil ); } - + classes_to_match = IOServiceMatching( psz_class ); if( classes_to_match == NULL ) { return( nil ); } - - CFDictionarySetValue( classes_to_match, CFSTR( kIOMediaEjectableKey ), + + CFDictionarySetValue( classes_to_match, CFSTR( kIOMediaEjectableKey ), kCFBooleanTrue ); - - kern_result = IOServiceGetMatchingServices( master_port, classes_to_match, + + kern_result = IOServiceGetMatchingServices( master_port, classes_to_match, &media_iterator ); if( kern_result != KERN_SUCCESS ) { @@ -79,14 +89,14 @@ NSArray *GetEjectableMediaOfClass( const char *psz_class ) } p_list = [NSMutableArray arrayWithCapacity: 1]; - + next_media = IOIteratorNext( media_iterator ); - if( next_media != NULL ) + if( next_media ) { char psz_buf[0x32]; size_t dev_path_length; CFTypeRef str_bsd_path; - + do { str_bsd_path = IORegistryEntryCreateCFProperty( next_media, @@ -98,25 +108,25 @@ NSArray *GetEjectableMediaOfClass( const char *psz_class ) IOObjectRelease( next_media ); continue; } - + snprintf( psz_buf, sizeof(psz_buf), "%s%c", _PATH_DEV, 'r' ); dev_path_length = strlen( psz_buf ); - + if( CFStringGetCString( str_bsd_path, (char*)&psz_buf + dev_path_length, sizeof(psz_buf) - dev_path_length, kCFStringEncodingASCII ) ) { - [p_list addObject: [NSString stringWithCString: psz_buf]]; + [p_list addObject: [NSString stringWithUTF8String: psz_buf]]; } - + CFRelease( str_bsd_path ); - + IOObjectRelease( next_media ); - - } while( ( next_media = IOIteratorNext( media_iterator ) ) != NULL ); + + } while( ( next_media = IOIteratorNext( media_iterator ) ) ); } - + IOObjectRelease( media_iterator ); o_devices = [NSArray arrayWithArray: p_list]; @@ -125,7 +135,7 @@ NSArray *GetEjectableMediaOfClass( const char *psz_class ) } /***************************************************************************** - * VLCOpen implementation + * VLCOpen implementation *****************************************************************************/ @implementation VLCOpen @@ -143,7 +153,7 @@ static VLCOpen *_o_sharedMainInstance = nil; } else { _o_sharedMainInstance = [super init]; } - + return _o_sharedMainInstance; } @@ -160,6 +170,7 @@ static VLCOpen *_o_sharedMainInstance = nil; [[o_tabview tabViewItemAtIndex: 0] setLabel: _NS("File")]; [[o_tabview tabViewItemAtIndex: 1] setLabel: _NS("Disc")]; [[o_tabview tabViewItemAtIndex: 2] setLabel: _NS("Network")]; + [[o_tabview tabViewItemAtIndex: 3] setLabel: _NS("Capture")]; [o_file_btn_browse setTitle: _NS("Browse...")]; [o_file_stream setTitle: _NS("Treat as a pipe rather than as a file")]; @@ -168,9 +179,9 @@ static VLCOpen *_o_sharedMainInstance = nil; [o_disc_title_lbl setStringValue: _NS("Title")]; [o_disc_chapter_lbl setStringValue: _NS("Chapter")]; [o_disc_videots_btn_browse setTitle: _NS("Browse...")]; - [o_disc_dvd_menus setTitle: _NS("Use DVD menus")]; + [o_disc_dvd_menus setTitle: _NS("No DVD menus")]; - [[o_disc_type cellAtRow:0 column:0] setTitle: _NS("VIDEO_TS folder")]; + [[o_disc_type cellAtRow:0 column:0] setTitle: _NS("VIDEO_TS directory")]; [[o_disc_type cellAtRow:1 column:0] setTitle: _NS("DVD")]; [[o_disc_type cellAtRow:2 column:0] setTitle: _NS("VCD")]; [[o_disc_type cellAtRow:3 column:0] setTitle: _NS("Audio CD")]; @@ -188,8 +199,25 @@ static VLCOpen *_o_sharedMainInstance = nil; [o_net_udp_port setIntValue: config_GetInt( p_intf, "server-port" )]; [o_net_udp_port_stp setIntValue: config_GetInt( p_intf, "server-port" )]; - [self setSubPanel]; + [o_eyetv_chn_bgbar setUsesThreadedAnimation: YES]; + + [o_capture_mode_pop removeAllItems]; + if( MACOS_VERSION > 10.4f ) + [o_capture_mode_pop addItemWithTitle: @"iSight"]; + [o_capture_mode_pop addItemWithTitle: _NS("Screen")]; + [o_capture_mode_pop addItemWithTitle: @"EyeTV"]; + [o_screen_lbl setStringValue: _NS("Screen Capture Input")]; + [o_screen_long_lbl setStringValue: _NS("This facility allows you to process your screen's output.")]; + [o_screen_fps_lbl setStringValue: _NS("Frames per Second:")]; + [o_eyetv_currentChannel_lbl setStringValue: _NS("Current channel:")]; + [o_eyetv_previousProgram_btn setTitle: _NS("Previous Channel")]; + [o_eyetv_nextProgram_btn setTitle: _NS("Next Channel")]; + [o_eyetv_chn_status_txt setStringValue: _NS("Retrieving Channel Info...")]; + [o_eyetv_noInstance_lbl setStringValue: _NS("EyeTV is not launched")]; + [o_eyetv_noInstanceLong_lbl setStringValue: _NS("VLC could not connect to EyeTV.\nMake sure that you installed VLC's EyeTV plugin.")]; + [o_eyetv_launchEyeTV_btn setTitle: _NS("Launch EyeTV now")]; + [self setSubPanel]; [[NSNotificationCenter defaultCenter] addObserver: self selector: @selector(openFilePathChanged:) @@ -229,6 +257,23 @@ static VLCOpen *_o_sharedMainInstance = nil; selector: @selector(openNetInfoChanged:) name: NSControlTextDidChangeNotification object: o_net_http_url]; + + [[NSDistributedNotificationCenter defaultCenter] addObserver: self + selector: @selector(eyetvChanged:) + name: NULL + object: @"VLCEyeTVSupport" + suspensionBehavior: NSNotificationSuspensionBehaviorDeliverImmediately]; + + [[NSNotificationCenter defaultCenter] addObserver: self + selector: @selector(screenFPSfieldChanged:) + name: NSControlTextDidChangeNotification + object: o_screen_fps_fld]; + + /* register clicks on text fields */ + [[NSNotificationCenter defaultCenter] addObserver: self + selector: @selector(textFieldWasClicked:) + name: @"VLCOpenTextFieldWasClicked" + object: nil]; } - (void)setSubPanel @@ -240,16 +285,16 @@ static VLCOpen *_o_sharedMainInstance = nil; [o_file_sub_ckbox setTitle: _NS("Load subtitles file:")]; [o_file_sub_btn_settings setTitle: _NS("Settings...")]; [o_file_sub_btn_browse setTitle: _NS("Browse...")]; - [o_file_sub_override setTitle: _NS("Override")]; - [o_file_sub_delay_lbl setStringValue: _NS("delay")]; + [o_file_sub_override setTitle: _NS("Override parametters")]; + [o_file_sub_delay_lbl setStringValue: _NS("Delay")]; [o_file_sub_delay_stp setEnabled: NO]; - [o_file_sub_fps_lbl setStringValue: _NS("fps")]; + [o_file_sub_fps_lbl setStringValue: _NS("FPS")]; [o_file_sub_fps_stp setEnabled: NO]; [o_file_sub_encoding_lbl setStringValue: _NS("Subtitles encoding")]; [o_file_sub_encoding_pop removeAllItems]; [o_file_sub_size_lbl setStringValue: _NS("Font size")]; [o_file_sub_size_pop removeAllItems]; - [o_file_sub_align_lbl setStringValue: _NS("Subtitles justification")]; + [o_file_sub_align_lbl setStringValue: _NS("Subtitles alignment")]; [o_file_sub_align_pop removeAllItems]; [o_file_sub_ok_btn setStringValue: _NS("OK")]; [o_file_sub_font_box setTitle: _NS("Font Properties")]; @@ -263,12 +308,10 @@ static VLCOpen *_o_sharedMainInstance = nil; i_index++ ) { [o_file_sub_encoding_pop addItemWithTitle: - [NSString stringWithCString: - p_item->ppsz_list[i_index]]]; + [NSString stringWithUTF8String: p_item->ppsz_list[i_index]]]; } [o_file_sub_encoding_pop selectItemWithTitle: - [NSString stringWithCString: - p_item->psz_value]]; + [NSString stringWithUTF8String: p_item->value.psz]]; } p_item = config_FindConfig( VLC_OBJECT(p_intf), "subsdec-align" ); @@ -281,7 +324,7 @@ static VLCOpen *_o_sharedMainInstance = nil; [NSString stringWithUTF8String: p_item->ppsz_list_text[i_index]]]; } - [o_file_sub_align_pop selectItemAtIndex: p_item->i_value]; + [o_file_sub_align_pop selectItemAtIndex: p_item->value.i]; } p_item = config_FindConfig( VLC_OBJECT(p_intf), "freetype-rel-fontsize" ); @@ -293,7 +336,7 @@ static VLCOpen *_o_sharedMainInstance = nil; [o_file_sub_size_pop addItemWithTitle: [NSString stringWithUTF8String: p_item->ppsz_list_text[i_index]]]; - if ( p_item->i_value == p_item->pi_list[i_index] ) + if ( p_item->value.i == p_item->pi_list[i_index] ) { [o_file_sub_size_pop selectItemAtIndex: i_index]; } @@ -304,10 +347,13 @@ static VLCOpen *_o_sharedMainInstance = nil; - (void)openTarget:(int)i_type { int i_result; + intf_thread_t * p_intf = VLCIntf; + + b_autoplay = config_GetInt( VLCIntf, "macosx-autoplay" ); [o_tabview selectTabViewItemAtIndex: i_type]; [o_file_sub_ckbox setState: NSOffState]; - + i_result = [NSApp runModalForWindow: o_panel]; [o_panel close]; @@ -320,10 +366,9 @@ static VLCOpen *_o_sharedMainInstance = nil; o_dic = [NSMutableDictionary dictionaryWithObject: [o_mrl stringValue] forKey: @"ITEM_URL"]; if( [o_file_sub_ckbox state] == NSOnState ) { - intf_thread_t * p_intf = VLCIntf; module_config_t * p_item; - [o_options addObject: [NSString stringWithFormat: @"sub-file=%s", [[o_file_sub_path stringValue] fileSystemRepresentation]]]; + [o_options addObject: [NSString stringWithFormat: @"sub-file=%@", [o_file_sub_path stringValue]]]; if( [o_file_sub_override state] == NSOnState ) { [o_options addObject: [NSString stringWithFormat: @"sub-delay=%i", (int)( [o_file_sub_delay intValue] * 10 )]]; @@ -360,7 +405,10 @@ static VLCOpen *_o_sharedMainInstance = nil; @"access-filter=timeshift"]]; } [o_dic setObject: (NSArray *)[o_options copy] forKey: @"ITEM_OPTIONS"]; - [o_playlist appendArray: [NSArray arrayWithObject: o_dic] atPos: -1 enqueue:NO]; + if( b_autoplay ) + [o_playlist appendArray: [NSArray arrayWithObject: o_dic] atPos: -1 enqueue:NO]; + else + [o_playlist appendArray: [NSArray arrayWithObject: o_dic] atPos: -1 enqueue:YES]; } } @@ -378,8 +426,12 @@ static VLCOpen *_o_sharedMainInstance = nil; } else if( [o_label isEqualToString: _NS("Network")] ) { - [self openNetModeChanged: nil]; - } + [self openNetInfoChanged: nil]; + } + else if( [o_label isEqualToString: _NS("Capture")] ) + { + [self openCaptureModeChanged: nil]; + } } - (void)openFileGeneric @@ -396,18 +448,25 @@ static VLCOpen *_o_sharedMainInstance = nil; - (void)openNet { - [self openNetModeChanged: nil]; + [self openNetInfoChanged: nil]; [self openTarget: 2]; } +- (void)openCapture +{ + [self openCaptureModeChanged: nil]; + [self showCaptureView: o_capture_label_view]; + [self openTarget: 3]; +} + - (void)openFilePathChanged:(NSNotification *)o_notification { NSString *o_mrl_string; NSString *o_filename = [o_file_path stringValue]; NSString *o_ext = [o_filename pathExtension]; - vlc_bool_t b_stream = [o_file_stream state]; + bool b_stream = [o_file_stream state]; BOOL b_dir = NO; - + [[NSFileManager defaultManager] fileExistsAtPath:o_filename isDirectory:&b_dir]; if( b_dir ) @@ -427,13 +486,13 @@ static VLCOpen *_o_sharedMainInstance = nil; b_stream ? "stream" : "file", o_filename]; } - [o_mrl setStringValue: o_mrl_string]; + [o_mrl setStringValue: o_mrl_string]; } - (IBAction)openFileBrowse:(id)sender { NSOpenPanel *o_open_panel = [NSOpenPanel openPanel]; - + [o_open_panel setAllowsMultipleSelection: NO]; [o_open_panel setCanChooseDirectories: YES]; [o_open_panel setTitle: _NS("Open File")]; @@ -444,7 +503,7 @@ static VLCOpen *_o_sharedMainInstance = nil; types:nil modalForWindow:[sender window] modalDelegate: self - didEndSelector: @selector(pathChosenInPanel: + didEndSelector: @selector(pathChosenInPanel: withReturn: contextInfo:) contextInfo: nil]; @@ -468,57 +527,53 @@ static VLCOpen *_o_sharedMainInstance = nil; - (IBAction)openDiscTypeChanged:(id)sender { NSString *o_type; - vlc_bool_t b_device, b_menus, b_title_chapter; - + BOOL b_device, b_no_menus, b_title_chapter; + [o_disc_device removeAllItems]; b_title_chapter = ![o_disc_dvd_menus state]; - + o_type = [[o_disc_type selectedCell] title]; - if ( [o_type isEqualToString: _NS("VIDEO_TS folder")] ) + if ( [o_type isEqualToString: _NS("VIDEO_TS directory")] ) { - b_device = 0; b_menus = 1; + b_device = NO; b_no_menus = YES; } else { NSArray *o_devices; NSString *o_disc; const char *psz_class = NULL; - b_device = 1; + b_device = YES; if ( [o_type isEqualToString: _NS("VCD")] ) { psz_class = kIOCDMediaClass; o_disc = o_type; - b_menus = 0; b_title_chapter = 1; - [o_disc_dvd_menus setState: FALSE]; - } + b_no_menus = NO; b_title_chapter = YES; + } else if ( [o_type isEqualToString: _NS("Audio CD")]) { psz_class = kIOCDMediaClass; o_disc = o_type; - b_menus = 0; b_title_chapter = 0; - [o_disc_dvd_menus setState: FALSE]; + b_no_menus = NO; b_title_chapter = NO; } else { psz_class = kIODVDMediaClass; o_disc = o_type; - b_menus = 1; + b_no_menus = YES; } - + o_devices = GetEjectableMediaOfClass( psz_class ); if ( o_devices != nil ) { int i_devices = [o_devices count]; - + if ( i_devices ) { - int i; - - for( i = 0; i < i_devices; i++ ) + for( int i = 0; i < i_devices; i++ ) { - [o_disc_device + [o_disc_device addItemWithObjectValue: [o_devices objectAtIndex: i]]; } @@ -526,7 +581,7 @@ static VLCOpen *_o_sharedMainInstance = nil; } else { - [o_disc_device setStringValue: + [o_disc_device setStringValue: [NSString stringWithFormat: _NS("No %@s found"), o_disc]]; } } @@ -539,7 +594,7 @@ static VLCOpen *_o_sharedMainInstance = nil; [o_disc_chapter_stp setEnabled: b_title_chapter]; [o_disc_videots_folder setEnabled: !b_device]; [o_disc_videots_btn_browse setEnabled: !b_device]; - [o_disc_dvd_menus setEnabled: b_menus]; + [o_disc_dvd_menus setEnabled: b_no_menus]; [self openDiscInfoChanged: nil]; } @@ -567,14 +622,14 @@ static VLCOpen *_o_sharedMainInstance = nil; NSString *o_videots; NSString *o_mrl_string; int i_title, i_chapter; - vlc_bool_t b_menus; + BOOL b_no_menus; o_type = [[o_disc_type selectedCell] title]; o_device = [o_disc_device stringValue]; i_title = [o_disc_title intValue]; i_chapter = [o_disc_chapter intValue]; o_videots = [o_disc_videots_folder stringValue]; - b_menus = [o_disc_dvd_menus state]; + b_no_menus = [o_disc_dvd_menus state]; if ( [o_type isEqualToString: _NS("VCD")] ) { @@ -582,7 +637,7 @@ static VLCOpen *_o_sharedMainInstance = nil; [NSString stringWithFormat: _NS("No %@s found"), o_type]] ) o_device = @""; o_mrl_string = [NSString stringWithFormat: @"vcd://%@@%i:%i", - o_device, i_title, i_chapter]; + o_device, i_title, i_chapter]; } else if ( [o_type isEqualToString: _NS("Audio CD")] ) { @@ -590,31 +645,32 @@ static VLCOpen *_o_sharedMainInstance = nil; [NSString stringWithFormat: _NS("No %@s found"), o_type]] ) o_device = @""; o_mrl_string = [NSString stringWithFormat: @"cdda://%@", - o_device]; + o_device]; } else if ( [o_type isEqualToString: _NS("DVD")] ) { if ( [o_device isEqualToString: [NSString stringWithFormat: _NS("No %@s found"), o_type]] ) o_device = @""; - if ( b_menus ) - o_mrl_string = [NSString stringWithFormat: @"dvdnav://%@", - o_device]; - else + if ( b_no_menus ) o_mrl_string = [NSString stringWithFormat: @"dvdread://%@@%i:%i-", - o_device, i_title, i_chapter]; + o_device, i_title, i_chapter]; + else + o_mrl_string = [NSString stringWithFormat: @"dvdnav://%@", + o_device]; + } else /* VIDEO_TS folder */ { - if ( b_menus ) - o_mrl_string = [NSString stringWithFormat: @"dvdnav://%@", - o_videots]; - else + if ( b_no_menus ) o_mrl_string = [NSString stringWithFormat: @"dvdread://%@@%i:%i", - o_videots, i_title, i_chapter]; + o_videots, i_title, i_chapter]; + else + o_mrl_string = [NSString stringWithFormat: @"dvdnav://%@", + o_videots]; } - [o_mrl setStringValue: o_mrl_string]; + [o_mrl setStringValue: o_mrl_string]; } - (IBAction)openDiscMenusChanged:(id)sender @@ -642,25 +698,27 @@ static VLCOpen *_o_sharedMainInstance = nil; } } -- (IBAction)openNetModeChanged:(id)sender +- (void)textFieldWasClicked:(NSNotification *)o_notification { - NSString *o_mode; - BOOL b_udp = FALSE; - BOOL b_udpm = FALSE; - BOOL b_http = FALSE; - - o_mode = [[o_net_mode selectedCell] title]; + if( [o_notification object] == o_net_udp_port ) + [o_net_mode selectCellAtRow: 0 column: 0]; + else if( [o_notification object] == o_net_udpm_addr || + [o_notification object] == o_net_udpm_port ) + [o_net_mode selectCellAtRow: 1 column: 0]; + else + [o_net_mode selectCellAtRow: 2 column: 0]; - if( [o_mode isEqualToString: _NS("UDP/RTP")] ) b_udp = TRUE; - else if( [o_mode isEqualToString: _NS("UDP/RTP Multicast")] ) b_udpm = TRUE; - else if( [o_mode isEqualToString: _NS("HTTP/FTP/MMS/RTSP")] ) b_http = TRUE; + [self openNetInfoChanged: nil]; +} - [o_net_udp_port setEnabled: b_udp]; - [o_net_udp_port_stp setEnabled: b_udp]; - [o_net_udpm_addr setEnabled: b_udpm]; - [o_net_udpm_port setEnabled: b_udpm]; - [o_net_udpm_port_stp setEnabled: b_udpm]; - [o_net_http_url setEnabled: b_http]; +- (IBAction)openNetModeChanged:(id)sender +{ + if( [[sender selectedCell] tag] == 0 ) + [o_panel makeFirstResponder: o_net_udp_port]; + else if ( [[sender selectedCell] tag] == 1 ) + [o_panel makeFirstResponder: o_net_udpm_addr]; + else + [o_panel makeFirstResponder: o_net_http_url]; [self openNetInfoChanged: nil]; } @@ -672,10 +730,16 @@ static VLCOpen *_o_sharedMainInstance = nil; if( i_tag == 0 ) { [o_net_udp_port setIntValue: [o_net_udp_port_stp intValue]]; + [[NSNotificationCenter defaultCenter] postNotificationName: @"VLCOpenTextFieldWasClicked" + object: o_net_udp_port]; + [o_panel makeFirstResponder: o_net_udp_port]; } else if( i_tag == 1 ) { [o_net_udpm_port setIntValue: [o_net_udpm_port_stp intValue]]; + [[NSNotificationCenter defaultCenter] postNotificationName: @"VLCOpenTextFieldWasClicked" + object: o_net_udpm_port]; + [o_panel makeFirstResponder: o_net_udpm_port]; } [self openNetInfoChanged: nil]; @@ -693,26 +757,26 @@ static VLCOpen *_o_sharedMainInstance = nil; { int i_port = [o_net_udp_port intValue]; - o_mrl_string = [NSString stringWithString: @"udp://"]; + o_mrl_string = [NSString stringWithString: @"udp://"]; if( i_port != config_GetInt( p_intf, "server-port" ) ) { - o_mrl_string = - [o_mrl_string stringByAppendingFormat: @"@:%i", i_port]; - } + o_mrl_string = + [o_mrl_string stringByAppendingFormat: @"@:%i", i_port]; + } } - else if( [o_mode isEqualToString: _NS("UDP/RTP Multicast")] ) + else if( [o_mode isEqualToString: _NS("UDP/RTP Multicast")] ) { NSString *o_addr = [o_net_udpm_addr stringValue]; int i_port = [o_net_udpm_port intValue]; - o_mrl_string = [NSString stringWithFormat: @"udp://@%@", o_addr]; + o_mrl_string = [NSString stringWithFormat: @"udp://@%@", o_addr]; if( i_port != config_GetInt( p_intf, "server-port" ) ) { - o_mrl_string = - [o_mrl_string stringByAppendingFormat: @":%i", i_port]; - } + o_mrl_string = + [o_mrl_string stringByAppendingFormat: @":%i", i_port]; + } } else if( [o_mode isEqualToString: _NS("HTTP/FTP/MMS/RTSP")] ) { @@ -731,12 +795,13 @@ static VLCOpen *_o_sharedMainInstance = nil; { NSOpenPanel *o_open_panel = [NSOpenPanel openPanel]; int i; - + b_autoplay = config_GetInt( VLCIntf, "macosx-autoplay" ); + [o_open_panel setAllowsMultipleSelection: YES]; [o_open_panel setCanChooseDirectories: YES]; [o_open_panel setTitle: _NS("Open File")]; [o_open_panel setPrompt: _NS("Open")]; - + if( [o_open_panel runModalForDirectory: nil file: nil types: nil] == NSOKButton ) { @@ -750,8 +815,181 @@ static VLCOpen *_o_sharedMainInstance = nil; o_dic = [NSDictionary dictionaryWithObject:[o_values objectAtIndex:i] forKey:@"ITEM_URL"]; o_array = [o_array arrayByAddingObject: o_dic]; } - [o_playlist appendArray: o_array atPos: -1 enqueue:NO]; + if( b_autoplay ) + [o_playlist appendArray: o_array atPos: -1 enqueue:NO]; + else + [o_playlist appendArray: o_array atPos: -1 enqueue:YES]; + } +} + +- (void)showCaptureView: theView +{ + NSRect o_view_rect; + o_view_rect = [theView frame]; + if( o_currentCaptureView ) + { + [o_currentCaptureView removeFromSuperviewWithoutNeedingDisplay]; + [o_currentCaptureView release]; + } + [theView setFrame: NSMakeRect( 0, 10, o_view_rect.size.width, o_view_rect.size.height)]; + [theView setNeedsDisplay: YES]; + [theView setAutoresizesSubviews: YES]; + [[[o_tabview tabViewItemAtIndex: 3] view] addSubview: theView]; + [theView displayIfNeeded]; + o_currentCaptureView = theView; + [o_currentCaptureView retain]; +} + +- (IBAction)openCaptureModeChanged:(id)sender +{ + if( [[[o_capture_mode_pop selectedItem] title] isEqualToString: @"EyeTV"] ) + { + if( [[[VLCMain sharedInstance] getEyeTVController] isEyeTVrunning] == YES ) + { + if( [[[VLCMain sharedInstance] getEyeTVController] isDeviceConnected] == YES ) + { + [self showCaptureView: o_eyetv_running_view]; + [self setupChannelInfo]; + } + else + { + setEyeTVUnconnected; + } + } + else + [self showCaptureView: o_eyetv_notLaunched_view]; + [o_mrl setStringValue: @""]; + } + else if( [[[o_capture_mode_pop selectedItem] title] isEqualToString: _NS("Screen")] ) + { + [self showCaptureView: o_screen_view]; + [o_mrl setStringValue: [NSString stringWithFormat:@"screen:// :screen-fps=%@", [o_screen_fps_fld stringValue]]]; } + else if( [[[o_capture_mode_pop selectedItem] title] isEqualToString: @"iSight"] ) + { + [o_capture_lbl setStringValue: _NS("iSight Capture Input")]; + [o_capture_long_lbl setStringValue: _NS("This facility allows you to process your iSight's input signal.\n\nNo settings are available in this version, so you will be provided a 640px*480px raw video stream.\n\nLive Audio input is not supported.")]; + [o_capture_lbl displayIfNeeded]; + [o_capture_long_lbl displayIfNeeded]; + + [self showCaptureView: o_capture_label_view]; + [o_mrl setStringValue: @"qtcapture://"]; + } +} + +- (IBAction)screenStepperChanged:(id)sender +{ + [o_screen_fps_fld setIntValue: [o_screen_fps_stp intValue]]; + [o_panel makeFirstResponder: o_screen_fps_fld]; + [o_mrl setStringValue: [NSString stringWithFormat:@"screen:// :screen-fps=%@", [o_screen_fps_fld stringValue]]]; +} + +- (void)screenFPSfieldChanged:(NSNotification *)o_notification +{ + [o_screen_fps_stp setIntValue: [o_screen_fps_fld intValue]]; + if( [[o_screen_fps_fld stringValue] isEqualToString: @""] ) + [o_screen_fps_fld setIntValue: 1]; + [o_mrl setStringValue: [NSString stringWithFormat:@"screen:// :screen-fps=%i", [o_screen_fps_fld intValue]]]; +} + +- (IBAction)eyetvSwitchChannel:(id)sender +{ + if( sender == o_eyetv_nextProgram_btn ) + { + int chanNum = [[[VLCMain sharedInstance] getEyeTVController] switchChannelUp: YES]; + [o_eyetv_channels_pop selectItemWithTag:chanNum]; + [o_mrl setStringValue: [NSString stringWithFormat:@"eyetv:// :eyetv-channel=%d", chanNum]]; + } + else if( sender == o_eyetv_previousProgram_btn ) + { + int chanNum = [[[VLCMain sharedInstance] getEyeTVController] switchChannelUp: NO]; + [o_eyetv_channels_pop selectItemWithTag:chanNum]; + [o_mrl setStringValue: [NSString stringWithFormat:@"eyetv:// :eyetv-channel=%d", chanNum]]; + } + else if( sender == o_eyetv_channels_pop ) + { + int chanNum = [[sender selectedItem] tag]; + [[[VLCMain sharedInstance] getEyeTVController] selectChannel:chanNum]; + [o_mrl setStringValue: [NSString stringWithFormat:@"eyetv:// :eyetv-channel=%d", chanNum]]; + } + else + msg_Err( VLCIntf, "eyetvSwitchChannel sent by unknown object" ); +} + +- (IBAction)eyetvLaunch:(id)sender +{ + [[[VLCMain sharedInstance] getEyeTVController] launchEyeTV]; +} + +- (void)eyetvChanged:(NSNotification *)o_notification +{ + if( [[o_notification name] isEqualToString: @"DeviceAdded"] ) + { + msg_Dbg( VLCIntf, "eyetv device was added" ); + [self showCaptureView: o_eyetv_running_view]; + [self setupChannelInfo]; + } + else if( [[o_notification name] isEqualToString: @"DeviceRemoved"] ) + { + /* leave the channel selection like that, + * switch to our "no device" tab */ + msg_Dbg( VLCIntf, "eyetv device was removed" ); + setEyeTVUnconnected; + } + else if( [[o_notification name] isEqualToString: @"PluginQuit"] ) + { + /* switch to the "launch eyetv" tab */ + msg_Dbg( VLCIntf, "eyetv was terminated" ); + [self showCaptureView: o_eyetv_notLaunched_view]; + } + else if( [[o_notification name] isEqualToString: @"PluginInit"] ) + { + /* we got no device yet */ + msg_Dbg( VLCIntf, "eyetv was launched, no device yet" ); + setEyeTVUnconnected; + } + else + msg_Warn( VLCIntf, "unknown external notify '%s' received", [[o_notification name] UTF8String] ); +} + +/* little helper method, since this code needs to be run by multiple objects */ +- (void)setupChannelInfo +{ + /* set up channel selection */ + [o_eyetv_channels_pop removeAllItems]; + [o_eyetv_chn_bgbar setHidden: NO]; + [o_eyetv_chn_bgbar animate: self]; + [o_eyetv_chn_status_txt setStringValue: _NS("Retrieving Channel Info...")]; + [o_eyetv_chn_status_txt setHidden: NO]; + + /* retrieve info */ + NSEnumerator *channels = [[[VLCMain sharedInstance] getEyeTVController] allChannels]; + int x = -2; + [[[o_eyetv_channels_pop menu] addItemWithTitle: _NS("Composite input") + action: nil + keyEquivalent: @""] setTag:x++]; + [[[o_eyetv_channels_pop menu] addItemWithTitle: _NS("S-Video input") + action: nil + keyEquivalent: @""] setTag:x++]; + if( channels ) + { + NSString *channel; + [[o_eyetv_channels_pop menu] addItem: [NSMenuItem separatorItem]]; + while( channel = [channels nextObject] ) + { + /* we have to add items this way, because we accept duplicates + * additionally, we save a bit of time */ + [[[o_eyetv_channels_pop menu] addItemWithTitle: channel + action: nil + keyEquivalent: @""] setTag:++x]; + } + /* make Tuner the default */ + [o_eyetv_channels_pop selectItemWithTag:[[[VLCMain sharedInstance] getEyeTVController] currentChannel]]; + } + + /* clean up GUI */ + [o_eyetv_chn_bgbar setHidden: YES]; + [o_eyetv_chn_status_txt setHidden: YES]; } - (IBAction)subsChanged:(id)sender @@ -778,12 +1016,12 @@ static VLCOpen *_o_sharedMainInstance = nil; - (IBAction)subFileBrowse:(id)sender { NSOpenPanel *o_open_panel = [NSOpenPanel openPanel]; - + [o_open_panel setAllowsMultipleSelection: NO]; [o_open_panel setTitle: _NS("Open File")]; [o_open_panel setPrompt: _NS("Open")]; - if( [o_open_panel runModalForDirectory: nil + if( [o_open_panel runModalForDirectory: nil file: nil types: nil] == NSOKButton ) { NSString *o_filename = [[o_open_panel filenames] objectAtIndex: 0]; @@ -834,3 +1072,14 @@ static VLCOpen *_o_sharedMainInstance = nil; } @end + +@implementation VLCOpenTextField + +- (void)mouseDown:(NSEvent *)theEvent +{ + [[NSNotificationCenter defaultCenter] postNotificationName: @"VLCOpenTextFieldWasClicked" + object: self]; + [super mouseDown: theEvent]; +} + +@end