]> git.sesse.net Git - vlc/blob - modules/gui/macosx/wizard.m
* minor fixes to the OSX-wizard (refs #13)
[vlc] / modules / gui / macosx / wizard.m
1 /*****************************************************************************
2  * wizard.m: MacOS X Streaming Wizard
3  *****************************************************************************
4  * Copyright (C) 2005 the VideoLAN team
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 /*****************************************************************************
26  * Note: this code is partially based upon ../wxwindows/wizard.cpp and
27  *         ../wxwindows/streamdata.h; both written by Clément Stenac.
28  *****************************************************************************/
29
30 /* TODO:
31     - fill the playlist-table on t2
32     - see FIXME's
33 */
34
35
36 /*****************************************************************************
37  * Preamble
38  *****************************************************************************/
39 #import "wizard.h"
40 #import "intf.h"
41 #import "network.h"
42 #import "playlist.h"
43
44 /*****************************************************************************
45  * VLCWizard implementation
46  *****************************************************************************/
47
48 @implementation VLCWizard
49
50 static VLCWizard *_o_sharedInstance = nil;
51
52 + (VLCWizard *)sharedInstance
53 {
54     return _o_sharedInstance ? _o_sharedInstance : [[self alloc] init];
55 }
56
57 - (id)init
58 {
59     if (_o_sharedInstance) {
60         [self dealloc];
61     } else {
62         _o_sharedInstance = [super init];
63     }
64
65     return _o_sharedInstance;
66 }
67
68 - (void)dealloc
69 {
70     [o_userSelections release];
71     [o_videoCodecs release];
72     [o_audioCodecs release];
73     [o_encapFormats release];
74     [super dealloc];
75 }
76
77 - (void)awakeFromNib
78 {
79     /* some minor cleanup */
80     [o_t2_tbl_plst setEnabled:NO];
81     [o_wizardhelp_window setExcludedFromWindowsMenu:YES];
82     o_userSelections = [[NSMutableDictionary alloc] init];
83     [o_btn_backward setEnabled:NO];
84
85     /* add audio-bitrates for transcoding */
86     NSArray * audioBitratesArray;
87     audioBitratesArray = [NSArray arrayWithObjects: @"512", @"256", @"192", \
88         @"128", @"64", @"32", @"16", nil ];
89     [o_t4_pop_audioBitrate removeAllItems];
90     [o_t4_pop_audioBitrate addItemsWithTitles: audioBitratesArray];
91     [o_t4_pop_audioBitrate selectItemWithTitle: @"192"];
92
93     /* add video-bitrates for transcoding */
94     NSArray * videoBitratesArray;
95     videoBitratesArray = [NSArray arrayWithObjects: @"3072", @"2048", @"1024", \
96         @"768", @"512", @"256", @"192", @"128", @"64", @"32", @"16", nil ];
97     [o_t4_pop_videoBitrate removeAllItems];
98     [o_t4_pop_videoBitrate addItemsWithTitles: videoBitratesArray];
99     [o_t4_pop_videoBitrate selectItemWithTitle: @"1024"];
100
101     /* fill 2 global arrays with arrays containing all codec-related information
102      * - one array per codec named by its short name to define the encap-compability,
103      *     cmd-names, real names, more info in the order: realName, shortName,
104      *     moreInfo, encaps */
105     NSArray * o_mp1v;
106     NSArray * o_mp2v;
107     NSArray * o_mp4v;
108     NSArray * o_div1;
109     NSArray * o_div2;
110     NSArray * o_div3;
111     NSArray * o_h263;
112     NSArray * o_h264;
113     NSArray * o_wmv1;
114     NSArray * o_wmv2;
115     NSArray * o_mjpg;
116     NSArray * o_theo;
117     NSArray * o_dummyVid;
118     o_mp1v = [NSArray arrayWithObjects: @"MPEG-1 Video", @"mp1v", \
119         _NS("MPEG-1 Video codec (usable with MPEG PS, MPEG TS, MPEG1, OGG " \
120         "and RAW)"), @"MUX_PS", @"MUX_TS", @"MUX_MPEG", @"MUX_OGG", @"MUX_RAW", \
121         @"NO", @"NO", @"NO", @"NO", nil];
122     o_mp2v = [NSArray arrayWithObjects: @"MPEG-2 Video", @"mp2v", \
123         _NS("MPEG-2 Video codec (usable with MPEG PS, MPEG TS, MPEG1, OGG " \
124         "and RAW)"), @"MUX_PS", @"MUX_TS", @"MUX_MPEG", @"MUX_OGG", @"MUX_RAW", \
125         @"NO", @"NO", @"NO", @"NO", nil];
126     o_mp4v = [NSArray arrayWithObjects: @"MPEG-4 Video", @"mp4v", \
127         _NS("MPEG-4 Video codec (useable with MPEG PS, MPEG TS, MPEG1, ASF, " \
128         "MP4, OGG and RAW)"), @"MUX_PS", @"MUX_TS", @"MUX_MPEG", @"MUX_ASF", \
129         @"MUX_MP4", @"MUX_OGG", @"MUX_RAW", @"NO", @"NO", nil];
130     o_div1 = [NSArray arrayWithObjects: @"DIVX 1", @"DIV1", \
131         _NS("DivX first version (useable with MPEG TS, MPEG1, ASF and OGG)"), \
132         @"MUX_TS", @"MUX_MPEG", @"MUX_ASF", @"MUX_OGG", @"NO", @"NO", @"NO", \
133         @"NO", @"NO", nil];
134     o_div2 = [NSArray arrayWithObjects: @"DIVX 2", @"DIV2", \
135         _NS("DivX second version (useable with MPEG TS, MPEG1, ASF and OGG)"), \
136         @"MUX_TS", @"MUX_MPEG", @"MUX_ASF", @"MUX_OGG", @"NO", @"NO", @"NO", \
137         @"NO", @"NO", nil];
138     o_div3 = [NSArray arrayWithObjects: @"DIVX 3", @"DIV3", \
139         _NS("DivX third version (useable with MPEG TS, MPEG1, ASF and OGG)"), \
140         @"MUX_TS", @"MUX_MPEG", @"MUX_ASF", @"MUX_OGG", @"NO", @"NO", @"NO", \
141         @"NO", @"NO", nil];
142     o_h263 = [NSArray arrayWithObjects: @"H 263", @"H263", \
143         _NS("H263 is a video codec optimized for videoconference " \
144         "(low rates, useable with MPEG TS)"), @"MUX_TS", @"NO", @"NO", @"NO", \
145         @"NO", @"NO", @"NO", @"NO", @"NO", nil];
146     o_h264 = [NSArray arrayWithObjects: @"H 264", @"H264", \
147         _NS("H264 is a new video codec (useable with MPEG TS and MP4)"), \
148         @"MUX_TS", @"MUX_MP4", @"NO", @"NO", @"NO", @"NO", @"NO", @"NO", \
149         @"NO", nil];
150     o_wmv1 = [NSArray arrayWithObjects: @"WMV 1", @"WMV1", \
151         _NS("WMV (Windows Media Video) 1 (useable with MPEG TS, MPEG1, ASF and " \
152         "OGG)"), @"MUX_TS", @"MUX_MPEG", @"MUX_ASF", @"MUX_OGG", @"NO", @"NO", \
153         @"NO", @"NO", @"NO", nil];
154     o_wmv2 = [NSArray arrayWithObjects: @"WMV 2", @"WMV2", \
155         _NS("WMV (Windows Media Video) 2 (useable with MPEG TS, MPEG1, ASF and " \
156         "OGG)"), @"MUX_TS", @"MUX_MPEG", @"MUX_ASF", @"MUX_OGG", @"NO", @"NO", \
157         @"NO", @"NO", @"NO", nil];
158     o_mjpg = [NSArray arrayWithObjects: @"MJPEG", @"MJPG", \
159         _NS("MJPEG consists of a series of JPEG pictures (useable with MPEG TS," \
160         " MPEG1, ASF and OGG)"), @"MUX_TS", @"MUX_MPEG", @"MUX_ASF", @"MUX_OGG", \
161         @"NO", @"NO", @"NO", @"NO", @"NO", nil];
162     o_theo = [NSArray arrayWithObjects: @"Theora", @"theo", \
163         _NS("Theora is a free general-purpose codec (useable with MPEG TS)"), \
164         @"MUX_TS", @"NO", @"NO", @"NO", @"NO", @"NO", @"NO", @"NO", @"NO", nil];
165     o_dummyVid = [NSArray arrayWithObjects: @"Dummy", @"dummy", \
166         _NS("Dummy codec (do not transcode, useable with all encapsulation " \
167         "formats)"), @"MUX_PS", @"MUX_TS", @"MUX_MPEG", @"MUX_ASF", @"MUX_MP4", \
168         @"MUX_OGG", @"MUX_WAV", @"MUX_RAW", @"MUX_MOV", nil];
169     o_videoCodecs = [[NSArray alloc] initWithObjects: o_mp1v, o_mp2v, o_mp4v, \
170         o_div1, o_div2, o_div3, o_h263, o_h264, o_wmv1, o_wmv2, o_mjpg, o_theo, \
171         o_dummyVid, nil];
172     [o_t4_pop_videoCodec removeAllItems];
173     unsigned int x;
174     x = 0;
175     while (x != [o_videoCodecs count])
176     {
177         [o_t4_pop_videoCodec addItemWithTitle:[[o_videoCodecs objectAtIndex:x] \
178             objectAtIndex:0]];
179         x = (x + 1);
180     }
181
182     NSArray * o_mpga;
183     NSArray * o_mp3;
184     NSArray * o_mp4a;
185     NSArray * o_a52;
186     NSArray * o_vorb;
187     NSArray * o_flac;
188     NSArray * o_spx;
189     NSArray * o_s16l;
190     NSArray * o_fl32;
191     NSArray * o_dummyAud;
192     o_mpga = [NSArray arrayWithObjects: @"MPEG Audio", @"mpga", \
193         _NS("The standard MPEG audio (1/2) format (useable with MPEG PS, MPEG TS, " \
194         "MPEG1, ASF, OGG and RAW)"), @"MUX_PS", @"MUX_TS", @"MUX_MPEG", \
195         @"MUX_ASF", @"MUX_OGG", @"MUX_RAW", @"-1", @"-1", @"-1", nil];
196     o_mp3 = [NSArray arrayWithObjects: @"MP3", @"mp3", \
197         _NS("MPEG Audio Layer 3 (useable with MPEG PS, MPEG TS, MPEG1, ASF, OGG " \
198         "and RAW)"), @"MUX_PS", @"MUX_TS", @"MUX_MPEG", @"MUX_ASF", @"MUX_OGG", \
199         @"MUX_RAW", @"-1", @"-1", @"-1", nil];
200     o_mp4a = [NSArray arrayWithObjects: @"MPEG 4 Audio", @"mp4a", \
201         _NS("Audio format for MPEG4 (useable with MPEG TS and MPEG4)"), @"MUX_TS", \
202         @"MUX_MP4", @"-1", @"-1", @"-1", @"-1", @"-1", @"-1", @"-1", nil];
203     o_a52 = [NSArray arrayWithObjects: @"A/52", @"a52", 
204         _NS("DVD audio format (useable with MPEG PS, MPEG TS, MPEG1, ASF, OGG " \
205         "and RAW)"), @"MUX_PS", @"MUX_TS", @"MUX_MPEG", @"MUX_ASF", @"MUX_OGG", \
206         @"MUX_RAW", @"-1", @"-1", @"-1", nil];
207     o_vorb = [NSArray arrayWithObjects: @"Vorbis", @"vorb", \
208         _NS("Vorbis is a free audio codec (useable with OGG)"), @"MUX_OGG", \
209         @"-1",  @"-1", @"-1", @"-1", @"-1", @"-1", @"-1", @"-1", nil];
210     o_flac = [NSArray arrayWithObjects: @"FLAC", @"flac", \
211         _NS("FLAC is a lossless audio codec (useable with OGG and RAW)"), \
212         @"MUX_OGG", @"MUX_RAW", @"-1", @"-1", @"-1", @"-1", @"-1", @"-1", \
213         @"-1", nil];
214     o_spx = [NSArray arrayWithObjects: @"Speex", @"spx", \
215         _NS("A free audio codec dedicated to compression of voice (useable " \
216         "with OGG"), @"MUX_OGG", @"-1", @"-1", @"-1", @"-1", @"-1", @"-1", \
217         @"-1", @"-1", nil];
218     o_s16l = [NSArray arrayWithObjects: @"Uncompressed, integer", @"s16l", \
219         _NS("Uncompressed audio samples (useable with WAV)"), @"MUX_WAV", \
220         @"-1", @"-1", @"-1", @"-1", @"-1", @"-1", @"-1", @"-1", nil];
221     o_fl32 = [NSArray arrayWithObjects: @"Uncompressed, floating", @"fl32", \
222         _NS("Uncompressed audio samples (useable with WAV)"), @"MUX_WAV", \
223         @"-1", @"-1", @"-1", @"-1", @"-1", @"-1", @"-1", @"-1", nil];
224     o_dummyAud = [NSArray arrayWithObjects: @"Dummy", @"dummy", \
225         _NS("Dummy codec (do not transcode, useable with all encapsulation " \
226         "formats)"), @"MUX_PS", @"MUX_TS", @"MUX_MPEG", @"MUX_ASF", @"MUX_MP4", \
227         @"MUX_OGG", @"MUX_RAW", @"MUX_MOV", @"MUX_WAV", nil];
228     o_audioCodecs = [[NSArray alloc] initWithObjects: o_mpga, o_mp3, o_mp4a, \
229         o_a52, o_vorb, o_flac, o_spx, o_s16l, o_fl32, o_dummyAud, nil];
230     [o_t4_pop_audioCodec removeAllItems];
231     x = 0;
232     while (x != [o_audioCodecs count])
233     {
234         [o_t4_pop_audioCodec addItemWithTitle:[[o_audioCodecs objectAtIndex:x] objectAtIndex:0]];
235         x = (x + 1);
236     }
237
238
239     /* fill another global array with all information about the encap-formats
240      * note that the order of the formats inside the g. array is the same as on
241      * the encap-tab */
242     NSArray * o_ps;
243     NSArray * o_ts;
244     NSArray * o_mpeg;
245     NSArray * o_ogg;
246     NSArray * o_raw;
247     NSArray * o_asf;
248     NSArray * o_avi;
249     NSArray * o_mp4;
250     NSArray * o_mov;
251     NSArray * o_wav;
252     o_ps = [NSArray arrayWithObjects: @"ps", @"MPEG PS", \
253         _NS("MPEG Program Stream"), nil];
254     o_ts = [NSArray arrayWithObjects: @"ts", @"MPEG TS", \
255         _NS("MPEG Transport Stream"), nil];
256     o_mpeg = [NSArray arrayWithObjects: @"ps", @"MPEG 1", \
257         _NS("MPEG 1 Format"), nil];
258     o_ogg = [NSArray arrayWithObjects: @"ogg", @"OGG", @"OGG", nil];
259     o_raw = [NSArray arrayWithObjects: @"raw", @"RAW", @"RAW", nil];
260     o_asf = [NSArray arrayWithObjects: @"asf", @"ASF", @"ASF", nil];
261     o_avi = [NSArray arrayWithObjects: @"avi", @"AVI", @"AVI", nil];
262     o_mp4 = [NSArray arrayWithObjects: @"mp4", @"MP4", @"MPEG4", nil];
263     o_mov = [NSArray arrayWithObjects: @"mov", @"MOV", @"MOV", nil];
264     o_wav = [NSArray arrayWithObjects: @"wav", @"WAV", @"WAV", nil];
265     o_encapFormats = [[NSArray alloc] initWithObjects: o_ps, o_ts, o_mpeg, \
266         o_ogg, o_raw, o_asf, o_avi, o_mp4, o_mov, o_wav, nil];
267
268     /* yet another array on streaming methods including help texts */
269     NSArray * o_http;
270     NSArray * o_udp_uni;
271     NSArray * o_udp_multi;
272     o_http = [NSArray arrayWithObjects: @"http", @"HTTP", _NS("Enter the local " \
273         "addresses you want to listen to. Do not enter anything if you want to " \
274         "listen to all adresses or if you don't understand. This is generally " \
275         "the best thing to do. Other computers can then access the stream at " \
276         "http://yourip:8080 by default.") , _NS("Use this to stream to several " \
277         "computers. This method is less efficient, as the server needs to send " \
278         "the stream several times."), nil];
279     o_udp_multi = [NSArray arrayWithObjects: @"udp", @"UDP-Multicast", _NS("Enter " \
280         "the multicast address to stream to in this field. This must be an IP " \
281         "address between 224.0.0.0 and 239.255.255.255. For a private use, " \
282         "enter an address beginning with 239.255."), _NS("Use this to stream " \
283         "to a dynamic group of computers on a multicast-enabled network. This " \
284         "is the most efficient method to stream to several computers, but it " \
285         "does not work over Internet."), nil];
286     o_udp_uni = [NSArray arrayWithObjects: @"udp", @"UDP-Unicast", _NS("Enter " \
287         "the address of the computer to stream to."), _NS("Use this to stream " \
288         "to a single computer."), nil];
289     o_strmgMthds = [[NSArray alloc] initWithObjects: o_http, o_udp_multi, o_udp_uni, nil];
290 }
291
292 - (void)showWizard
293 {
294     /* just present the window to the user */
295     [o_tab_pageHolder selectFirstTabViewItem:self];
296
297     [self resetWizard];
298
299     [o_wizard_window center];
300     [o_wizard_window displayIfNeeded];
301     [o_wizard_window makeKeyAndOrderFront:nil];
302 }
303
304 - (void)resetWizard
305 {
306     /* reset the wizard-window to its default values */
307
308     [o_userSelections removeAllObjects];
309     [o_t1_matrix_strmgOrTrnscd selectCellAtRow:0 column:0];
310     [[o_t1_matrix_strmgOrTrnscd cellAtRow:1 column:0] setState: NSOffState];
311     [o_btn_forward setTitle: _NS("Next")];
312
313     /* "Input" */
314     [o_t2_fld_pathToNewStrm setStringValue: @""];
315     [o_t2_ckb_enblPartExtrct setState: NSOffState];
316     [self t2_enableExtract:nil];
317     [o_t2_matrix_inputSourceType selectCellAtRow:0 column:0];
318     [[o_t2_matrix_inputSourceType cellAtRow:1 column:0] setState: NSOffState];
319     [o_t2_fld_pathToNewStrm setEnabled:YES];
320     [o_t2_btn_chooseFile setEnabled:YES];
321     [o_t2_tbl_plst setEnabled:NO];
322
323     /* "Streaming 1" */
324     [o_t3_fld_address setStringValue: @""];
325     [o_t3_matrix_stmgMhd selectCellAtRow:0 column:0];
326     [[o_t3_matrix_stmgMhd cellAtRow:1 column:1] setState: NSOffState];
327     [[o_t3_matrix_stmgMhd cellAtRow:1 column:2] setState: NSOffState];
328
329     /* "Transcode 1" */
330     [o_t4_ckb_audio setState: NSOffState];
331     [o_t4_ckb_video setState: NSOffState];
332     [self t4_enblVidTrnscd:nil];
333     [self t4_enblAudTrnscd:nil];
334
335     /* "Streaming 2" */
336     [o_t6_fld_ttl setStringValue: @"1"];
337     [o_t6_ckb_sap setState: NSOffState];
338     [self t6_enblSapAnnce:nil];
339
340     /* "Transcode 2" */
341     [o_t7_fld_filePath setStringValue: @""];
342 }
343
344 - (void)initStrings
345 {
346     /* localise all strings to the users lang */
347     /* method is called from intf.m (in method openWizard) */
348
349     /* general items */
350     [o_btn_backward setTitle: _NS("Back")];
351     [o_btn_cancel setTitle: _NS("Cancel")];
352     [o_btn_forward setTitle: _NS("Next")];
353     [o_wizard_window setTitle: _NS("Streaming/Transcoding Wizard")];
354
355     /* page one ("Hello") */
356     [o_t1_txt_title setStringValue: _NS("Streaming/Transcoding Wizard")];
357     [o_t1_txt_text setStringValue: _NS("This wizard helps you to stream, " \
358         "transcode or save a stream.")];
359     [o_t1_btn_mrInfo_strmg setTitle: _NS("More Info")];
360     [o_t1_btn_mrInfo_trnscd setTitle: _NS("More Info")];
361     [o_t1_txt_notice setStringValue: _NS("This wizard only gives access to " \
362         "a small subset of VLC's streaming and transcoding capabilities. " \
363         "Use the Open and Stream Output dialogs to get all of them.")];
364     [[o_t1_matrix_strmgOrTrnscd cellAtRow:0 column:0] setTitle: _NS("Stream " \
365         "to network")];
366     [[o_t1_matrix_strmgOrTrnscd cellAtRow:1 column:0] setTitle: _NS("" \
367         "Transcode/Save to file")];
368
369     /* page two ("Input") */
370     [o_t2_title setStringValue: _NS("Choose input")];
371     [o_t2_text setStringValue: _NS("Choose here your input stream.")];
372     [[o_t2_matrix_inputSourceType cellAtRow:0 column:0] setTitle:  \
373         _NS("Select a stream")];
374     [[o_t2_matrix_inputSourceType cellAtRow:1 column:0] setTitle: \
375         _NS("Existing playlist item")];
376     [o_t2_btn_chooseFile setTitle: _NS("Choose...")];
377     [[[o_t2_tbl_plst tableColumnWithIdentifier:@"1"] headerCell] \
378         setStringValue: _NS("Title")];
379     [[[o_t2_tbl_plst tableColumnWithIdentifier:@"2"] headerCell] \
380         setStringValue: _NS("Author")];
381     [o_t2_box_prtExtrct setTitle: _NS("Partial Extract")];
382     [o_t2_ckb_enblPartExtrct setTitle: _NS("Enable")];
383     [o_t2_ckb_enblPartExtrct setToolTip: _NS("Use this to read only a part of " \
384         "the stream. You must be able to control the incoming stream " \
385         "(for example, a file or a disc, but not an UDP network stream.)\n" \
386         "Enter the starting and ending times (in seconds).")];
387     [o_t2_txt_prtExtrctFrom setStringValue: _NS("From")];
388     [o_t2_txt_prtExtrctTo setStringValue: _NS("To")];
389
390     /* page three ("Streaming 1") */
391     [o_t3_txt_title setStringValue: _NS("Streaming")];
392     [o_t3_txt_text setStringValue: _NS("In this page, you will select how " \
393         "your input stream will be sent.")];
394     [o_t3_box_dest setTitle: _NS("Destination")];
395     [o_t3_box_strmgMthd setTitle: _NS("Streaming method")];
396     [o_t3_txt_destInfo setStringValue: _NS("Enter the address of the computer " \
397         "to stream to.")];
398     [[o_t3_matrix_stmgMhd cellAtRow:1 column:0] setTitle: _NS("UDP Unicast")];
399     [[o_t3_matrix_stmgMhd cellAtRow:1 column:1] setTitle: _NS("UDP Multicast")];
400     [o_t3_txt_strgMthdInfo setStringValue: _NS("Use this to stream to a single " \
401         "computer.")];
402
403     /* page four ("Transcode 1") */
404     [o_t4_title setStringValue: _NS("Transcode")];
405     [o_t4_text setStringValue: _NS("If you want to change the compression " \
406         "format of the audio or video tracks, fill in this page. (If you only " \
407         "want to change the container format, proceed to next page.)")];
408     [o_t4_box_audio setTitle: _NS("Audio")];
409     [o_t4_box_video setTitle: _NS("Video")];
410     [o_t4_ckb_audio setTitle: _NS("Transcode audio")];
411     [o_t4_ckb_video setTitle: _NS("Transcode video")];
412     [o_t4_txt_videoBitrate setStringValue: _NS("Bitrate (kb/s)")];
413     [o_t4_txt_videoCodec setStringValue: _NS("Codec")];
414     [o_t4_txt_hintAudio setStringValue: _NS("If your stream has audio and you " \
415         "want to transcode it, enable this.")];
416     [o_t4_txt_hintVideo setStringValue: _NS("If your stream has video and you " \
417         "want to transcode it, enable this.")];
418
419     /* page five ("Encap") */
420     [o_t5_title setStringValue: _NS("Encapsulation format")];
421     [o_t5_text setStringValue: _NS("In this page, you will select how the " \
422         "stream will be encapsulated. Depending on the choices you made, all " \
423                      "formats won't be available.")];
424
425     /* page six ("Streaming 2") */
426     [o_t6_title setStringValue: _NS("Additional streaming options")];
427     [o_t6_text setStringValue: _NS("In this page, you will define a few " \
428                               "additional parameters for your stream.")];
429     [o_t6_txt_ttl setStringValue: _NS("Time-To-Live (TTL)")];
430     [o_t6_btn_mrInfo_ttl setTitle: _NS("More Info")];
431     [o_t6_ckb_sap setTitle: _NS("SAP Announce")];
432     [o_t6_btn_mrInfo_sap setTitle: _NS("More Info")];
433
434     /* page seven ("Transcode 2") */
435     [o_t7_title setStringValue: _NS("Additional transcode options")];
436     [o_t7_text setStringValue: _NS("In this page, you will define a few " \
437                               "additionnal parameters for your transcoding.")];
438     [o_t7_txt_saveFileTo setStringValue: _NS("Select the file to save to")];
439     [o_t7_btn_chooseFile setTitle: _NS("Choose...")];
440
441     /* page eight ("Summary") */
442     [o_t8_txt_text setStringValue: _NS("This page lists all your selections. " \
443         "Click \"Finish\" to start your streaming or transcoding.")];
444     [o_t8_txt_title setStringValue: _NS("Summary")];
445     [o_t8_txt_destination setStringValue: [_NS("Destination") \
446         stringByAppendingString: @":"]];
447     [o_t8_txt_encapFormat setStringValue: [_NS("Encap. format") \
448         stringByAppendingString: @":"]];
449     [o_t8_txt_inputStream setStringValue: [_NS("Input stream") \
450         stringByAppendingString: @":"]];
451     [o_t8_txt_partExtract setStringValue: [_NS("Partial Extract") \
452         stringByAppendingString: @":"]];
453     [o_t8_txt_sap setStringValue: [_NS("SAP Announce") \
454         stringByAppendingString: @":"]];
455     [o_t8_txt_saveFileTo setStringValue: [_NS("Save file to") \
456         stringByAppendingString: @":"]];
457     [o_t8_txt_strmgMthd setStringValue: [_NS("Streaming method") \
458         stringByAppendingString: @":"]];
459     [o_t8_txt_trnscdAudio setStringValue: [_NS("Transcode audio") \
460         stringByAppendingString: @":"]];
461     [o_t8_txt_trnscdVideo setStringValue: [_NS("Transcode video") \
462         stringByAppendingString: @":"]];
463
464     /* wizard help window */
465     [o_wh_btn_okay setTitle: _NS("OK")];
466 }
467
468 - (IBAction)cancelRun:(id)sender
469 {
470     [o_wizard_window close];
471 }
472
473 - (IBAction)nextTab:(id)sender
474 {
475     if ([[[o_tab_pageHolder selectedTabViewItem] label] isEqualToString: @"Hello"])
476     {
477         /* check whether the user wants to stream or just to transcode;
478          * store information for later usage */
479         NSString *o_mode;
480         o_mode = [[o_t1_matrix_strmgOrTrnscd selectedCell] title];
481         if( [o_mode isEqualToString: _NS("Stream to network")] )
482         {
483             [o_userSelections setObject:@"strmg" forKey:@"trnscdOrStrmg"];
484         }else{
485             [o_userSelections setObject:@"trnscd" forKey:@"trnscdOrStrmg"];
486         }
487         [o_btn_backward setEnabled:YES];
488         [o_tab_pageHolder selectTabViewItemAtIndex:1];
489
490         /* Fill the playlist with current playlist items */
491         [o_playlist_wizard reloadOutlineView];
492
493     }
494     else if ([[[o_tab_pageHolder selectedTabViewItem] label] isEqualToString: @"Input"])
495     {
496         /* check whether partialExtract is enabled and store the values, if needed */
497         if ([o_t2_ckb_enblPartExtrct state] == NSOnState)
498         {
499             [o_userSelections setObject:@"YES" forKey:@"partExtract"];
500             [o_userSelections setObject:[o_t2_fld_prtExtrctFrom stringValue] \
501                 forKey:@"partExtractFrom"];
502             [o_userSelections setObject:[o_t2_fld_prtExtrctTo stringValue] \
503                 forKey:@"partExtractTo"];
504         }else{
505             [o_userSelections setObject:@"NO" forKey:@"partExtract"];
506         }
507
508         /* check whether we use an existing pl-item or add an new one;
509          * store the path or the index and set a flag.
510          * complain to the user if s/he didn't provide a path */
511         NSString *o_mode;
512         BOOL stop;
513         stop = NO;
514         o_mode = [[o_t2_matrix_inputSourceType selectedCell] title];
515         if( [o_mode isEqualToString: _NS("Select a stream")] )
516         {
517             [o_userSelections setObject:@"YES" forKey:@"newStrm"];
518             if ([[o_t2_fld_pathToNewStrm stringValue] isEqualToString: @""])
519             {
520                 /* set a flag that no file is selected */
521                 stop = YES;
522             }
523             else
524             {
525                 [o_userSelections setObject:[o_t2_fld_pathToNewStrm stringValue] \
526                     forKey:@"pathToStrm"];
527             }
528         }
529         else
530         {
531             if ([o_t2_tbl_plst selectedRow] != -1)
532             {
533                 playlist_item_t *p_item =
534                                     [o_playlist_wizard selectedPlaylistItem];
535                 if( p_item->i_children <= 0 )
536                 {
537                     [o_userSelections setObject: [NSString stringWithFormat:
538                         @"%s", p_item->input.psz_uri] forKey:@"pathToStrm"];
539                 }
540                 else
541                 stop = YES;
542             } else {
543                 /* set a flag that no item is selected */
544                 stop = YES;
545             }
546         }
547
548         /* show either "Streaming 1" or "Transcode 1" to the user */
549         if (stop == NO)
550         {
551             if ([[o_userSelections objectForKey:@"trnscdOrStrmg"] \
552                 isEqualToString:@"strmg"])
553             {
554                 /* we are streaming */
555                 [o_tab_pageHolder selectTabViewItemAtIndex:2];
556             }else{
557                 /* we are just transcoding */
558                 [o_tab_pageHolder selectTabViewItemAtIndex:3];
559             }
560         } else {
561             /* show a sheet that the user didn't select a file */
562             NSBeginInformationalAlertSheet(_NS("No input selected"), \
563                 _NS("OK"), @"", @"", o_wizard_window, nil, nil, nil, nil, \
564                 _NS("You selected neither a new stream nor a valid playlist " \
565                 "item. VLC is unable to guess, which input you want use. "\
566                 "\n\n Choose one before going to the next page."));
567         }
568     }
569     else if ([[[o_tab_pageHolder selectedTabViewItem] label] isEqualToString: \
570         @"Streaming 1"])
571     {
572         /* check which streaming method is selected and store it */
573         NSString *o_mode;
574         o_mode = [[o_t3_matrix_stmgMhd selectedCell] title];
575         if( [o_mode isEqualToString: @"HTTP"] )
576         {
577             [o_userSelections setObject:@"0" forKey:@"stmgMhd"];
578             /* enable MPEG PS, MPEG TS, MPEG 1, OGG, RAW and ASF; select MPEG PS */
579             [[o_t5_matrix_encap cellAtRow:0 column:0] setEnabled:YES];
580             [[o_t5_matrix_encap cellAtRow:1 column:0] setEnabled:YES];
581             [[o_t5_matrix_encap cellAtRow:2 column:0] setEnabled:YES];
582             [[o_t5_matrix_encap cellAtRow:3 column:0] setEnabled:YES];
583             [[o_t5_matrix_encap cellAtRow:4 column:0] setEnabled:YES];
584             [[o_t5_matrix_encap cellAtRow:5 column:0] setEnabled:YES];
585             [[o_t5_matrix_encap cellAtRow:6 column:0] setEnabled:NO];
586             [[o_t5_matrix_encap cellAtRow:7 column:0] setEnabled:NO];
587             [[o_t5_matrix_encap cellAtRow:8 column:0] setEnabled:NO];
588             [[o_t5_matrix_encap cellAtRow:9 column:0] setEnabled:NO];
589             [o_t5_matrix_encap selectCellAtRow:0 column:0];
590         } else {
591             if( [o_mode isEqualToString: _NS("UDP Unicast")] )
592             {
593                 [o_userSelections setObject:@"2" forKey:@"stmgMhd"];
594             } else {
595                 [o_userSelections setObject:@"1" forKey:@"stmgMhd"];
596             }
597             /* disable all encap-formats but MPEG-TS and select it */
598             [[o_t5_matrix_encap cellAtRow:0 column:0] setEnabled:NO];
599             [[o_t5_matrix_encap cellAtRow:2 column:0] setEnabled:NO];
600             [[o_t5_matrix_encap cellAtRow:3 column:0] setEnabled:NO];
601             [[o_t5_matrix_encap cellAtRow:4 column:0] setEnabled:NO];
602             [[o_t5_matrix_encap cellAtRow:5 column:0] setEnabled:NO];
603             [[o_t5_matrix_encap cellAtRow:6 column:0] setEnabled:NO];
604             [[o_t5_matrix_encap cellAtRow:7 column:0] setEnabled:NO];
605             [[o_t5_matrix_encap cellAtRow:8 column:0] setEnabled:NO];
606             [[o_t5_matrix_encap cellAtRow:9 column:0] setEnabled:NO];
607             [[o_t5_matrix_encap cellAtRow:1 column:0] setEnabled:YES];
608             [o_t5_matrix_encap selectCellAtRow:1 column:0];
609         }
610
611         /* store the destination and check whether is it empty */
612         if(! [o_mode isEqualToString: @"HTTP"] )
613         {
614             /* empty field is valid for HTTP */
615             if( [[o_t3_fld_address stringValue] isEqualToString: @""] )
616             {
617                 /* complain to the user that "" is no valid dest. */
618                 NSBeginInformationalAlertSheet(_NS("No valid destination"), \
619                     _NS("OK"), @"", @"", o_wizard_window, nil, nil, nil, nil, \
620                     _NS("You need to enter a valid destination you want to "\
621                     "stream to. Enter either a Unicast-IP or a Multicast-IP." \
622                     "\n\n If you don't know what this means, have a look at the " \
623                     "VLC Streaming HOWTO and the help texts in this window."));
624             } else {
625                 /* FIXME: check whether the entered IP is really valid */
626                 [o_userSelections setObject:[o_t3_fld_address stringValue] \
627                     forKey:@"stmgDest"];
628                 /* let's go to the encap-tab */
629                 [o_tab_pageHolder selectTabViewItemAtIndex:4];
630             }
631         } else {
632             [o_userSelections setObject:[o_t3_fld_address stringValue] \
633                 forKey:@"stmgDest"];
634             /* let's go to the encap-tab */
635             [o_tab_pageHolder selectTabViewItemAtIndex:4];
636         }
637     }
638     else if ([[[o_tab_pageHolder selectedTabViewItem] label] isEqualToString: \
639         @"Transcode 1"])
640     {
641         /* check whether the user wants to transcode the video-track and store 
642          * the related options */
643         if ([o_t4_ckb_video state] == NSOnState)
644         {
645             NSNumber * theNum;
646             theNum = [NSNumber numberWithInt:[o_t4_pop_videoCodec indexOfSelectedItem]];
647             [o_userSelections setObject:@"YES" forKey:@"trnscdVideo"];
648             [o_userSelections setObject:[o_t4_pop_videoBitrate titleOfSelectedItem] \
649                 forKey:@"trnscdVideoBitrate"];
650             [o_userSelections setObject:theNum forKey:@"trnscdVideoCodec"];
651         } else {
652             [o_userSelections setObject:@"NO" forKey:@"trnscdVideo"];
653         }
654
655         /* check whether the user wants to transcode the audio-track and store 
656          * the related options */
657         if ([o_t4_ckb_audio state] == NSOnState)
658         {
659             NSNumber * theNum;
660             theNum = [NSNumber numberWithInt:[o_t4_pop_audioCodec indexOfSelectedItem]];
661             [o_userSelections setObject:@"YES" forKey:@"trnscdAudio"];
662             [o_userSelections setObject:[o_t4_pop_audioBitrate titleOfSelectedItem] \
663                 forKey:@"trnscdAudioBitrate"];
664             [o_userSelections setObject:theNum forKey:@"trnscdAudioCodec"];
665         } else {
666             [o_userSelections setObject:@"NO" forKey:@"trnscdAudio"];
667         }
668
669         /* disable all encap-formats */
670         [[o_t5_matrix_encap cellAtRow:0 column:0] setEnabled:NO];
671         [[o_t5_matrix_encap cellAtRow:1 column:0] setEnabled:NO];
672         [[o_t5_matrix_encap cellAtRow:2 column:0] setEnabled:NO];
673         [[o_t5_matrix_encap cellAtRow:3 column:0] setEnabled:NO];
674         [[o_t5_matrix_encap cellAtRow:4 column:0] setEnabled:NO];
675         [[o_t5_matrix_encap cellAtRow:5 column:0] setEnabled:NO];
676         [[o_t5_matrix_encap cellAtRow:6 column:0] setEnabled:NO];
677         [[o_t5_matrix_encap cellAtRow:7 column:0] setEnabled:NO];
678         [[o_t5_matrix_encap cellAtRow:8 column:0] setEnabled:NO];
679         [[o_t5_matrix_encap cellAtRow:9 column:0] setEnabled:NO];
680
681         /* re-enable the encap-formats supported by the chosen codecs */
682         /* FIXME: the following is a really bad coding-style. feel free to mail
683             me ideas how to make this nicer, if you want to -- FK, 7/11/05 */
684
685         if ([[o_userSelections objectForKey:@"trnscdAudio"] isEqualTo: @"YES"])
686         {
687             if ([[o_userSelections objectForKey:@"trnscdVideo"] isEqualTo: @"YES"])
688             {
689                 /* we are transcoding both audio and video, so we need to check both deps */
690                 if ([[o_videoCodecs objectAtIndex:[[o_userSelections objectForKey: \
691                     @"trnscdVideoCodec"] intValue]] containsObject: @"MUX_PS"])
692                 {
693                     if ([[o_audioCodecs objectAtIndex:[[o_userSelections \
694                         objectForKey:@"trnscdAudioCodec"] intValue]] \
695                         containsObject: @"MUX_PS"])
696                     {
697                         [[o_t5_matrix_encap cellAtRow:0 column:0] setEnabled:YES];
698                         [o_t5_matrix_encap selectCellAtRow:0 column:0];
699                     }
700                 }
701                 if ([[o_videoCodecs objectAtIndex:[[o_userSelections \
702                     objectForKey:@"trnscdVideoCodec"] intValue]] containsObject: @"MUX_TS"])
703                 {
704                     if ([[o_audioCodecs objectAtIndex:[[o_userSelections objectForKey: \
705                         @"trnscdAudioCodec"] intValue]] containsObject: @"MUX_TS"])
706                     {
707                         [[o_t5_matrix_encap cellAtRow:1 column:0] setEnabled:YES];
708                         [o_t5_matrix_encap selectCellAtRow:1 column:0];
709                     }
710                 }
711                 if ([[o_videoCodecs objectAtIndex:[[o_userSelections objectForKey: \
712                     @"trnscdVideoCodec"] intValue]] containsObject: @"MUX_MPEG"])
713                 {
714                     if ([[o_audioCodecs objectAtIndex:[[o_userSelections objectForKey: \
715                         @"trnscdAudioCodec"] intValue]] containsObject: @"MUX_MPEG"])
716                     {
717                         [[o_t5_matrix_encap cellAtRow:2 column:0] setEnabled:YES];
718                         [o_t5_matrix_encap selectCellAtRow:2 column:0];
719                     }
720                 }
721                 if ([[o_videoCodecs objectAtIndex:[[o_userSelections objectForKey: \
722                     @"trnscdVideoCodec"] intValue]] containsObject: @"MUX_OGG"])
723                 {
724                     if ([[o_audioCodecs objectAtIndex:[[o_userSelections \
725                         objectForKey:@"trnscdAudioCodec"] intValue]] containsObject: @"MUX_OGG"])
726                     {
727                         [[o_t5_matrix_encap cellAtRow:3 column:0] setEnabled:YES];
728                         [o_t5_matrix_encap selectCellAtRow:3 column:0];
729                     }
730                 }
731                 if ([[o_videoCodecs objectAtIndex:[[o_userSelections objectForKey: \
732                     @"trnscdVideoCodec"] intValue]] containsObject: @"MUX_RAW"])
733                 {
734                     if ([[o_audioCodecs objectAtIndex:[[o_userSelections objectForKey: \
735                         @"trnscdAudioCodec"] intValue]] containsObject: @"MUX_RAW"])
736                     {
737                         [[o_t5_matrix_encap cellAtRow:4 column:0] setEnabled:YES];
738                         [o_t5_matrix_encap selectCellAtRow:4 column:0];
739                     }
740                 }
741                 if ([[o_videoCodecs objectAtIndex:[[o_userSelections objectForKey: \
742                     @"trnscdVideoCodec"] intValue]] containsObject: @"MUX_ASF"])
743                 {
744                     if ([[o_audioCodecs objectAtIndex:[[o_userSelections objectForKey: \
745                         @"trnscdAudioCodec"] intValue]] containsObject: @"MUX_ASF"])
746                     {
747                         [[o_t5_matrix_encap cellAtRow:5 column:0] setEnabled:YES];
748                         [o_t5_matrix_encap selectCellAtRow:5 column:0];
749                     }
750                 }
751                 if ([[o_videoCodecs objectAtIndex:[[o_userSelections objectForKey: \
752                     @"trnscdVideoCodec"] intValue]] containsObject: @"MUX_AVI"])
753                 {
754                     if ([[o_audioCodecs objectAtIndex:[[o_userSelections objectForKey: \
755                         @"trnscdAudioCodec"] intValue]] containsObject: @"MUX_AVI"])
756                     {
757                         [[o_t5_matrix_encap cellAtRow:6 column:0] setEnabled:YES];
758                         [o_t5_matrix_encap selectCellAtRow:6 column:0];
759                     }
760                 }
761                 if ([[o_videoCodecs objectAtIndex:[[o_userSelections objectForKey: \
762                     @"trnscdVideoCodec"] intValue]] containsObject: @"MUX_MP4"])
763                 {
764                     if ([[o_audioCodecs objectAtIndex:[[o_userSelections objectForKey: \
765                         @"trnscdAudioCodec"] intValue]] containsObject: @"MUX_MP4"])
766                     {
767                         [[o_t5_matrix_encap cellAtRow:7 column:0] setEnabled:YES];
768                         [o_t5_matrix_encap selectCellAtRow:7 column:0];
769                     }
770                 }
771                 if ([[o_videoCodecs objectAtIndex:[[o_userSelections objectForKey: \
772                     @"trnscdVideoCodec"] intValue]] containsObject: @"MUX_MOV"])
773                 {
774                     if ([[o_audioCodecs objectAtIndex:[[o_userSelections objectForKey: \
775                         @"trnscdAudioCodec"] intValue]] containsObject: @"MUX_MOV"])
776                     {
777                         [[o_t5_matrix_encap cellAtRow:8 column:0] setEnabled:YES];
778                         [o_t5_matrix_encap selectCellAtRow:8 column:0];
779                     }
780                 }
781                 if ([[o_videoCodecs objectAtIndex:[[o_userSelections objectForKey: \
782                     @"trnscdVideoCodec"] intValue]] containsObject: @"MUX_WAV"])
783                 {
784                     if ([[o_audioCodecs objectAtIndex:[[o_userSelections objectForKey: \
785                         @"trnscdAudioCodec"] intValue]] containsObject: @"MUX_WAV"])
786                     {
787                         [[o_t5_matrix_encap cellAtRow:9 column:0] setEnabled:YES];
788                         [o_t5_matrix_encap selectCellAtRow:9 column:0];
789                     }
790                 }
791
792             } else {
793
794                 /* we just transcoding the audio */
795
796                 /* select formats supported by the audio codec */
797                 if ([[o_audioCodecs objectAtIndex:[[o_userSelections objectForKey: \
798                     @"trnscdAudioCodec"] intValue]] containsObject: @"MUX_PS"])
799                 {
800                     [[o_t5_matrix_encap cellAtRow:0 column:0] setEnabled:YES];
801                     [o_t5_matrix_encap selectCellAtRow:0 column:0];
802                 }
803                 if ([[o_audioCodecs objectAtIndex:[[o_userSelections objectForKey: \
804                     @"trnscdAudioCodec"] intValue]] containsObject: @"MUX_TS"])
805                 {
806                     [[o_t5_matrix_encap cellAtRow:1 column:0] setEnabled:YES];
807                     [o_t5_matrix_encap selectCellAtRow:1 column:0];
808                 }
809                 if ([[o_audioCodecs objectAtIndex:[[o_userSelections objectForKey: \
810                     @"trnscdAudioCodec"] intValue]] containsObject: @"MUX_MPEG"])
811                 {
812                     [[o_t5_matrix_encap cellAtRow:2 column:0] setEnabled:YES];
813                     [o_t5_matrix_encap selectCellAtRow:2 column:0];
814                 }
815                 if ([[o_audioCodecs objectAtIndex:[[o_userSelections objectForKey: \
816                     @"trnscdAudioCodec"] intValue]] containsObject: @"MUX_OGG"])
817                 {
818                     [[o_t5_matrix_encap cellAtRow:3 column:0] setEnabled:YES];
819                     [o_t5_matrix_encap selectCellAtRow:3 column:0];
820                 }
821                 if ([[o_audioCodecs objectAtIndex:[[o_userSelections objectForKey: \
822                     @"trnscdAudioCodec"] intValue]] containsObject: @"MUX_RAW"])
823                 {
824                     [[o_t5_matrix_encap cellAtRow:4 column:0] setEnabled:YES];
825                     [o_t5_matrix_encap selectCellAtRow:4 column:0];
826                 }
827                 if ([[o_audioCodecs objectAtIndex:[[o_userSelections objectForKey: \
828                     @"trnscdAudioCodec"] intValue]] containsObject: @"MUX_ASF"])
829                 {
830                     [[o_t5_matrix_encap cellAtRow:5 column:0] setEnabled:YES];
831                     [o_t5_matrix_encap selectCellAtRow:5 column:0];
832                 }
833                 if ([[o_audioCodecs objectAtIndex:[[o_userSelections objectForKey: \
834                     @"trnscdAudioCodec"] intValue]] containsObject: @"MUX_AVI"])
835                 {
836                     [[o_t5_matrix_encap cellAtRow:6 column:0] setEnabled:YES];
837                     [o_t5_matrix_encap selectCellAtRow:6 column:0];
838                 }
839                 if ([[o_audioCodecs objectAtIndex:[[o_userSelections objectForKey: \
840                     @"trnscdAudioCodec"] intValue]] containsObject: @"MUX_MP4"])
841                 {
842                     [[o_t5_matrix_encap cellAtRow:7 column:0] setEnabled:YES];
843                     [o_t5_matrix_encap selectCellAtRow:7 column:0];
844                 }
845                 if ([[o_audioCodecs objectAtIndex:[[o_userSelections objectForKey: \
846                     @"trnscdAudioCodec"] intValue]] containsObject: @"MUX_MOV"])
847                 {
848                     [[o_t5_matrix_encap cellAtRow:8 column:0] setEnabled:YES];
849                     [o_t5_matrix_encap selectCellAtRow:8 column:0];
850                 }
851                 if ([[o_audioCodecs objectAtIndex:[[o_userSelections objectForKey: \
852                     @"trnscdAudioCodec"] intValue]] containsObject: @"MUX_WAV"])
853                 {
854                     [[o_t5_matrix_encap cellAtRow:9 column:0] setEnabled:YES];
855                     [o_t5_matrix_encap selectCellAtRow:9 column:0];
856                 }
857             }
858         }
859         else if ([[o_userSelections objectForKey:@"trnscdVideo"] isEqualTo: @"YES"])
860         {
861             /* we are just transcoding the video */
862
863             /* select formats supported by the video-codec */
864
865             if ([[o_videoCodecs objectAtIndex:[[o_userSelections objectForKey: \
866                 @"trnscdVideoCodec"] intValue]] containsObject: @"MUX_PS"])
867             {
868                 [[o_t5_matrix_encap cellAtRow:0 column:0] setEnabled:YES];
869                 [o_t5_matrix_encap selectCellAtRow:0 column:0];
870             }
871             if ([[o_videoCodecs objectAtIndex:[[o_userSelections objectForKey: \
872                 @"trnscdVideoCodec"] intValue]] containsObject: @"MUX_TS"])
873             {
874                 [[o_t5_matrix_encap cellAtRow:1 column:0] setEnabled:YES];
875                 [o_t5_matrix_encap selectCellAtRow:1 column:0];
876             }
877             if ([[o_videoCodecs objectAtIndex:[[o_userSelections objectForKey: \
878                 @"trnscdVideoCodec"] intValue]] containsObject: @"MUX_MPEG"])
879             {
880                 [[o_t5_matrix_encap cellAtRow:2 column:0] setEnabled:YES];
881                 [o_t5_matrix_encap selectCellAtRow:2 column:0];
882             }
883             if ([[o_videoCodecs objectAtIndex:[[o_userSelections objectForKey: \
884                 @"trnscdVideoCodec"] intValue]] containsObject: @"MUX_OGG"])
885             {
886                 [[o_t5_matrix_encap cellAtRow:3 column:0] setEnabled:YES];
887                 [o_t5_matrix_encap selectCellAtRow:3 column:0];
888             }
889             if ([[o_videoCodecs objectAtIndex:[[o_userSelections objectForKey: \
890                 @"trnscdVideoCodec"] intValue]] containsObject: @"MUX_RAW"])
891             {
892                 [[o_t5_matrix_encap cellAtRow:4 column:0] setEnabled:YES];
893                 [o_t5_matrix_encap selectCellAtRow:4 column:0];
894             }
895             if ([[o_videoCodecs objectAtIndex:[[o_userSelections objectForKey: \
896                 @"trnscdVideoCodec"] intValue]] containsObject: @"MUX_ASF"])
897             {
898                 [[o_t5_matrix_encap cellAtRow:5 column:0] setEnabled:YES];
899                 [o_t5_matrix_encap selectCellAtRow:5 column:0];
900             }
901             if ([[o_videoCodecs objectAtIndex:[[o_userSelections objectForKey: \
902                 @"trnscdVideoCodec"] intValue]] containsObject: @"MUX_AVI"])
903             {
904                 [[o_t5_matrix_encap cellAtRow:6 column:0] setEnabled:YES];
905                 [o_t5_matrix_encap selectCellAtRow:6 column:0];
906             }
907             if ([[o_videoCodecs objectAtIndex:[[o_userSelections objectForKey: \
908                 @"trnscdVideoCodec"] intValue]] containsObject: @"MUX_MP4"])
909             {
910                 [[o_t5_matrix_encap cellAtRow:7 column:0] setEnabled:YES];
911                 [o_t5_matrix_encap selectCellAtRow:7 column:0];
912             }
913             if ([[o_videoCodecs objectAtIndex:[[o_userSelections objectForKey: \
914                 @"trnscdVideoCodec"] intValue]] containsObject: @"MUX_MOV"])
915             {
916                 [[o_t5_matrix_encap cellAtRow:8 column:0] setEnabled:YES];
917                 [o_t5_matrix_encap selectCellAtRow:8 column:0];
918             }
919             if ([[o_videoCodecs objectAtIndex:[[o_userSelections objectForKey: \
920                 @"trnscdVideoCodec"] intValue]] containsObject: @"MUX_WAV"])
921             {
922                 [[o_t5_matrix_encap cellAtRow:9 column:0] setEnabled:YES];
923                 [o_t5_matrix_encap selectCellAtRow:9 column:0];
924             }
925         } else {
926             /* we don't do any transcoding
927              * -> enabled the encap-formats allowed when streaming content via http
928              * since this should work fine in most cases */
929             /* FIXME: choose a selection of encap-formats based upon the 
930              * actually used codecs */
931
932             /* enable MPEG PS, MPEG TS, MPEG 1, OGG, RAW and ASF; select MPEG PS */
933             [[o_t5_matrix_encap cellAtRow:0 column:0] setEnabled:YES];
934             [[o_t5_matrix_encap cellAtRow:1 column:0] setEnabled:YES];
935             [[o_t5_matrix_encap cellAtRow:2 column:0] setEnabled:YES];
936             [[o_t5_matrix_encap cellAtRow:3 column:0] setEnabled:YES];
937             [[o_t5_matrix_encap cellAtRow:4 column:0] setEnabled:YES];
938             [[o_t5_matrix_encap cellAtRow:5 column:0] setEnabled:YES];
939             [[o_t5_matrix_encap cellAtRow:6 column:0] setEnabled:NO];
940             [[o_t5_matrix_encap cellAtRow:7 column:0] setEnabled:NO];
941             [[o_t5_matrix_encap cellAtRow:8 column:0] setEnabled:NO];
942             [[o_t5_matrix_encap cellAtRow:9 column:0] setEnabled:NO];
943             [o_t5_matrix_encap selectCellAtRow:0 column:0];
944         }
945         int x;
946         BOOL anythingEnabled;
947         x = 0;
948         anythingEnabled = NO;
949         while (x != [o_t5_matrix_encap numberOfRows])
950         {
951             if ([[o_t5_matrix_encap cellAtRow:x column:0] isEnabled])
952             {
953                 anythingEnabled = YES;
954             }
955             x = (x + 1);
956         }
957         if (anythingEnabled == YES)
958         {
959         [o_tab_pageHolder selectTabViewItemAtIndex:4];
960         } else {
961             /* show a sheet that the selected codecs are not compatible */
962             NSBeginInformationalAlertSheet(_NS("Invalid selection"), _NS("OK"), \
963                 @"", @"", o_wizard_window, nil, nil, nil, nil, _NS("Your " \
964                 "chosen codecs are not compatible with each other. For example: " \
965                 "you cannot mix uncompressed audio with any video codec.\n\n" \
966                 "Correct your selection and try again."));
967         }
968
969     }
970     else if ([[[o_tab_pageHolder selectedTabViewItem] label] isEqualToString: @"Encap"])
971     {
972         /* get the chosen encap format and store it */
973         NSNumber * theNum;
974         theNum = [NSNumber numberWithInt:[[o_t5_matrix_encap selectedCell] tag]];
975         [o_userSelections setObject:[theNum stringValue] forKey:@"encapFormat"];
976
977         /* show either "Streaming 2" or "Transcode 2" to the user */
978         if ([[o_userSelections objectForKey:@"trnscdOrStrmg"] isEqualToString:@"strmg"])
979         {
980             /* we are streaming */
981             [o_tab_pageHolder selectTabViewItemAtIndex:5];
982         }else{
983             /* we are just transcoding */
984             [o_tab_pageHolder selectTabViewItemAtIndex:6];
985         }
986     }
987     else if ([[[o_tab_pageHolder selectedTabViewItem] label] isEqualToString: \
988         @"Streaming 2"])
989     {
990         /* store the chosen TTL */
991         [o_userSelections setObject:[o_t6_fld_ttl stringValue] forKey:@"ttl"];
992
993         /* check whether SAP is enabled and store the announce, if needed */
994         if ([o_t6_ckb_sap state] == NSOnState)
995         {
996             [o_userSelections setObject:@"YES" forKey:@"sap"];
997             [o_userSelections setObject:[o_t6_fld_sap stringValue] forKey:@"sapText"];
998         } else {
999             [o_userSelections setObject:@"NO" forKey:@"sap"];
1000         }
1001
1002         /* go to "Summary" */
1003         [self showSummary];
1004     }
1005     else if ([[[o_tab_pageHolder selectedTabViewItem] label] isEqualToString: \
1006         @"Transcode 2"])
1007     {
1008         /* check whether the path != "" and store it */
1009         if( [[o_t7_fld_filePath stringValue] isEqualToString: @""] )
1010         {
1011             /* complain to the user that "" is no valid path */
1012             NSBeginInformationalAlertSheet(_NS("No file selected"), _NS("OK"), \
1013                 @"", @"", o_wizard_window, nil, nil, nil, nil, _NS("You you " \
1014                 "need to select a file, you want to save to. \n\n Enter either " \
1015                 "a valid path or choose a location through the button's " \
1016                 "dialog-box."));
1017         } else {
1018             [o_userSelections setObject:[o_t7_fld_filePath stringValue] forKey: \
1019                 @"trnscdFilePath"];
1020
1021             /* go to "Summary" */
1022             [self showSummary];
1023         }
1024     }
1025     else if ([[[o_tab_pageHolder selectedTabViewItem] label] isEqualToString: \
1026         @"Summary"])
1027     {
1028         intf_thread_t * p_intf = VLCIntf;
1029
1030         playlist_t * p_playlist = (playlist_t *)vlc_object_find( p_intf,
1031                             VLC_OBJECT_PLAYLIST, FIND_ANYWHERE);
1032         if( p_playlist )
1033         {
1034             playlist_item_t *p_item = playlist_ItemNew( p_playlist, [[o_userSelections \
1035                 objectForKey:@"pathToStrm"] UTF8String], _("Streaming/Transcoding Wizard") );
1036             playlist_ItemAddOption( p_item, [[o_userSelections objectForKey:@"opts"] UTF8String]);
1037
1038             if(! [[o_userSelections objectForKey:@"partExtractFrom"] isEqualToString:@""] )
1039             {
1040                 playlist_ItemAddOption( p_item, [[@"start-time=" \
1041                     stringByAppendingString: [o_userSelections \
1042                     objectForKey:@"partExtractFrom"]] UTF8String] );
1043             }
1044
1045             if(! [[o_userSelections objectForKey:@"partExtractTo"] isEqualToString:@""] )
1046             {
1047                 playlist_ItemAddOption( p_item, [[@"stop-time=" \
1048                     stringByAppendingString: [o_userSelections objectForKey: \
1049                     @"partExtractTo"]] UTF8String] );
1050             }
1051
1052             playlist_ItemAddOption( p_item, [[@"ttl=" stringByAppendingString: \
1053                 [o_userSelections objectForKey:@"ttl"]] UTF8String] );
1054
1055             playlist_AddItem( p_playlist, p_item, PLAYLIST_GO, PLAYLIST_END );
1056
1057             msg_Warn(p_intf, "updating the playlist-table is not implemented!");
1058
1059             playlist_ViewUpdate( p_playlist, VIEW_CATEGORY );
1060
1061             vlc_object_release(p_playlist);
1062         } else {
1063             msg_Err( p_intf, "Uh Oh! Unable to find playlist!" );
1064         }
1065
1066         /* close the window, since we are done */
1067         [o_wizard_window close];
1068     }
1069 }
1070
1071 - (void)showSummary
1072 {
1073     [o_btn_forward setTitle: _NS("Finish")];
1074     [o_t8_fld_inptStream setStringValue:[o_userSelections objectForKey:@"pathToStrm"]];
1075
1076     if ([[o_userSelections objectForKey:@"partExtract"] isEqualToString: @"YES"])
1077     {
1078         [o_t8_fld_partExtract setStringValue: [[[[[_NS("yes") \
1079             stringByAppendingString:@" - "] stringByAppendingString: \
1080             _NS("from ")] stringByAppendingString: [o_userSelections \
1081             objectForKey:@"partExtractFrom"]] stringByAppendingString: \
1082             _NS(" to ")] stringByAppendingString: [o_userSelections \
1083             objectForKey:@"partExtractTo"]]];
1084     } else {
1085         [o_t8_fld_partExtract setStringValue: _NS("no")];
1086     }
1087
1088     if ([[o_userSelections objectForKey:@"trnscdOrStrmg"] isEqualToString:@"strmg"])
1089     {
1090         /* we are streaming; no transcoding allowed atm */
1091         [o_t8_fld_saveFileTo setStringValue: @"-"];
1092         [o_t8_fld_trnscdAudio setStringValue: @"-"];
1093         [o_t8_fld_trnscdVideo setStringValue: @"-"];
1094         [o_t8_fld_strmgMthd setStringValue: [[o_strmgMthds objectAtIndex: \
1095             [[o_userSelections objectForKey:@"stmgMhd"] intValue]] \
1096             objectAtIndex:1]];
1097         [o_t8_fld_destination setStringValue: [o_userSelections objectForKey: \
1098             @"stmgDest"]];
1099         [o_t8_fld_ttl setStringValue: [o_userSelections objectForKey:@"ttl"]];
1100         if ([[o_userSelections objectForKey:@"sap"] isEqualToString: @"YES"])
1101         {
1102             [o_t8_fld_sap setStringValue: [[_NS("yes") stringByAppendingString:@": "] stringByAppendingString:[o_userSelections objectForKey:@"sapText"]]];
1103         }else{
1104             [o_t8_fld_sap setStringValue: _NS("no")];
1105         }
1106     } else {
1107         /* we are transcoding */
1108         [o_t8_fld_strmgMthd setStringValue: @"-"];
1109         [o_t8_fld_destination setStringValue: @"-"];
1110         [o_t8_fld_ttl setStringValue: @"-"];
1111         [o_t8_fld_sap setStringValue: @"-"];
1112         if ([[o_userSelections objectForKey:@"trnscdVideo"] isEqualToString:@"YES"])
1113         {
1114             [o_t8_fld_trnscdVideo setStringValue: [[[[[_NS("yes") \
1115                 stringByAppendingString:@": "] stringByAppendingString: \
1116                 [[o_videoCodecs objectAtIndex:[[o_userSelections objectForKey: \
1117                 @"trnscdVideoCodec"] intValue]] objectAtIndex:0]] \
1118                 stringByAppendingString:@" @ "] stringByAppendingString: \
1119                 [o_userSelections objectForKey:@"trnscdVideoBitrate"]] \
1120                 stringByAppendingString:@" kb/s"]];
1121         }else{
1122             [o_t8_fld_trnscdVideo setStringValue: _NS("no")];
1123         }
1124         if ([[o_userSelections objectForKey:@"trnscdAudio"] isEqualToString:@"YES"])
1125         {
1126             [o_t8_fld_trnscdAudio setStringValue: [[[[[_NS("yes") \
1127             stringByAppendingString:@": "] stringByAppendingString: \
1128             [[o_audioCodecs objectAtIndex:[[o_userSelections objectForKey: \
1129             @"trnscdAudioCodec"] intValue]] objectAtIndex:0]] \
1130             stringByAppendingString:@" @ "] stringByAppendingString: \
1131             [o_userSelections objectForKey:@"trnscdAudioBitrate"]] \
1132             stringByAppendingString:@" kb/s"]];
1133         }else{
1134             [o_t8_fld_trnscdAudio setStringValue: _NS("no")];
1135         }
1136         [o_t8_fld_saveFileTo setStringValue: [o_userSelections objectForKey: \
1137             @"trnscdFilePath"]];
1138     }
1139     [o_t8_fld_encapFormat setStringValue: [[o_encapFormats objectAtIndex: \
1140         [[o_userSelections objectForKey:@"encapFormat"] intValue]] objectAtIndex:1]];
1141
1142     [self createOpts];
1143     [o_t8_fld_mrl setStringValue: [o_userSelections objectForKey:@"opts"]];
1144
1145     [o_tab_pageHolder selectTabViewItemAtIndex:7];
1146 }
1147
1148 - (void) createOpts
1149 {
1150     NSMutableString * o_opts_string = [NSMutableString stringWithString:@""];
1151
1152     if ([[o_userSelections objectForKey:@"trnscdOrStrmg"] isEqualToString:@"trnscd"])
1153     {
1154         /* we are just transcoding and dumping the stuff to a file */
1155         NSMutableString *o_trnscdCmd = [NSMutableString stringWithString:@""];
1156         if ([[o_userSelections objectForKey:@"trnscdVideo"] isEqualToString:@"YES"])
1157         {
1158             [o_trnscdCmd appendString: @"transcode{"];
1159             [o_trnscdCmd appendFormat: @"vcodec=%s,vb=%i", [[[o_videoCodecs \
1160                 objectAtIndex:[[o_userSelections objectForKey:@"trnscdVideoCodec"] \
1161                 intValue]] objectAtIndex:1] UTF8String],  [[o_userSelections \
1162                 objectForKey:@"trnscdVideoBitrate"] intValue]];
1163             if ([[o_userSelections objectForKey:@"trnscdAudio"] isEqualToString:@"YES"])
1164             {
1165                 [o_trnscdCmd appendString: @","];
1166             } 
1167             else
1168             {
1169                 [o_trnscdCmd appendString: @"}:"];
1170             }
1171         }
1172         if ([[o_userSelections objectForKey:@"trnscdAudio"] isEqualToString:@"YES"])
1173         {
1174             if ([[o_userSelections objectForKey:@"trnscdVideo"] isEqualToString:@"NO"])
1175             {
1176                 /* in case we transcode the audio only, add this */
1177                 [o_trnscdCmd appendString: @"transcode{"];
1178             }
1179             [o_trnscdCmd appendFormat: @"acodec=%s,ab=%i}:", [[[o_audioCodecs \
1180                 objectAtIndex:[[o_userSelections objectForKey:@"trnscdAudioCodec"] \
1181                 intValue]] objectAtIndex:1] UTF8String],  [[o_userSelections \
1182                 objectForKey:@"trnscdAudioBitrate"] intValue]];
1183         }
1184         [o_opts_string appendFormat: @":sout=#%sstandard{mux=%s,url=%s,access=file}", \
1185             [o_trnscdCmd UTF8String], [[[o_encapFormats objectAtIndex: \
1186             [[o_userSelections objectForKey:@"encapFormat"] intValue]] \
1187             objectAtIndex:0] UTF8String], [[o_userSelections objectForKey: \
1188             @"trnscdFilePath"] UTF8String]];
1189
1190     } else {
1191
1192         /* we are streaming - no transcoding allowed atm, since we mirror the wx-wizard */
1193         if ([[o_userSelections objectForKey:@"sap"] isEqualToString:@"YES"])
1194         {
1195             /* SAP-Announcement is requested */
1196             NSMutableString *o_sap_option = [NSMutableString stringWithString:@""];
1197             if([[o_userSelections objectForKey:@"sapText"] isEqualToString:@""])
1198             {
1199                 [o_sap_option appendString: @"sap"];
1200             } else {
1201                 [o_sap_option appendFormat: @"sap,name=\"%s\"",[[o_userSelections \
1202                     objectForKey:@"sapText"] UTF8String]];
1203             }
1204             [o_opts_string appendFormat: @":sout=#standard{mux=%s,url=%s,access=%s,%s}", \
1205                 [[[o_encapFormats objectAtIndex:[[o_userSelections objectForKey: \
1206                 @"encapFormat"] intValue]] objectAtIndex:0] UTF8String], \
1207                 [[o_userSelections objectForKey:@"stmgDest"] UTF8String], \
1208                 [[[o_strmgMthds objectAtIndex:[[o_userSelections objectForKey: \
1209                 @"stmgMhd"] intValue]] objectAtIndex:0] UTF8String], \
1210                 [o_sap_option UTF8String]];
1211         } else {
1212             /* no SAP, just streaming */
1213             [o_opts_string appendFormat: @":sout=#standard{mux=%s,url=%s,access=%s}", \
1214                 [[[o_encapFormats objectAtIndex:[[o_userSelections objectForKey: \
1215                 @"encapFormat"] intValue]] objectAtIndex:0] UTF8String], \
1216                 [[o_userSelections objectForKey:@"stmgDest"] UTF8String], \
1217                 [[[o_strmgMthds objectAtIndex:[[o_userSelections objectForKey: \
1218                 @"stmgMhd"] intValue]] objectAtIndex:0] UTF8String]];
1219         }
1220     }
1221
1222     [o_userSelections setObject:o_opts_string forKey:@"opts"];
1223 }
1224
1225 - (IBAction)prevTab:(id)sender
1226 {
1227     if ([[[o_tab_pageHolder selectedTabViewItem] label] isEqualToString: @"Summary"])
1228     {
1229         /* check whether we are streaming or transcoding and go back */
1230         if ([[o_userSelections objectForKey:@"trnscdOrStrmg"] isEqualToString:@"strmg"])
1231         {
1232             /* show "Streaming 2" */
1233             [o_tab_pageHolder selectTabViewItemAtIndex:5];
1234         }else{
1235             /* show "Transcode 2" */
1236             [o_tab_pageHolder selectTabViewItemAtIndex:6];
1237         }
1238         /* rename the forward-button */
1239         [o_btn_forward setTitle: _NS("Next")];
1240     }
1241     else if ([[[o_tab_pageHolder selectedTabViewItem] label] isEqualToString: \
1242         @"Transcode 2"])
1243     {
1244         /* show "Encap" */
1245         [o_tab_pageHolder selectTabViewItemAtIndex:4];
1246     }
1247     else if ([[[o_tab_pageHolder selectedTabViewItem] label] isEqualToString: \
1248         @"Streaming 2"])
1249     {
1250         /* show "Encap" */
1251         [o_tab_pageHolder selectTabViewItemAtIndex:4];
1252     }
1253     else if ([[[o_tab_pageHolder selectedTabViewItem] label] isEqualToString: \
1254         @"Encap"])
1255     {
1256         /* check whether we are streaming or transcoding and go back */
1257         if ([[o_userSelections objectForKey:@"trnscdOrStrmg"] isEqualToString: \
1258             @"strmg"])
1259         {
1260             /* show "Streaming 1" */
1261             [o_tab_pageHolder selectTabViewItemAtIndex:2];
1262         }else{
1263             /* show "Transcode 2" */
1264             [o_tab_pageHolder selectTabViewItemAtIndex:3];
1265         }
1266     }
1267     else if ([[[o_tab_pageHolder selectedTabViewItem] label] isEqualToString: \
1268         @"Streaming 1"])
1269     {
1270         /* show "Input" */
1271         [o_tab_pageHolder selectTabViewItemAtIndex:1];
1272     }
1273     else if ([[[o_tab_pageHolder selectedTabViewItem] label] isEqualToString: \
1274         @"Transcode 1"])
1275     {
1276         /* show "Input" */
1277         [o_tab_pageHolder selectTabViewItemAtIndex:1];
1278     }
1279     else if ([[[o_tab_pageHolder selectedTabViewItem] label] isEqualToString: \
1280         @"Input"])
1281     {
1282         /* show "Hello" */
1283         [o_tab_pageHolder selectTabViewItemAtIndex:0];
1284         /* disable backwards-btn */
1285         [o_btn_backward setEnabled:NO];
1286     }
1287 }
1288
1289 - (IBAction)t1_mrInfo_streaming:(id)sender
1290 {
1291     /* show a sheet for the help */
1292     /* since NSAlert does not exist on OSX < 10.3, we use our own implementation */
1293     [o_wh_txt_title setStringValue: _NS("Stream to network")];
1294     [o_wh_txt_text setStringValue: _NS("Use this to stream on a network.")];
1295     [NSApp beginSheet: o_wizardhelp_window
1296             modalForWindow: o_wizard_window
1297             modalDelegate: o_wizardhelp_window
1298             didEndSelector: nil
1299             contextInfo: nil];
1300 }
1301
1302 - (IBAction)t1_mrInfo_transcode:(id)sender
1303 {
1304     /* show a sheet for the help */
1305     [o_wh_txt_title setStringValue: _NS("Transcode/Save to file")];
1306     [o_wh_txt_text setStringValue: _NS("Use this to save a stream to a file. You "\
1307         "have the possibility to reencode the stream. You can save whatever "\
1308         "VLC can read.\nPlease notice that VLC is not very suited " \
1309         "for file to file transcoding. You should use its transcoding " \
1310         "features to save network streams, for example.")];
1311     [NSApp beginSheet: o_wizardhelp_window
1312             modalForWindow: o_wizard_window
1313             modalDelegate: o_wizardhelp_window
1314             didEndSelector: nil
1315             contextInfo: nil];
1316 }
1317
1318 - (IBAction)t2_addNewStream:(id)sender
1319 {
1320     NSOpenPanel * openPanel = [NSOpenPanel openPanel];
1321     SEL sel = @selector(t2_getNewStreamFromDialog:returnCode:contextInfo:);
1322     [openPanel beginSheetForDirectory:nil file:nil types:nil modalForWindow: \
1323         o_wizard_window modalDelegate:self didEndSelector:sel contextInfo:nil];
1324 }
1325
1326 - (void)t2_getNewStreamFromDialog: (NSOpenPanel *)sheet returnCode: \
1327     (int)returnCode contextInfo: (void *)contextInfo
1328 {
1329     if (returnCode == NSOKButton)
1330     {
1331         [o_t2_fld_pathToNewStrm setStringValue: [@"file://" \
1332             stringByAppendingString: [sheet filename]]];
1333     }
1334 }
1335
1336 - (IBAction)t2_chooseStreamOrPlst:(id)sender
1337 {
1338     /* enable and disable the respective items depending on user's choice */
1339     NSString *o_mode;
1340     o_mode = [[o_t2_matrix_inputSourceType selectedCell] title];
1341
1342     if( [o_mode isEqualToString: _NS("Select a stream")] )
1343     {
1344         [o_t2_btn_chooseFile setEnabled:YES];
1345         [o_t2_fld_pathToNewStrm setEnabled:YES];
1346         [o_t2_tbl_plst setEnabled:NO];
1347     } else {
1348         [o_t2_btn_chooseFile setEnabled:NO];
1349         [o_t2_fld_pathToNewStrm setEnabled:NO];
1350         [o_t2_tbl_plst setEnabled:YES];
1351     }
1352 }
1353
1354 - (IBAction)t2_enableExtract:(id)sender
1355 {
1356     /* enable/disable the respective items */
1357     if([o_t2_ckb_enblPartExtrct state] == NSOnState)
1358     {
1359         [o_t2_fld_prtExtrctFrom setEnabled:YES];
1360         [o_t2_fld_prtExtrctTo setEnabled:YES];
1361     } else {
1362         [o_t2_fld_prtExtrctFrom setEnabled:NO];
1363         [o_t2_fld_prtExtrctTo setEnabled:NO];
1364         [o_t2_fld_prtExtrctFrom setStringValue:@""];
1365         [o_t2_fld_prtExtrctTo setStringValue:@""];
1366     }
1367 }
1368
1369 - (IBAction)t3_strmMthdChanged:(id)sender
1370 {
1371     /* change the captions of o_t3_txt_destInfo according to the chosen
1372      * streaming method */
1373     NSNumber * o_mode;
1374     o_mode = [[NSNumber alloc] initWithInt:[[o_t3_matrix_stmgMhd selectedCell] tag]];
1375     if( [o_mode intValue] == 2 )
1376     {
1377         /* HTTP */
1378         [o_t3_txt_destInfo setStringValue: [[o_strmgMthds objectAtIndex:0] \
1379             objectAtIndex:2]];
1380         [o_t3_txt_strgMthdInfo setStringValue: [[o_strmgMthds objectAtIndex:0] \
1381             objectAtIndex:3]];
1382     }
1383     else if( [o_mode intValue] == 1 )
1384     {
1385         /* UDP-Multicast */
1386         [o_t3_txt_destInfo setStringValue: [[o_strmgMthds objectAtIndex:1] \
1387             objectAtIndex:2]];
1388         [o_t3_txt_strgMthdInfo setStringValue: [[o_strmgMthds objectAtIndex:1] \
1389             objectAtIndex:3]];
1390     }
1391     else if( [o_mode intValue] == 0 )
1392     {
1393         /* UDP-Unicast */
1394         [o_t3_txt_destInfo setStringValue: [[o_strmgMthds objectAtIndex:2] \
1395             objectAtIndex:2]];
1396         [o_t3_txt_strgMthdInfo setStringValue: [[o_strmgMthds objectAtIndex:2] \
1397         objectAtIndex:3]];
1398     }
1399     [o_mode release];
1400 }
1401
1402 - (IBAction)t4_AudCdcChanged:(id)sender
1403 {
1404     /* update codec info */
1405     [o_t4_txt_hintAudio setStringValue:[[o_audioCodecs objectAtIndex: \
1406         [o_t4_pop_audioCodec indexOfSelectedItem]] objectAtIndex:2]];
1407 }
1408
1409 - (IBAction)t4_enblAudTrnscd:(id)sender
1410 {
1411     /* enable/disable the respective items */
1412     if([o_t4_ckb_audio state] == NSOnState)
1413     {
1414         [o_t4_pop_audioCodec setEnabled:YES];
1415         [o_t4_pop_audioBitrate setEnabled:YES];
1416         [o_t4_txt_hintAudio setStringValue: _NS("Select your audio codec. "\
1417         "Click one to get more information.")];
1418     } else {
1419         [o_t4_pop_audioCodec setEnabled:NO];
1420         [o_t4_pop_audioBitrate setEnabled:NO];
1421         [o_t4_txt_hintAudio setStringValue: _NS("If your stream has audio " \
1422         "and you want to transcode it, enable this.")];
1423     }
1424 }
1425
1426 - (IBAction)t4_enblVidTrnscd:(id)sender
1427 {
1428     /* enable/disable the respective items */
1429     if([o_t4_ckb_video state] == NSOnState)
1430     {
1431         [o_t4_pop_videoCodec setEnabled:YES];
1432         [o_t4_pop_videoBitrate setEnabled:YES];
1433         [o_t4_txt_hintVideo setStringValue: _NS("Select your video codec. "\
1434         "Click one to get more information.")];
1435     } else {
1436         [o_t4_pop_videoCodec setEnabled:NO];
1437         [o_t4_pop_videoBitrate setEnabled:NO];
1438         [o_t4_txt_hintVideo setStringValue: _NS("If your stream has video " \
1439         "and you want to transcode it, enable this.")];
1440     }
1441 }
1442
1443 - (IBAction)t4_VidCdcChanged:(id)sender
1444 {
1445     /* update codec info */
1446     [o_t4_txt_hintVideo setStringValue:[[o_videoCodecs objectAtIndex: \
1447         [o_t4_pop_videoCodec indexOfSelectedItem]] objectAtIndex:2]];
1448 }
1449
1450 - (IBAction)t6_enblSapAnnce:(id)sender
1451 {
1452     /* enable/disable input fld */
1453     if([o_t6_ckb_sap state] == NSOnState)
1454     {
1455         [o_t6_fld_sap setEnabled:YES];
1456     } else {
1457         [o_t6_fld_sap setEnabled:NO];
1458         [o_t6_fld_sap setStringValue:@""];
1459     }
1460 }
1461
1462 - (IBAction)t6_mrInfo_ttl:(id)sender
1463 {
1464     /* show a sheet for the help */
1465     [o_wh_txt_title setStringValue: _NS("Time-To-Live (TTL)")];
1466     [o_wh_txt_text setStringValue: _NS("Define the TTL (Time-To-Live) of the stream. "\
1467             "This parameter is the maximum number of routers your stream can go " \
1468             "through. If you don't know what it means, or if you want to stream on " \
1469             "your local network only, leave this setting to 1.")];
1470     [NSApp beginSheet: o_wizardhelp_window
1471             modalForWindow: o_wizard_window
1472             modalDelegate: o_wizardhelp_window
1473             didEndSelector: nil
1474             contextInfo: nil];
1475 }
1476
1477 - (IBAction)t6_mrInfo_sap:(id)sender
1478 {
1479     /* show a sheet for the help */
1480     [o_wh_txt_title setStringValue: _NS("SAP Announce")];
1481     [o_wh_txt_text setStringValue: _NS("When streaming using UDP, you can " \
1482         "announce your streams using the SAP/SDP announcing protocol. This " \
1483         "way, the clients won't have to type in the multicast address, it " \
1484         "will appear in their playlist if they enable the SAP extra interface.\n" \
1485         "If you want to give a name to your stream, enter it here, " \
1486         "else, a default name will be used.")];
1487     [NSApp beginSheet: o_wizardhelp_window
1488             modalForWindow: o_wizard_window
1489             modalDelegate: o_wizardhelp_window
1490             didEndSelector: nil
1491             contextInfo: nil];
1492 }
1493
1494 - (IBAction)t7_selectTrnscdDestFile:(id)sender
1495 {
1496     /* provide a save-to-dialogue, so the user can choose a location for his/her new file */
1497     NSSavePanel * savePanel = [NSSavePanel savePanel];
1498     SEL sel = @selector(t7_getTrnscdDestFile:returnCode:contextInfo:);
1499     [savePanel setRequiredFileType:[[o_encapFormats objectAtIndex: \
1500         [[o_userSelections objectForKey:@"encapFormat"] intValue]] objectAtIndex:0]];
1501     [savePanel setCanSelectHiddenExtension:YES];
1502     [savePanel beginSheetForDirectory:nil file:nil modalForWindow: \
1503         o_wizard_window modalDelegate:self didEndSelector:sel contextInfo:nil];
1504 }
1505
1506 - (void)t7_getTrnscdDestFile: (NSSavePanel *)sheet returnCode: \
1507     (int)returnCode contextInfo: (void *)contextInfo
1508 {
1509     if (returnCode == NSOKButton)
1510     {
1511         /* output returned path to text-field */
1512         [o_t7_fld_filePath setStringValue:[sheet filename]];
1513     }
1514 }
1515
1516 - (IBAction)wh_closeSheet:(id)sender
1517 {
1518     /* close the help sheet */
1519     [NSApp endSheet:o_wizardhelp_window];
1520     [o_wizardhelp_window close];
1521 }
1522
1523 @end