X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Fgui%2Fmacosx%2Fwizard.h;h=9e12232b8160c53d78ffebb75e34aa5cdebe4d25;hb=11db57b55bf2da16a178b65df57e628ae7470257;hp=e3a485588480c2af57ddb13e635acf9ff26e21d1;hpb=8e4bbaa9b45a8078e03a09f22e50db69ae1e5292;p=vlc diff --git a/modules/gui/macosx/wizard.h b/modules/gui/macosx/wizard.h index e3a4855884..9e12232b81 100644 --- a/modules/gui/macosx/wizard.h +++ b/modules/gui/macosx/wizard.h @@ -1,10 +1,10 @@ /***************************************************************************** * wizard.h: MacOS X Streaming Wizard ***************************************************************************** - * Copyright (C) 2005 the VideoLAN team + * Copyright (C) 2005-2006 the VideoLAN team * $Id$ * - * Authors: Felix Kühne + * Authors: 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 @@ -18,7 +18,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. *****************************************************************************/ /***************************************************************************** @@ -35,10 +35,6 @@ IBOutlet id o_btn_forward; IBOutlet id o_tab_pageHolder; IBOutlet id o_wizard_window; - IBOutlet id o_wizardhelp_window; - IBOutlet id o_wh_txt_title; - IBOutlet id o_wh_txt_text; - IBOutlet id o_wh_btn_okay; IBOutlet id o_playlist_wizard; /* page one ("Hello") */ @@ -105,6 +101,9 @@ IBOutlet id o_t6_txt_ttl; IBOutlet id o_t6_btn_mrInfo_ttl; IBOutlet id o_t6_btn_mrInfo_sap; + IBOutlet id o_t6_btn_mrInfo_local; + IBOutlet id o_t6_ckb_soverlay; + IBOutlet id o_t6_ckb_local; /* page seven ("Transcode 2") */ IBOutlet id o_t7_btn_chooseFile; @@ -112,6 +111,9 @@ IBOutlet id o_t7_text; IBOutlet id o_t7_title; IBOutlet id o_t7_txt_saveFileTo; + IBOutlet id o_t7_btn_mrInfo_local; + IBOutlet id o_t7_ckb_soverlay; + IBOutlet id o_t7_ckb_local; /* page eight ("Summary") */ IBOutlet id o_t8_fld_destination; @@ -123,8 +125,10 @@ IBOutlet id o_t8_fld_strmgMthd; IBOutlet id o_t8_fld_trnscdAudio; IBOutlet id o_t8_fld_trnscdVideo; + IBOutlet id o_t8_fld_soverlay; IBOutlet id o_t8_fld_ttl; IBOutlet id o_t8_fld_mrl; + IBOutlet id o_t8_fld_local; IBOutlet id o_t8_txt_destination; IBOutlet id o_t8_txt_encapFormat; IBOutlet id o_t8_txt_inputStream; @@ -136,8 +140,10 @@ IBOutlet id o_t8_txt_title; IBOutlet id o_t8_txt_trnscdAudio; IBOutlet id o_t8_txt_trnscdVideo; + IBOutlet id o_t8_txt_soverlay; IBOutlet id o_t8_txt_ttl; IBOutlet id o_t8_txt_mrl; + IBOutlet id o_t8_txt_local; NSMutableDictionary * o_userSelections; NSArray * o_videoCodecs; @@ -145,6 +151,8 @@ NSArray * o_encapFormats; NSArray * o_strmgMthds; NSString * o_opts; + + BOOL b_keepSettingsOrNot; } - (IBAction)cancelRun:(id)sender; - (IBAction)nextTab:(id)sender; @@ -162,8 +170,8 @@ - (IBAction)t6_enblSapAnnce:(id)sender; - (IBAction)t6_mrInfo_ttl:(id)sender; - (IBAction)t6_mrInfo_sap:(id)sender; +- (IBAction)t67_mrInfo_local:(id)sender; - (IBAction)t7_selectTrnscdDestFile:(id)sender; -- (IBAction)wh_closeSheet:(id)sender; + (VLCWizard *)sharedInstance; @@ -173,5 +181,7 @@ - (void)createOpts; - (void)rebuildCodecMenus; - (id)getPlaylistWizard; +- (void)initWithExtractValuesFrom: (NSString *)from to: (NSString *)to \ + ofItem: (NSString *)item; @end