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
b48dc524
Commit
b48dc524
authored
Nov 16, 2003
by
Benjamin Pracht
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added random, repeat one and repeat all checkboxes to the playlist
parent
63197875
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
17 additions
and
5 deletions
+17
-5
extras/MacOSX/Resources/English.lproj/MainMenu.nib/classes.nib
...s/MacOSX/Resources/English.lproj/MainMenu.nib/classes.nib
+3
-0
extras/MacOSX/Resources/English.lproj/MainMenu.nib/info.nib
extras/MacOSX/Resources/English.lproj/MainMenu.nib/info.nib
+5
-3
extras/MacOSX/Resources/English.lproj/MainMenu.nib/objects.nib
...s/MacOSX/Resources/English.lproj/MainMenu.nib/objects.nib
+0
-0
modules/gui/macosx/playlist.h
modules/gui/macosx/playlist.h
+5
-1
modules/gui/macosx/playlist.m
modules/gui/macosx/playlist.m
+4
-1
No files found.
extras/MacOSX/Resources/English.lproj/MainMenu.nib/classes.nib
View file @
b48dc524
...
...
@@ -331,10 +331,13 @@
LANGUAGE = ObjC;
OUTLETS = {
"o_ctx_menu" = id;
"o_loop_ckb" = id;
"o_mi_delete" = id;
"o_mi_play" = id;
"o_mi_save_playlist" = id;
"o_mi_selectall" = id;
"o_random_ckb" = id;
"o_repeat_ckb" = id;
"o_status_field" = id;
"o_table_view" = id;
"o_tc_author" = id;
...
...
extras/MacOSX/Resources/English.lproj/MainMenu.nib/info.nib
View file @
b48dc524
...
...
@@ -3,15 +3,15 @@
<plist
version=
"1.0"
>
<dict>
<key>
IBDocumentLocation
</key>
<string>
27 143 356 496 0 0 1280 1002
</string>
<string>
502 132 505 541 0 0 1024 746
</string>
<key>
IBEditorPositions
</key>
<dict>
<key>
1617
</key>
<string>
691 686 104 149 0 0 1280 1002
</string>
<key>
29
</key>
<string>
1
65 930 419 44 0 0 1280 1002
</string>
<string>
1
16 681 419 44 0 0 1024 746
</string>
<key>
915
</key>
<string>
439 657 93 99 0 0 1280 1002
</string>
<string>
344 471 93 99 0 0 1024 746
</string>
</dict>
<key>
IBFramework Version
</key>
<string>
349.0
</string>
...
...
@@ -19,8 +19,10 @@
<array/>
<key>
IBOpenObjects
</key>
<array>
<integer>
915
</integer>
<integer>
29
</integer>
<integer>
21
</integer>
<integer>
1647
</integer>
</array>
<key>
IBSystem Version
</key>
<string>
7C107
</string>
...
...
extras/MacOSX/Resources/English.lproj/MainMenu.nib/objects.nib
View file @
b48dc524
No preview for this file type
modules/gui/macosx/playlist.h
View file @
b48dc524
...
...
@@ -2,7 +2,7 @@
* playlist.h: MacOS X interface plugin
*****************************************************************************
* Copyright (C) 2002-2003 VideoLAN
* $Id: playlist.h,v 1.1
2 2003/11/12 01:22:40 hartma
n Exp $
* $Id: playlist.h,v 1.1
3 2003/11/16 11:21:48 bigbe
n Exp $
*
* Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
* Derk-Jan Hartman <thedj@users.sourceforge.net>
...
...
@@ -50,6 +50,10 @@
IBOutlet
id
o_mi_play
;
IBOutlet
id
o_mi_delete
;
IBOutlet
id
o_mi_selectall
;
IBOutlet
id
o_random_ckb
;
IBOutlet
id
o_loop_ckb
;
IBOutlet
id
o_repeat_ckb
;
}
-
(
NSMenu
*
)
menuForEvent
:(
NSEvent
*
)
o_event
;
...
...
modules/gui/macosx/playlist.m
View file @
b48dc524
...
...
@@ -2,7 +2,7 @@
* playlist.m: MacOS X interface plugin
*****************************************************************************
* Copyright (C) 2002-2003 VideoLAN
* $Id: playlist.m,v 1.3
8 2003/11/15 22:42:16 hartma
n Exp $
* $Id: playlist.m,v 1.3
9 2003/11/16 11:21:48 bigbe
n Exp $
*
* Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
* Derk-Jan Hartman <thedj@users.sourceforge.net>
...
...
@@ -140,6 +140,9 @@
[
o_mi_selectall
setTitle
:
_NS
(
"Select All"
)];
[[
o_tc_name
headerCell
]
setStringValue
:
_NS
(
"Name"
)];
[[
o_tc_author
headerCell
]
setStringValue
:
_NS
(
"Author"
)];
[
o_random_ckb
setTitle
:
_NS
(
"Random"
)];
[
o_loop_ckb
setTitle
:
_NS
(
"Repeat All"
)];
[
o_repeat_ckb
setTitle
:
_NS
(
"Repeat One"
)];
}
-
(
BOOL
)
tableView
:(
NSTableView
*
)
o_tv
...
...
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