X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Fgui%2Fmacosx%2Fopen.h;h=d71d4d6aba5686745a33029ff8373c6aed85cae2;hb=26b332584348ab9ed62ca0e629e538204051fe90;hp=961573ca68f584c80b423f8852662cd990906b20;hpb=f5932b756eba0ddac3b84740d0b94e6869b99b28;p=vlc diff --git a/modules/gui/macosx/open.h b/modules/gui/macosx/open.h index 961573ca68..d71d4d6aba 100644 --- a/modules/gui/macosx/open.h +++ b/modules/gui/macosx/open.h @@ -1,12 +1,13 @@ /***************************************************************************** * open.h: MacOS X module for vlc ***************************************************************************** - * Copyright (C) 2002-2003 VideoLAN - * $Id: open.h,v 1.17 2004/01/25 17:01:57 murray Exp $ + * Copyright (C) 2002-2006 the VideoLAN team + * $Id$ * * Authors: Jon Lech Johansen * Christophe Massiot * Derk-Jan Hartman + * 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 @@ -20,7 +21,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. *****************************************************************************/ NSArray *GetEjectableMediaOfClass( const char *psz_class ); @@ -69,6 +70,7 @@ NSArray *GetEjectableMediaOfClass( const char *psz_class ); IBOutlet id o_net_udpm_port_stp; IBOutlet id o_net_http_url; IBOutlet id o_net_http_url_lbl; + IBOutlet id o_net_timeshift_ckbox; IBOutlet id o_file_sub_ckbox; IBOutlet id o_file_sub_btn_settings; @@ -82,29 +84,42 @@ NSArray *GetEjectableMediaOfClass( const char *psz_class ); IBOutlet id o_file_sub_fps; IBOutlet id o_file_sub_fps_lbl; IBOutlet id o_file_sub_fps_stp; + IBOutlet id o_file_sub_encoding_pop; + IBOutlet id o_file_sub_encoding_lbl; + IBOutlet id o_file_sub_size_pop; + IBOutlet id o_file_sub_size_lbl; + IBOutlet id o_file_sub_align_pop; + IBOutlet id o_file_sub_align_lbl; IBOutlet id o_file_sub_ok_btn; - + IBOutlet id o_file_sub_font_box; + IBOutlet id o_file_sub_file_box; + IBOutlet id o_output_ckbox; IBOutlet id o_sout_options; + + BOOL b_autoplay; } ++ (VLCOpen *)sharedInstance; + +- (void)setSubPanel; - (void)openTarget:(int)i_type; - (void)tabView:(NSTabView *)o_tv didSelectTabViewItem:(NSTabViewItem *)o_tvi; -- (IBAction)openFileGeneric:(id)sender; +- (void)openFileGeneric; - (void)openFilePathChanged:(NSNotification *)o_notification; - (IBAction)openFileBrowse:(id)sender; - (void) pathChosenInPanel: (NSOpenPanel *) sheet withReturn:(int)returnCode contextInfo:(void *)contextInfo; - (IBAction)openFileStreamChanged:(id)sender; -- (IBAction)openDisc:(id)sender; +- (void)openDisc; - (IBAction)openDiscTypeChanged:(id)sender; - (IBAction)openDiscStepperChanged:(id)sender; - (void)openDiscInfoChanged:(NSNotification *)o_notification; - (IBAction)openDiscMenusChanged:(id)sender; - (IBAction)openVTSBrowse:(id)sender; -- (IBAction)openNet:(id)sender; +- (void)openNet; - (IBAction)openNetModeChanged:(id)sender; - (IBAction)openNetStepperChanged:(id)sender; - (void)openNetInfoChanged:(NSNotification *)o_notification; @@ -120,6 +135,5 @@ NSArray *GetEjectableMediaOfClass( const char *psz_class ); - (IBAction)panelCancel:(id)sender; - (IBAction)panelOk:(id)sender; -- (IBAction)openFile:(id)sender; - +- (void)openFile; @end