]> git.sesse.net Git - vlc/blob - modules/gui/macosx/open.m
* ./modules/gui/macosx/open.m:
[vlc] / modules / gui / macosx / open.m
1 /*****************************************************************************
2  * open.m: MacOS X plugin for vlc
3  *****************************************************************************
4  * Copyright (C) 2002 VideoLAN
5  * $Id: open.m,v 1.9 2003/01/18 04:10:58 hartman Exp $
6  *
7  * Authors: Jon Lech Johansen <jon-vl@nanocrew.net> 
8  *          Christophe Massiot <massiot@via.ecp.fr>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  * 
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
23  *****************************************************************************/
24
25 /*****************************************************************************
26  * Preamble
27  *****************************************************************************/
28 #include <stdlib.h>                                      /* malloc(), free() */
29 #include <sys/param.h>                                    /* for MAXPATHLEN */
30 #include <string.h>
31
32 #include <paths.h>
33 #include <IOKit/IOKitLib.h>
34 #include <IOKit/IOBSD.h>
35 #include <IOKit/storage/IOMedia.h>
36 #include <IOKit/storage/IOCDMedia.h>
37 #include <IOKit/storage/IODVDMedia.h>
38
39 #import <Cocoa/Cocoa.h>
40
41 #include <vlc/vlc.h>
42 #include <vlc/intf.h>
43
44 #include "netutils.h"
45
46 #import "intf.h"
47 #import "playlist.h"
48 #import "open.h"
49
50 /*****************************************************************************
51  * GetEjectableMediaOfClass 
52  *****************************************************************************/
53 NSArray *GetEjectableMediaOfClass( const char *psz_class )
54 {
55     io_object_t next_media;
56     mach_port_t master_port;
57     kern_return_t kern_result;
58     NSArray *o_devices = nil;
59     NSMutableArray *p_list = nil;
60     io_iterator_t media_iterator;
61     CFMutableDictionaryRef classes_to_match;
62
63     kern_result = IOMasterPort( MACH_PORT_NULL, &master_port );
64     if( kern_result != KERN_SUCCESS )
65     {
66         return( nil );
67     }
68     
69     classes_to_match = IOServiceMatching( psz_class );
70     if( classes_to_match == NULL )
71     {
72         return( nil );
73     }
74     
75     CFDictionarySetValue( classes_to_match, CFSTR( kIOMediaEjectable ), 
76                           kCFBooleanTrue );
77     
78     kern_result = IOServiceGetMatchingServices( master_port, classes_to_match, 
79                                                 &media_iterator );
80     if( kern_result != KERN_SUCCESS )
81     {
82         return( nil );
83     }
84
85     p_list = [NSMutableArray arrayWithCapacity: 1];
86     
87     next_media = IOIteratorNext( media_iterator );
88     if( next_media != NULL )
89     {
90         char psz_buf[0x32];
91         size_t dev_path_length;
92         CFTypeRef str_bsd_path;
93     
94         do
95         {
96             str_bsd_path = IORegistryEntryCreateCFProperty( next_media,
97                                                             CFSTR( kIOBSDName ),
98                                                             kCFAllocatorDefault,
99                                                             0 );
100             if( str_bsd_path == NULL )
101             {
102                 IOObjectRelease( next_media );
103                 continue;
104             }
105             
106             snprintf( psz_buf, sizeof(psz_buf), "%s%c", _PATH_DEV, 'r' );
107             dev_path_length = strlen( psz_buf );
108             
109             if( CFStringGetCString( str_bsd_path,
110                                     (char*)&psz_buf + dev_path_length,
111                                     sizeof(psz_buf) - dev_path_length,
112                                     kCFStringEncodingASCII ) )
113             {
114                 [p_list addObject: [NSString stringWithCString: psz_buf]];
115             }
116             
117             CFRelease( str_bsd_path );
118             
119             IOObjectRelease( next_media );
120         
121         } while( ( next_media = IOIteratorNext( media_iterator ) ) != NULL );
122     }
123     
124     IOObjectRelease( media_iterator );
125
126     o_devices = [NSArray arrayWithArray: p_list];
127
128     return( o_devices );
129 }
130
131 /*****************************************************************************
132  * VLCOpen implementation 
133  *****************************************************************************/
134 @implementation VLCOpen
135
136 - (void)awakeFromNib
137 {
138     intf_thread_t * p_intf = [NSApp getIntf];
139     char * psz_sout = config_GetPsz( p_intf, "sout" );
140
141     if ( psz_sout != NULL && *psz_sout )
142     {
143         [o_sout_cbox setState: YES];
144
145         NSRect s_rect = [o_panel frame];
146         s_rect.size.height = OPEN_PANEL_FULL_HEIGHT + WINDOW_TITLE_HEIGHT;
147         [o_panel setFrame: s_rect display: NO];
148
149         NSPoint s_point;
150         s_point.x = 0;
151         s_point.y = 0;
152         [[o_panel contentView] setBoundsOrigin: s_point];
153     }
154     else
155     {
156         [o_sout_cbox setState: NO];
157
158         NSRect s_rect = [o_panel frame];
159         s_rect.size.height = OPEN_PANEL_SHORT_HEIGHT + WINDOW_TITLE_HEIGHT;
160         [o_panel setFrame: s_rect display: NO];
161
162         NSPoint s_point;
163         s_point.x = 0;
164         s_point.y = OPEN_PANEL_FULL_HEIGHT - OPEN_PANEL_SHORT_HEIGHT;
165         [[o_panel contentView] setBoundsOrigin: s_point];
166     }
167     free(psz_sout);
168
169     [o_panel setTitle: _NS("Open Source")];
170     [o_mrl_lbl setTitle: _NS("Media Resource Locator (MRL)")];
171
172     [o_btn_ok setTitle: _NS("OK")];
173     [o_btn_cancel setTitle: _NS("Cancel")];
174
175     [[o_tabview tabViewItemAtIndex: 0] setLabel: _NS("File")];
176     [[o_tabview tabViewItemAtIndex: 1] setLabel: _NS("Disc")];
177     [[o_tabview tabViewItemAtIndex: 2] setLabel: _NS("Network")];
178
179     [o_file_btn_browse setTitle: _NS("Browse...")];
180     [o_file_stream setTitle: _NS("Treat as a pipe rather than as a file")];
181
182     [o_disc_device_lbl setStringValue: _NS("Device name")];
183     [o_disc_title_lbl setStringValue: _NS("Title")];
184     [o_disc_chapter_lbl setStringValue: _NS("Chapter")];
185     [o_disc_videots_btn_browse setStringValue: _NS("Browse...")];
186     [o_disc_dvd_menus setTitle: _NS("Use DVD menus")];
187
188     [[o_disc_type cellAtRow:0 column:0] setTitle: _NS("VIDEO_TS folder")];
189     [[o_disc_type cellAtRow:1 column:0] setTitle: _NS("DVD")];
190     [[o_disc_type cellAtRow:2 column:0] setTitle: _NS("VCD")];
191
192     [o_net_udp_port_lbl setStringValue: _NS("Port")];
193     [o_net_udpm_addr_lbl setStringValue: _NS("Address")];
194     [o_net_udpm_port_lbl setStringValue: _NS("Port")];
195     [o_net_cs_addr_lbl setStringValue: _NS("Address")];
196     [o_net_cs_port_lbl setStringValue: _NS("Port")];
197     [o_net_http_url_lbl setStringValue: _NS("URL")];
198
199     [[o_net_mode cellAtRow:0 column:0] setTitle: _NS("UDP/RTP")];
200     [[o_net_mode cellAtRow:1 column:0] setTitle: _NS("UDP/RTP Multicast")];
201     [[o_net_mode cellAtRow:2 column:0] setTitle: _NS("Channel server")];
202     [[o_net_mode cellAtRow:3 column:0] setTitle: _NS("HTTP/FTP/MMS")];
203
204     [o_net_udp_port setIntValue: config_GetInt( p_intf, "server-port" )];
205     [o_net_udp_port_stp setIntValue: config_GetInt( p_intf, "server-port" )];
206     [o_net_cs_port setIntValue: config_GetInt( p_intf, "channel-port" )];
207     [o_net_cs_port_stp setIntValue: config_GetInt( p_intf, "channel-port" )];
208
209     [o_sout_cbox setTitle: _NS("Stream output")];
210     [o_sout_mrl_lbl setTitle: _NS("Stream output MRL")];
211     [[o_sout_access cellAtRow:0 column:0] setTitle: _NS("File")];
212     [[o_sout_access cellAtRow:1 column:0] setTitle: _NS("UDP")];
213     [[o_sout_access cellAtRow:2 column:0] setTitle: _NS("RTP")];
214
215     [o_sout_file_btn_browse setStringValue: _NS("Browse...")];
216     [o_sout_udp_addr_lbl setStringValue: _NS("Address")];
217     [o_sout_udp_port_lbl setStringValue: _NS("Port")];
218
219     [[o_sout_mux cellAtRow:0 column:0] setTitle: _NS("PS")];
220     [[o_sout_mux cellAtRow:0 column:1] setTitle: _NS("TS")];
221
222     [[NSNotificationCenter defaultCenter] addObserver: self
223         selector: @selector(openFilePathChanged:)
224         name: NSControlTextDidChangeNotification
225         object: o_file_path];
226
227     [[NSNotificationCenter defaultCenter] addObserver: self
228         selector: @selector(openDiscInfoChanged:)
229         name: NSControlTextDidChangeNotification
230         object: o_disc_device];
231     [[NSNotificationCenter defaultCenter] addObserver: self
232         selector: @selector(openDiscInfoChanged:)
233         name: NSControlTextDidChangeNotification
234         object: o_disc_title];
235     [[NSNotificationCenter defaultCenter] addObserver: self
236         selector: @selector(openDiscInfoChanged:)
237         name: NSControlTextDidChangeNotification
238         object: o_disc_chapter];
239     [[NSNotificationCenter defaultCenter] addObserver: self
240         selector: @selector(openDiscInfoChanged:)
241         name: NSControlTextDidChangeNotification
242         object: o_disc_videots_folder];
243
244     [[NSNotificationCenter defaultCenter] addObserver: self
245         selector: @selector(openNetInfoChanged:)
246         name: NSControlTextDidChangeNotification
247         object: o_net_udp_port];
248     [[NSNotificationCenter defaultCenter] addObserver: self
249         selector: @selector(openNetInfoChanged:)
250         name: NSControlTextDidChangeNotification
251         object: o_net_udpm_addr];
252     [[NSNotificationCenter defaultCenter] addObserver: self
253         selector: @selector(openNetInfoChanged:)
254         name: NSControlTextDidChangeNotification
255         object: o_net_udpm_port];
256     [[NSNotificationCenter defaultCenter] addObserver: self
257         selector: @selector(openNetInfoChanged:)
258         name: NSControlTextDidChangeNotification
259         object: o_net_cs_addr];
260     [[NSNotificationCenter defaultCenter] addObserver: self
261         selector: @selector(openNetInfoChanged:)
262         name: NSControlTextDidChangeNotification
263         object: o_net_cs_port];
264     [[NSNotificationCenter defaultCenter] addObserver: self
265         selector: @selector(openNetInfoChanged:)
266         name: NSControlTextDidChangeNotification
267         object: o_net_http_url];
268
269     [[NSNotificationCenter defaultCenter] addObserver: self
270         selector: @selector(soutInfoChanged:)
271         name: NSControlTextDidChangeNotification
272         object: o_sout_file_path];
273     [[NSNotificationCenter defaultCenter] addObserver: self
274         selector: @selector(soutInfoChanged:)
275         name: NSControlTextDidChangeNotification
276         object: o_sout_udp_addr];
277     [[NSNotificationCenter defaultCenter] addObserver: self
278         selector: @selector(soutInfoChanged:)
279         name: NSControlTextDidChangeNotification
280         object: o_sout_udp_port];
281 }
282
283 - (void)openTarget:(int)i_type
284 {
285     int i_result;
286
287     [o_tabview selectTabViewItemAtIndex: i_type];
288
289     i_result = [NSApp runModalForWindow: o_panel];
290     [o_panel close];
291
292     if( i_result )
293     {
294         NSString *o_sout = [o_sout_mrl stringValue];
295
296         if ( [o_sout_cbox state] )
297         {
298             intf_thread_t * p_intf = [NSApp getIntf];
299             config_PutPsz( p_intf, "sout", [o_sout lossyCString] );
300         }
301
302         NSString *o_source = [o_mrl stringValue];
303
304         [o_playlist appendArray: 
305             [NSArray arrayWithObject: o_source] atPos: -1];
306     }
307
308     [self soutModeChanged: nil];
309 }
310
311 - (void)tabView:(NSTabView *)o_tv didSelectTabViewItem:(NSTabViewItem *)o_tvi
312 {
313     NSString *o_label = [o_tvi label];
314
315     if( [o_label isEqualToString: _NS("File")] )
316     {
317         [self openFilePathChanged: nil];
318     }
319     else if( [o_label isEqualToString: _NS("Disc")] )
320     {
321         [self openDiscTypeChanged: nil];
322     }
323     else if( [o_label isEqualToString: _NS("Network")] )
324     {
325         [self openNetModeChanged: nil];
326     }  
327 }
328
329 - (IBAction)openFileGeneric:(id)sender
330 {
331     [self openFilePathChanged: nil];
332     [self openTarget: 0];
333 }
334
335 - (IBAction)openDisc:(id)sender
336 {
337     [self openDiscTypeChanged: nil];
338     [self openTarget: 1];
339 }
340
341 - (IBAction)openNet:(id)sender
342 {
343     [self openNetModeChanged: nil];
344     [self openTarget: 2];
345 }
346
347 - (void)openFilePathChanged:(NSNotification *)o_notification
348 {
349     NSString *o_mrl_string;
350     NSString *o_filename = [o_file_path stringValue];
351     vlc_bool_t b_stream = [o_file_stream state];
352
353     o_mrl_string = [NSString stringWithFormat: @"%s://%@",
354                     b_stream ? "stream" : "file",
355                     o_filename];
356     [o_mrl setStringValue: o_mrl_string]; 
357 }
358
359 - (IBAction)openFileBrowse:(id)sender
360 {
361     NSOpenPanel *o_open_panel = [NSOpenPanel openPanel];
362     
363     [o_open_panel setAllowsMultipleSelection: NO];
364     [o_open_panel setTitle: _NS("Open File")];
365     [o_open_panel setPrompt: _NS("Open")];
366
367     if( [o_open_panel runModalForDirectory: nil 
368             file: nil types: nil] == NSOKButton )
369     {
370         NSString *o_filename = [[o_open_panel filenames] objectAtIndex: 0];
371         [o_file_path setStringValue: o_filename];
372         [self openFilePathChanged: nil];
373     }
374 }
375
376 - (IBAction)openFileStreamChanged:(id)sender
377 {
378     [self openFilePathChanged: nil];
379 }
380
381 - (IBAction)openDiscTypeChanged:(id)sender
382 {
383     NSString *o_type;
384     vlc_bool_t b_device, b_menus, b_title_chapter;
385     
386     [o_disc_device removeAllItems];
387     b_title_chapter = ![o_disc_dvd_menus state];
388     
389     o_type = [[o_disc_type selectedCell] title];
390
391     if ( [o_type isEqualToString: _NS("VIDEO_TS folder")] )
392     {
393         b_device = 0; b_menus = 1;
394     }
395     else
396     {
397         NSArray *o_devices;
398         NSString *o_disc;
399         const char *psz_class = NULL;
400         b_device = 1;
401
402         if ( [o_type isEqualToString: _NS("VCD")] )
403         {
404             psz_class = kIOCDMediaClass;
405             o_disc = o_type;
406             b_menus = 0; b_title_chapter = 1;
407             [o_disc_dvd_menus setState: FALSE];
408         }
409         else
410         {
411             psz_class = kIODVDMediaClass;
412             o_disc = o_type;
413             b_menus = 1;
414         }
415     
416         o_devices = GetEjectableMediaOfClass( psz_class );
417         if ( o_devices != nil )
418         {
419             int i_devices = [o_devices count];
420         
421             if ( i_devices )
422             {
423                 int i;
424         
425                 for( i = 0; i < i_devices; i++ )
426                 {
427                     [o_disc_device 
428                         addItemWithObjectValue: [o_devices objectAtIndex: i]];
429                 }
430
431                 [o_disc_device selectItemAtIndex: 0];
432             }
433             else
434             {
435                 [o_disc_device setStringValue: 
436                     [NSString stringWithFormat: _NS("No %@s found"), o_disc]];
437             }
438         }
439     }
440
441     [o_disc_device setEnabled: b_device];
442     [o_disc_title setEnabled: b_title_chapter];
443     [o_disc_title_stp setEnabled: b_title_chapter];
444     [o_disc_chapter setEnabled: b_title_chapter];
445     [o_disc_chapter_stp setEnabled: b_title_chapter];
446     [o_disc_videots_folder setEnabled: !b_device];
447     [o_disc_videots_btn_browse setEnabled: !b_device];
448     [o_disc_dvd_menus setEnabled: b_menus];
449
450     [self openDiscInfoChanged: nil];
451 }
452
453 - (IBAction)openDiscStepperChanged:(id)sender
454 {
455     int i_tag = [sender tag];
456
457     if( i_tag == 0 )
458     {
459         [o_disc_title setIntValue: [o_disc_title_stp intValue]];
460     }
461     else if( i_tag == 1 )
462     {
463         [o_disc_chapter setIntValue: [o_disc_chapter_stp intValue]];
464     }
465
466     [self openDiscInfoChanged: nil];
467 }
468
469 - (void)openDiscInfoChanged:(NSNotification *)o_notification
470 {
471     NSString *o_type;
472     NSString *o_device;
473     NSString *o_videots;
474     NSString *o_mrl_string;
475     int i_title, i_chapter;
476     vlc_bool_t b_menus;
477
478     o_type = [[o_disc_type selectedCell] title];
479     o_device = [o_disc_device stringValue];
480     i_title = [o_disc_title intValue];
481     i_chapter = [o_disc_chapter intValue];
482     o_videots = [o_disc_videots_folder stringValue];
483     b_menus = [o_disc_dvd_menus state];
484
485     if ( [o_type isEqualToString: _NS("VCD")] )
486     {
487         if ( [o_device isEqualToString:
488                 [NSString stringWithFormat: _NS("No %@s found"), o_type]] )
489             o_device = @"";
490         o_mrl_string = [NSString stringWithFormat: @"vcd://%@@%i,%i",
491                         o_device, i_title, i_chapter]; 
492     }
493     else if ( [o_type isEqualToString: _NS("DVD")] )
494     {
495         if ( [o_device isEqualToString:
496                 [NSString stringWithFormat: _NS("No %@s found"), o_type]] )
497             o_device = @"";
498         if ( b_menus )
499             o_mrl_string = [NSString stringWithFormat: @"dvdplay://%@",
500                             o_device]; 
501         else
502             o_mrl_string = [NSString stringWithFormat: @"dvdold://%@@%i,%i",
503                             o_device, i_title, i_chapter]; 
504     }
505     else /* VIDEO_TS folder */
506     {
507         if ( b_menus )
508             o_mrl_string = [NSString stringWithFormat: @"dvdplay://%@",
509                             o_videots]; 
510         else
511             o_mrl_string = [NSString stringWithFormat: @"dvdread://%@@%i,%i",
512                             o_videots, i_title, i_chapter]; 
513     }
514
515     [o_mrl setStringValue: o_mrl_string]; 
516 }
517
518 - (IBAction)openDiscMenusChanged:(id)sender
519 {
520     [self openDiscInfoChanged: nil];
521     [self openDiscTypeChanged: nil];
522 }
523
524 - (IBAction)openVTSBrowse:(id)sender
525 {
526     NSOpenPanel *o_open_panel = [NSOpenPanel openPanel];
527
528     [o_open_panel setAllowsMultipleSelection: NO];
529     [o_open_panel setCanChooseFiles: NO];
530     [o_open_panel setCanChooseDirectories: YES];
531     [o_open_panel setTitle: _NS("Open VIDEO_TS Directory")];
532     [o_open_panel setPrompt: _NS("Open")];
533
534     if( [o_open_panel runModalForDirectory: nil
535             file: nil types: nil] == NSOKButton )
536     {
537         NSString *o_dirname = [[o_open_panel filenames] objectAtIndex: 0];
538         [o_disc_videots_folder setStringValue: o_dirname];
539         [self openDiscInfoChanged: nil];
540     }
541 }
542
543 - (IBAction)openNetModeChanged:(id)sender
544 {
545     NSString *o_mode;
546     BOOL b_udp = FALSE;
547     BOOL b_udpm = FALSE;
548     BOOL b_cs = FALSE;
549     BOOL b_http = FALSE;
550
551     o_mode = [[o_net_mode selectedCell] title];
552
553     if( [o_mode isEqualToString: _NS("UDP/RTP")] ) b_udp = TRUE;   
554     else if( [o_mode isEqualToString: _NS("UDP/RTP Multicast")] ) b_udpm = TRUE;
555     else if( [o_mode isEqualToString: _NS("Channel server")] ) b_cs = TRUE;
556     else if( [o_mode isEqualToString: _NS("HTTP/FTP/MMS")] ) b_http = TRUE;
557
558     [o_net_udp_port setEnabled: b_udp];
559     [o_net_udp_port_stp setEnabled: b_udp];
560     [o_net_udpm_addr setEnabled: b_udpm];
561     [o_net_udpm_port setEnabled: b_udpm];
562     [o_net_udpm_port_stp setEnabled: b_udpm];
563     [o_net_cs_addr setEnabled: b_cs];
564     [o_net_cs_port setEnabled: b_cs]; 
565     [o_net_cs_port_stp setEnabled: b_cs]; 
566     [o_net_http_url setEnabled: b_http];
567
568     [self openNetInfoChanged: nil];
569 }
570
571 - (IBAction)openNetStepperChanged:(id)sender
572 {
573     int i_tag = [sender tag];
574
575     if( i_tag == 0 )
576     {
577         [o_net_udp_port setIntValue: [o_net_udp_port_stp intValue]];
578     }
579     else if( i_tag == 1 )
580     {
581         [o_net_udpm_port setIntValue: [o_net_udpm_port_stp intValue]];
582     }
583     else if( i_tag == 2 )
584     {
585         [o_net_cs_port setIntValue: [o_net_cs_port_stp intValue]];
586     }
587
588     [self openNetInfoChanged: nil];
589 }
590
591 - (void)openNetInfoChanged:(NSNotification *)o_notification
592 {
593     NSString *o_mode;
594     vlc_bool_t b_channel;
595     NSString *o_mrl_string = [NSString string];
596     intf_thread_t * p_intf = [NSApp getIntf];
597
598     o_mode = [[o_net_mode selectedCell] title];
599
600     b_channel = (vlc_bool_t)[o_mode isEqualToString: _NS("Channel server")]; 
601     config_PutInt( p_intf, "network-channel", b_channel );
602
603     if( [o_mode isEqualToString: _NS("UDP/RTP")] )
604     {
605         int i_port = [o_net_udp_port intValue];
606
607         o_mrl_string = [NSString stringWithString: @"udp://"]; 
608
609         if( i_port != config_GetInt( p_intf, "server-port" ) )
610         {
611             o_mrl_string = 
612                 [o_mrl_string stringByAppendingFormat: @"@:%i", i_port]; 
613         } 
614     }
615     else if( [o_mode isEqualToString: _NS("UDP/RTP Multicast")] ) 
616     {
617         NSString *o_addr = [o_net_udpm_addr stringValue];
618         int i_port = [o_net_udpm_port intValue];
619
620         o_mrl_string = [NSString stringWithFormat: @"udp://@%@", o_addr]; 
621
622         if( i_port != config_GetInt( p_intf, "server-port" ) )
623         {
624             o_mrl_string = 
625                 [o_mrl_string stringByAppendingFormat: @":%i", i_port]; 
626         } 
627     }
628     else if( [o_mode isEqualToString: _NS("Channel server")] )
629     {
630         NSString *o_addr = [o_net_cs_addr stringValue];
631         int i_port = [o_net_cs_port intValue];
632
633         if( p_intf->p_vlc->p_channel == NULL )
634         {
635             network_ChannelCreate( p_intf );
636         } 
637
638         config_PutPsz( p_intf, "channel-server", [o_addr lossyCString] ); 
639         if( i_port < 65536 )
640         {
641             config_PutInt( p_intf, "channel-port", i_port );
642         }
643
644         /* FIXME: we should use a playlist server instead */
645         o_mrl_string = [NSString stringWithString: @"udp://"];
646     }
647     else if( [o_mode isEqualToString: _NS("HTTP/FTP/MMS")] )
648     {
649         NSString *o_url = [o_net_http_url stringValue];
650
651         if ( ![o_url hasPrefix:@"http:"] && ![o_url hasPrefix:@"ftp:"]
652               && ![o_url hasPrefix:@"mms"] )
653             o_mrl_string = [NSString stringWithFormat: @"http://%@", o_url];
654         else
655             o_mrl_string = o_url;
656     }
657
658     [o_mrl setStringValue: o_mrl_string];
659 }
660
661 - (IBAction)soutChanged:(id)sender;
662 {
663     [self soutModeChanged: nil];
664
665     if ( [o_sout_cbox state] )
666     {
667         NSPoint s_point;
668         s_point.x = 0;
669         s_point.y = 0;
670         [[o_panel contentView] setBoundsOrigin: s_point];
671         [[o_panel contentView] setNeedsDisplay: YES];
672
673         NSRect s_rect = [o_panel frame];
674         s_rect.size.height = OPEN_PANEL_FULL_HEIGHT + WINDOW_TITLE_HEIGHT;
675         s_rect.origin.y -= OPEN_PANEL_FULL_HEIGHT - OPEN_PANEL_SHORT_HEIGHT;
676         [o_panel setFrame: s_rect display: YES animate: NO];
677     }
678     else
679     {
680         NSPoint s_point;
681         s_point.x = 0;
682         s_point.y = OPEN_PANEL_FULL_HEIGHT - OPEN_PANEL_SHORT_HEIGHT;
683         [[o_panel contentView] setBoundsOrigin: s_point];
684         [[o_panel contentView] setNeedsDisplay: YES];
685
686         NSRect s_rect = [o_panel frame];
687         s_rect.size.height = OPEN_PANEL_SHORT_HEIGHT + WINDOW_TITLE_HEIGHT;
688         s_rect.origin.y += OPEN_PANEL_FULL_HEIGHT - OPEN_PANEL_SHORT_HEIGHT;
689         [o_panel setFrame: s_rect display: YES animate:NO];
690     }
691 }
692
693 - (IBAction)soutFileBrowse:(id)sender
694 {
695     NSSavePanel *o_save_panel = [NSSavePanel savePanel];
696     NSString *o_mux_string;
697     if ( [[[o_sout_mux selectedCell] title] isEqualToString: _NS("PS")] )
698         o_mux_string = @"vob";
699     else
700         o_mux_string = @"ts";
701
702     NSString * o_name = [NSString stringWithFormat: @"vlc-output.%@",
703                          o_mux_string];
704
705     [o_save_panel setTitle: _NS("Save File")];
706     [o_save_panel setPrompt: _NS("Save")];
707
708     if( [o_save_panel runModalForDirectory: nil
709             file: o_name] == NSOKButton )
710     {
711         NSString *o_filename = [o_save_panel filename];
712         [o_sout_file_path setStringValue: o_filename];
713         [self soutInfoChanged: nil];
714     }
715 }
716
717 - (void)soutModeChanged:(NSNotification *)o_notification
718 {
719     NSString *o_mode;
720     BOOL b_file = FALSE;
721     BOOL b_udp = FALSE;
722     BOOL b_rtp = FALSE;
723
724     o_mode = [[o_sout_access selectedCell] title];
725
726     if( [o_mode isEqualToString: _NS("File")] ) b_file = TRUE;   
727     else if( [o_mode isEqualToString: _NS("UDP")] ) b_udp = TRUE;
728     else if( [o_mode isEqualToString: _NS("RTP")] ) b_rtp = TRUE;
729
730     [o_sout_file_path setEnabled: b_file];
731     [o_sout_file_btn_browse setEnabled: b_file];
732     [o_sout_udp_addr setEnabled: b_udp|b_rtp];
733     [o_sout_udp_port setEnabled: b_udp|b_rtp];
734     [o_sout_udp_port_stp setEnabled: b_udp|b_rtp];
735     [[o_sout_mux cellAtRow:0 column: 0] setEnabled: !b_rtp];
736
737     if ( b_rtp )
738     {
739         [[o_sout_mux cellAtRow: 0 column:1] setState: YES];
740     }
741
742     [self soutInfoChanged: nil];
743 }
744
745 - (void)soutInfoChanged:(NSNotification *)o_notification
746 {
747     NSString *o_mode;
748     NSString *o_mux;
749     NSString *o_mrl_string;
750     NSString *o_mux_string;
751
752     o_mode = [[o_sout_access selectedCell] title];
753     o_mux = [[o_sout_mux selectedCell] title];
754
755     if ( [o_mux isEqualToString: _NS("PS")] ) o_mux_string = @"ps";
756     else o_mux_string = @"ts";
757
758     if ( [o_mode isEqualToString: _NS("File")] )
759     {
760         o_mrl_string = [NSString stringWithFormat: @"file/%@://%@",
761                         o_mux_string, [o_sout_file_path stringValue]];
762     }
763     else if ( [o_mode isEqualToString: _NS("UDP")] )
764     {
765         o_mrl_string = [NSString stringWithFormat: @"udp/%@://%@:%i",
766                         o_mux_string, [o_sout_udp_addr stringValue],
767                         [o_sout_udp_port intValue]];
768     }
769     else
770     {
771         o_mrl_string = [NSString stringWithFormat: @"rtp/%@://%@:%i",
772                         o_mux_string, [o_sout_udp_addr stringValue],
773                         [o_sout_udp_port intValue]];
774     }
775
776
777     [o_sout_mrl setStringValue: o_mrl_string];
778 }
779
780 - (IBAction)soutStepperChanged:(id)sender
781 {
782     [o_sout_udp_port setIntValue: [o_net_udp_port_stp intValue]];
783
784     [self soutInfoChanged: nil];
785 }
786
787 - (IBAction)openFile:(id)sender
788 {
789     NSOpenPanel *o_open_panel = [NSOpenPanel openPanel];
790
791     [o_open_panel setAllowsMultipleSelection: NO];
792     [o_open_panel setTitle: _NS("Open File")];
793     [o_open_panel setPrompt: _NS("Open")];
794
795     if( [o_open_panel runModalForDirectory: nil
796             file: nil types: nil] == NSOKButton )
797     {
798         intf_thread_t * p_intf = [NSApp getIntf];
799         config_PutPsz( p_intf, "sout", NULL );
800         [o_playlist appendArray: [o_open_panel filenames] atPos: -1];
801     }
802 }
803
804 - (IBAction)panelCancel:(id)sender
805 {
806     [NSApp stopModalWithCode: 0];
807 }
808
809 - (IBAction)panelOk:(id)sender
810 {
811     if( [[o_mrl stringValue] length] )
812     {
813         [NSApp stopModalWithCode: 1];
814     }
815     else
816     {
817         NSBeep();
818     }
819 }
820
821 @end