]> git.sesse.net Git - vlc/blobdiff - modules/gui/macosx/open.h
* Fix the play/pause button status
[vlc] / modules / gui / macosx / open.h
index 1cec9d1022461bde8cb7161b35e0beb10be27b74..16ad025b5e93e08803a9a5d912be8e63ca67c816 100644 (file)
@@ -1,10 +1,12 @@
 /*****************************************************************************
- * open.h: MacOS X plugin for vlc
+ * open.h: MacOS X module for vlc
  *****************************************************************************
- * Copyright (C) 2002 VideoLAN
- * $Id: open.h,v 1.2 2002/10/05 00:10:17 jlj Exp $
+ * Copyright (C) 2002-2003 VideoLAN
+ * $Id$
  *
- * Authors: Jon Lech Johansen <jon-vl@nanocrew.net> 
+ * Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
+ *          Christophe Massiot <massiot@via.ecp.fr>
+ *          Derk-Jan Hartman <thedj@users.sourceforge.net>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -33,6 +35,7 @@ NSArray *GetEjectableMediaOfClass( const char *psz_class );
     IBOutlet id o_panel;
 
     IBOutlet id o_mrl;
+    IBOutlet id o_mrl_lbl;
     IBOutlet id o_tabview;
 
     IBOutlet id o_btn_ok;
@@ -40,9 +43,9 @@ NSArray *GetEjectableMediaOfClass( const char *psz_class );
 
     IBOutlet id o_file_path;
     IBOutlet id o_file_btn_browse;
+    IBOutlet id o_file_stream;
 
     IBOutlet id o_disc_type;
-    IBOutlet id o_disc_type_lbl;
     IBOutlet id o_disc_device;
     IBOutlet id o_disc_device_lbl;
     IBOutlet id o_disc_title;
@@ -51,6 +54,9 @@ NSArray *GetEjectableMediaOfClass( const char *psz_class );
     IBOutlet id o_disc_chapter;
     IBOutlet id o_disc_chapter_lbl;
     IBOutlet id o_disc_chapter_stp;
+    IBOutlet id o_disc_videots_folder;
+    IBOutlet id o_disc_videots_btn_browse;
+    IBOutlet id o_disc_dvd_menus;
 
     IBOutlet id o_net_mode;
     IBOutlet id o_net_udp_port;
@@ -61,32 +67,59 @@ NSArray *GetEjectableMediaOfClass( const char *psz_class );
     IBOutlet id o_net_udpm_port;
     IBOutlet id o_net_udpm_port_lbl;
     IBOutlet id o_net_udpm_port_stp;
-    IBOutlet id o_net_cs_addr;
-    IBOutlet id o_net_cs_addr_lbl;
-    IBOutlet id o_net_cs_port;
-    IBOutlet id o_net_cs_port_lbl;
-    IBOutlet id o_net_cs_port_stp;
     IBOutlet id o_net_http_url;
     IBOutlet id o_net_http_url_lbl;
+
+    IBOutlet id o_file_sub_ckbox;
+    IBOutlet id o_file_sub_btn_settings;
+    IBOutlet id o_file_sub_sheet;
+    IBOutlet id o_file_sub_path;
+    IBOutlet id o_file_sub_btn_browse;
+    IBOutlet id o_file_sub_override;
+    IBOutlet id o_file_sub_delay;
+    IBOutlet id o_file_sub_delay_lbl;
+    IBOutlet id o_file_sub_delay_stp;
+    IBOutlet id o_file_sub_fps;
+    IBOutlet id o_file_sub_fps_lbl;
+    IBOutlet id o_file_sub_fps_stp;
+    IBOutlet id o_file_sub_ok_btn;
+    
+    IBOutlet id o_output_ckbox;
+    IBOutlet id o_sout_options;
 }
 
 - (void)openTarget:(int)i_type;
 - (void)tabView:(NSTabView *)o_tv didSelectTabViewItem:(NSTabViewItem *)o_tvi;
 
-- (IBAction)openFile:(id)sender;
+- (IBAction)openFileGeneric:(id)sender;
 - (void)openFilePathChanged:(NSNotification *)o_notification;
+- (IBAction)openFileBrowse:(id)sender;
+- (void) pathChosenInPanel: (NSOpenPanel *) sheet withReturn:(int)returnCode contextInfo:(void  *)contextInfo;
+- (IBAction)openFileStreamChanged:(id)sender;
 
 - (IBAction)openDisc:(id)sender;
 - (IBAction)openDiscTypeChanged:(id)sender;
 - (IBAction)openDiscStepperChanged:(id)sender;
 - (void)openDiscInfoChanged:(NSNotification *)o_notification;
+- (IBAction)openDiscMenusChanged:(id)sender;
+- (IBAction)openVTSBrowse:(id)sender;
 
 - (IBAction)openNet:(id)sender;
 - (IBAction)openNetModeChanged:(id)sender;
 - (IBAction)openNetStepperChanged:(id)sender;
 - (void)openNetInfoChanged:(NSNotification *)o_notification;
 
+- (IBAction)subsChanged:(id)sender;
+- (IBAction)subSettings:(id)sender;
+- (IBAction)subFileBrowse:(id)sender;
+- (IBAction)subOverride:(id)sender;
+- (IBAction)subDelayStepperChanged:(id)sender;
+- (IBAction)subFpsStepperChanged:(id)sender;
+- (IBAction)subCloseSheet:(id)sender;
+
 - (IBAction)panelCancel:(id)sender;
 - (IBAction)panelOk:(id)sender;
 
+- (IBAction)openFile:(id)sender;
+
 @end