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
24653eff
Commit
24653eff
authored
Jan 07, 2008
by
Pierre d'Herbemont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MacOSX/VLC_app: Connect the Sound slider.
parent
f7b43e27
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
592 additions
and
588 deletions
+592
-588
extras/MacOSX/VLC_app/English.lproj/MainWindow.xib
extras/MacOSX/VLC_app/English.lproj/MainWindow.xib
+587
-588
extras/MacOSX/VLC_app/Sources/VLCMainWindow.h
extras/MacOSX/VLC_app/Sources/VLCMainWindow.h
+2
-0
extras/MacOSX/VLC_app/Sources/VLCMainWindow.m
extras/MacOSX/VLC_app/Sources/VLCMainWindow.m
+3
-0
No files found.
extras/MacOSX/VLC_app/English.lproj/MainWindow.xib
View file @
24653eff
This source diff could not be displayed because it is too large. You can
view the blob
instead.
extras/MacOSX/VLC_app/Sources/VLCMainWindow.h
View file @
24653eff
...
@@ -44,6 +44,8 @@
...
@@ -44,6 +44,8 @@
IBOutlet
NSTextField
*
mediaReadingProgressText
;
IBOutlet
NSTextField
*
mediaReadingProgressText
;
IBOutlet
NSTextField
*
mediaDescriptionText
;
IBOutlet
NSTextField
*
mediaDescriptionText
;
IBOutlet
NSSlider
*
mediaSoundVolume
;
IBOutlet
id
navigatorViewToggleButton
;
IBOutlet
id
navigatorViewToggleButton
;
IBOutlet
VLCOneSplitView
*
mainSplitView
;
IBOutlet
VLCOneSplitView
*
mainSplitView
;
IBOutlet
NSView
*
navigatorView
;
IBOutlet
NSView
*
navigatorView
;
...
...
extras/MacOSX/VLC_app/Sources/VLCMainWindow.m
View file @
24653eff
...
@@ -236,6 +236,9 @@
...
@@ -236,6 +236,9 @@
[
mainSplitView
setDelegate
:
self
];
[
mainSplitView
setDelegate
:
self
];
/* Sound */
[
mediaSoundVolume
bind
:
@"value"
toObject
:[
VLCLibrary
sharedLibrary
]
withKeyPath
:
@"audio.volume"
options
:
nil
];
/* Last minute setup */
/* Last minute setup */
[
categoriesListView
expandItem
:
nil
expandChildren
:
YES
];
[
categoriesListView
expandItem
:
nil
expandChildren
:
YES
];
[
categoriesListView
selectRowIndexes
:[
NSIndexSet
indexSetWithIndex
:[
categoriesListView
numberOfRows
]
>
0
?
[
categoriesListView
numberOfRows
]
-
1
:
0
]
byExtendingSelection
:
NO
];
[
categoriesListView
selectRowIndexes
:[
NSIndexSet
indexSetWithIndex
:[
categoriesListView
numberOfRows
]
>
0
?
[
categoriesListView
numberOfRows
]
-
1
:
0
]
byExtendingSelection
:
NO
];
...
...
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