Commit ebc092f4 authored by Christophe Massiot's avatar Christophe Massiot

MacOS X port :

* New "stream output" area in the open panel.
parent 7f00f3bf
......@@ -125,6 +125,10 @@
openVTSBrowse = id;
panelCancel = id;
panelOk = id;
soutChanged = id;
soutFileBrowse = id;
soutModeChanged = id;
soutStepperChanged = id;
};
CLASS = VLCOpen;
LANGUAGE = ObjC;
......@@ -166,6 +170,18 @@
"o_net_udpm_port_stp" = id;
"o_panel" = id;
"o_playlist" = id;
"o_sout_access" = id;
"o_sout_cbox" = id;
"o_sout_file_btn_browse" = id;
"o_sout_file_path" = id;
"o_sout_mrl" = id;
"o_sout_mrl_lbl" = id;
"o_sout_mux" = id;
"o_sout_udp_addr" = id;
"o_sout_udp_addr_lbl" = id;
"o_sout_udp_port" = id;
"o_sout_udp_port_lbl" = id;
"o_sout_udp_port_stp" = id;
"o_tabview" = id;
};
SUPERCLASS = NSObject;
......
......@@ -3,7 +3,7 @@
<plist version="1.0">
<dict>
<key>IBDocumentLocation</key>
<string>95 526 428 434 0 0 1600 1178 </string>
<string>33 278 428 434 0 0 1152 746 </string>
<key>IBEditorPositions</key>
<dict>
<key>29</key>
......@@ -11,12 +11,16 @@
<key>303</key>
<string>93 566 72 114 0 0 1600 1178 </string>
<key>909</key>
<string>761 663 440 172 0 0 1600 1178 </string>
<string>338 411 440 172 0 0 1152 746 </string>
<key>915</key>
<string>594 532 93 96 0 0 1600 1178 </string>
</dict>
<key>IBFramework Version</key>
<string>291.0</string>
<key>IBOpenObjects</key>
<array>
<integer>636</integer>
</array>
<key>IBSystem Version</key>
<string>6G30</string>
</dict>
......
......@@ -2,7 +2,7 @@
* open.h: MacOS X plugin for vlc
*****************************************************************************
* Copyright (C) 2002 VideoLAN
* $Id: open.h,v 1.5 2003/01/05 02:39:48 massiot Exp $
* $Id: open.h,v 1.6 2003/01/06 02:45:09 massiot Exp $
*
* Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
*
......@@ -23,6 +23,10 @@
NSArray *GetEjectableMediaOfClass( const char *psz_class );
#define OPEN_PANEL_FULL_HEIGHT 494
#define OPEN_PANEL_SHORT_HEIGHT 325
#define WINDOW_TITLE_HEIGHT 21
/*****************************************************************************
* Intf_Open interface
*****************************************************************************/
......@@ -72,6 +76,19 @@ NSArray *GetEjectableMediaOfClass( const char *psz_class );
IBOutlet id o_net_cs_port_stp;
IBOutlet id o_net_http_url;
IBOutlet id o_net_http_url_lbl;
IBOutlet id o_sout_cbox;
IBOutlet id o_sout_mrl_lbl;
IBOutlet id o_sout_mrl;
IBOutlet id o_sout_access;
IBOutlet id o_sout_file_path;
IBOutlet id o_sout_file_btn_browse;
IBOutlet id o_sout_udp_addr;
IBOutlet id o_sout_udp_addr_lbl;
IBOutlet id o_sout_udp_port;
IBOutlet id o_sout_udp_port_lbl;
IBOutlet id o_sout_udp_port_stp;
IBOutlet id o_sout_mux;
}
- (void)openTarget:(int)i_type;
......@@ -94,6 +111,12 @@ NSArray *GetEjectableMediaOfClass( const char *psz_class );
- (IBAction)openNetStepperChanged:(id)sender;
- (void)openNetInfoChanged:(NSNotification *)o_notification;
- (IBAction)soutChanged:(id)sender;
- (IBAction)soutFileBrowse:(id)sender;
- (void)soutModeChanged:(NSNotification *)o_notification;
- (void)soutInfoChanged:(NSNotification *)o_notification;
- (IBAction)soutStepperChanged:(id)sender;
- (IBAction)panelCancel:(id)sender;
- (IBAction)panelOk:(id)sender;
......
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment