]> git.sesse.net Git - vlc/blob - modules/gui/macosx/wizard.h
* implemented a general, re-usable help-panel used by all 4 "More Info" buttons ...
[vlc] / modules / gui / macosx / wizard.h
1 /*****************************************************************************
2  * wizard.h: MacOS X Streaming Wizard
3  *****************************************************************************
4  * Copyright (C) 2005 VideoLAN
5  * $Id$
6  *
7  * Authors: Felix Kühne <fkuehne@users.sf.net> 
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  * 
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * VLCWizard 
26  *****************************************************************************/
27  
28 #import <Cocoa/Cocoa.h>
29
30 @interface VLCWizard : NSObject
31 {
32     IBOutlet id o_btn_backward;
33     IBOutlet id o_btn_cancel;
34     IBOutlet id o_btn_forward;
35     IBOutlet id o_t1_btn_mrInfo_strmg;
36     IBOutlet id o_t1_btn_mrInfo_trnscd;
37     IBOutlet id o_t1_rdo_streaming;
38     IBOutlet id o_t1_rdo_transcode;
39     IBOutlet id o_t1_txt_notice;
40     IBOutlet id o_t1_txt_text;
41     IBOutlet id o_t1_txt_title;
42     IBOutlet id o_t2_box_prtExtrct;
43     IBOutlet id o_t2_ckb_enblPartExtrct;
44     IBOutlet id o_t2_btn_chooseFile;
45     IBOutlet id o_t2_fld_pathToNewStrm;
46     IBOutlet id o_t2_fld_prtExtrctFrom;
47     IBOutlet id o_t2_fld_prtExtrctTo;
48     IBOutlet id o_t2_rdo_exstPlstItm;
49     IBOutlet id o_t2_rdo_newStrm;
50     IBOutlet id o_t2_tbl_plst;
51     IBOutlet id o_t2_text;
52     IBOutlet id o_t2_title;
53     IBOutlet id o_t2_txt_prtExtrctFrom;
54     IBOutlet id o_t2_txt_prtExtrctTo;
55     IBOutlet id o_t3_box_dest;
56     IBOutlet id o_t3_box_strmgMthd;
57     IBOutlet id o_t3_fld_address;
58     IBOutlet id o_t3_matrix_stmgMhd;
59     IBOutlet id o_t3_txt_destInfo;
60     IBOutlet id o_t3_txt_text;
61     IBOutlet id o_t3_txt_title;
62     IBOutlet id o_t4_box_audio;
63     IBOutlet id o_t4_box_video;
64     IBOutlet id o_t4_ckb_audio;
65     IBOutlet id o_t4_ckb_video;
66     IBOutlet id o_t4_pop_audioBitrate;
67     IBOutlet id o_t4_pop_audioCodec;
68     IBOutlet id o_t4_pop_videoBitrate;
69     IBOutlet id o_t4_pop_videoCodec;
70     IBOutlet id o_t4_text;
71     IBOutlet id o_t4_title;
72     IBOutlet id o_t4_txt_audioBitrate;
73     IBOutlet id o_t4_txt_videoBitrate;
74     IBOutlet id o_t4_txt_audioCodec;
75     IBOutlet id o_t4_txt_videoCodec;
76     IBOutlet id o_t4_txt_hintAudio;
77     IBOutlet id o_t4_txt_hintVideo;
78     IBOutlet id o_t5_matrix_encap;
79     IBOutlet id o_t5_text;
80     IBOutlet id o_t5_title;
81     IBOutlet id o_t6_ckb_sap;
82     IBOutlet id o_t6_fld_sap;
83     IBOutlet id o_t6_fld_ttl;
84     IBOutlet id o_t6_text;
85     IBOutlet id o_t6_title;
86     IBOutlet id o_t6_txt_ttl;
87     IBOutlet id o_t6_btn_mrInfo_ttl;
88     IBOutlet id o_t6_btn_mrInfo_sap;
89     IBOutlet id o_t7_btn_chooseFile;
90     IBOutlet id o_t7_fld_filePath;
91     IBOutlet id o_t7_text;
92     IBOutlet id o_t7_title;
93     IBOutlet id o_t7_txt_saveFileTo;
94     IBOutlet id o_tab_pageHolder;
95     IBOutlet id o_wizard_window;
96         IBOutlet id o_wizardhelp_window;
97         IBOutlet id o_wh_txt_title;
98         IBOutlet id o_wh_txt_text;
99         IBOutlet id o_wh_btn_okay;
100 }
101 - (IBAction)cancelRun:(id)sender;
102 - (IBAction)nextTab:(id)sender;
103 - (IBAction)prevTab:(id)sender;
104 - (IBAction)t1_mrInfo_streaming:(id)sender;
105 - (IBAction)t1_mrInfo_transcode:(id)sender;
106 - (IBAction)t2_addNewStream:(id)sender;
107 - (IBAction)t2_chooseStreamOrPlst:(id)sender;
108 - (IBAction)t2_enableExtract:(id)sender;
109 - (IBAction)t3_addressEntered:(id)sender;
110 - (IBAction)t4_AudCdcChanged:(id)sender;
111 - (IBAction)t4_enblAudTrnscd:(id)sender;
112 - (IBAction)t4_enblVidTrnscd:(id)sender;
113 - (IBAction)t4_VidCdcChanged:(id)sender;
114 - (IBAction)t6_enblSapAnnce:(id)sender;
115 - (IBAction)t6_mrInfo_ttl:(id)sender;
116 - (IBAction)t6_mrInfo_sap:(id)sender;
117 - (IBAction)t7_selectTrnscdDestFile:(id)sender;
118 - (IBAction)wh_closeSheet:(id)sender;
119
120 + (VLCWizard *)sharedInstance;
121 - (void)showWizard;
122 @end