]> git.sesse.net Git - vlc/blobdiff - modules/gui/macosx/output.h
Make the playlist info window a new object
[vlc] / modules / gui / macosx / output.h
index 86fe9745a36d0279ebd16e78b5ebda1cdb014770..357e47313b8abe8d09214e72e4c1bae884e12eb2 100644 (file)
@@ -2,7 +2,7 @@
  * output.h: MacOS X Output Dialog
  *****************************************************************************
  * Copyright (C) 2002-2003 VideoLAN
- * $Id: output.h,v 1.1 2003/04/30 23:58:56 hartman Exp $
+ * $Id$
  *
  * Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
  *          Christophe Massiot <massiot@via.ecp.fr>
@@ -38,6 +38,7 @@
     IBOutlet id o_display;
     IBOutlet id o_method;
     IBOutlet id o_file_field;
+    IBOutlet id o_dump_chkbox;
     IBOutlet id o_btn_browse;
     IBOutlet id o_stream_address;
     IBOutlet id o_stream_address_lbl;
@@ -55,6 +56,8 @@
     
     IBOutlet id o_transcode_audio_bitrate;
     IBOutlet id o_transcode_audio_bitrate_lbl;
+    IBOutlet id o_transcode_audio_channels;
+    IBOutlet id o_transcode_audio_channels_lbl;
     IBOutlet id o_transcode_audio_chkbox;
     IBOutlet id o_transcode_audio_selector;
     IBOutlet id o_transcode_lbl;
     IBOutlet id o_transcode_video_chkbox;
     IBOutlet id o_transcode_video_selector;
     
+    IBOutlet id o_misc_lbl;
+    IBOutlet id o_sap_chkbox;
+    IBOutlet id o_slp_chkbox;
+    IBOutlet id o_channel_name;
+    IBOutlet id o_channel_name_lbl;
+    
     NSString *o_mrl;
     NSString *o_transcode;
 }
 
 - (void)setMRL:(NSString *)o_mrl_string;
+- (NSString *)getMRL;
 - (void)setTranscode:(NSString *)o_transcode_string;
 
 - (void)initStrings;
@@ -81,5 +91,5 @@
 - (IBAction)outputFileBrowse:(id)sender;
 - (void)transcodeChanged:(NSNotification *)o_notification;
 - (void)transcodeInfoChanged:(NSNotification *)o_notification;
-
+- (IBAction)announceChanged:(id)sender;
 @end