Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
9be75cd6
Commit
9be75cd6
authored
Apr 18, 2009
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx: add respective popup menu item to save HTML playlists
parent
8b7e8225
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
4 deletions
+6
-4
extras/package/macosx/Resources/English.lproj/MainMenu.nib/info.nib
...kage/macosx/Resources/English.lproj/MainMenu.nib/info.nib
+3
-0
extras/package/macosx/Resources/English.lproj/MainMenu.nib/keyedobjects.nib
...osx/Resources/English.lproj/MainMenu.nib/keyedobjects.nib
+0
-0
modules/gui/macosx/playlist.m
modules/gui/macosx/playlist.m
+3
-4
No files found.
extras/package/macosx/Resources/English.lproj/MainMenu.nib/info.nib
View file @
9be75cd6
...
...
@@ -8,6 +8,8 @@
<dict>
<key>
2197
</key>
<string>
342 506 596 123 0 0 1280 778
</string>
<key>
2709
</key>
<string>
386 537 508 82 0 0 1280 778
</string>
<key>
29
</key>
<string>
391 728 438 44 0 0 1280 778
</string>
<key>
3568
</key>
...
...
@@ -28,6 +30,7 @@
<integer>
29
</integer>
<integer>
21
</integer>
<integer>
2197
</integer>
<integer>
2709
</integer>
</array>
<key>
IBSystem Version
</key>
<string>
9G55
</string>
...
...
extras/package/macosx/Resources/English.lproj/MainMenu.nib/keyedobjects.nib
View file @
9be75cd6
No preview for this file type
modules/gui/macosx/playlist.m
View file @
9be75cd6
/*****************************************************************************
* playlist.m: MacOS X interface module
*****************************************************************************
* Copyright (C) 2002-200
8
the VideoLAN team
* Copyright (C) 2002-200
9
the VideoLAN team
* $Id$
*
* Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
...
...
@@ -193,7 +193,7 @@
if
(
o_value
==
nil
)
{
/* Why is there a warning if that happens all the time and seems
/*
FIXME:
Why is there a warning if that happens all the time and seems
* to be normal? Add an assert and fix it.
* msg_Warn( VLCIntf, "playlist item misses pointer value, adding one" ); */
o_value
=
[[
NSValue
valueWithPointer
:
p_return
]
retain
];
...
...
@@ -462,7 +462,7 @@
[
o_save_accessory_text
setStringValue
:
_NS
(
"File Format:"
)];
[[
o_save_accessory_popup
itemAtIndex
:
0
]
setTitle
:
_NS
(
"Extended M3U"
)];
[[
o_save_accessory_popup
itemAtIndex
:
1
]
setTitle
:
_NS
(
"XML Shareable Playlist Format (XSPF)"
)];
[[
o_save_accessory_popup
itemAtIndex
:
2
]
setTitle
:
_NS
(
"HTML
p
laylist"
)];
[[
o_save_accessory_popup
itemAtIndex
:
2
]
setTitle
:
_NS
(
"HTML
P
laylist"
)];
}
-
(
void
)
playlistUpdated
...
...
@@ -712,7 +712,6 @@
NSSavePanel
*
o_save_panel
=
[
NSSavePanel
savePanel
];
NSString
*
o_name
=
[
NSString
stringWithFormat
:
@"%@"
,
_NS
(
"Untitled"
)];
//[o_save_panel setAllowedFileTypes: [NSArray arrayWithObjects: @"m3u", @"xpf", nil] ];
[
o_save_panel
setTitle
:
_NS
(
"Save Playlist"
)];
[
o_save_panel
setPrompt
:
_NS
(
"Save"
)];
[
o_save_panel
setAccessoryView
:
o_save_accessory_view
];
...
...
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