Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-1.1
Commits
ebc092f4
Commit
ebc092f4
authored
Jan 06, 2003
by
Christophe Massiot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MacOS X port :
* New "stream output" area in the open panel.
parent
7f00f3bf
Changes
5
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
268 additions
and
31 deletions
+268
-31
extras/MacOSX/Resources/English.lproj/MainMenu.nib/classes.nib
...s/MacOSX/Resources/English.lproj/MainMenu.nib/classes.nib
+16
-0
extras/MacOSX/Resources/English.lproj/MainMenu.nib/info.nib
extras/MacOSX/Resources/English.lproj/MainMenu.nib/info.nib
+6
-2
extras/MacOSX/Resources/English.lproj/MainMenu.nib/objects.nib
...s/MacOSX/Resources/English.lproj/MainMenu.nib/objects.nib
+0
-0
modules/gui/macosx/open.h
modules/gui/macosx/open.h
+24
-1
modules/gui/macosx/open.m
modules/gui/macosx/open.m
+222
-28
No files found.
extras/MacOSX/Resources/English.lproj/MainMenu.nib/classes.nib
View file @
ebc092f4
...
...
@@ -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;
...
...
extras/MacOSX/Resources/English.lproj/MainMenu.nib/info.nib
View file @
ebc092f4
...
...
@@ -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>
...
...
extras/MacOSX/Resources/English.lproj/MainMenu.nib/objects.nib
View file @
ebc092f4
No preview for this file type
modules/gui/macosx/open.h
View file @
ebc092f4
...
...
@@ -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
;
...
...
modules/gui/macosx/open.m
View file @
ebc092f4
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment