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
0fb77aee
Commit
0fb77aee
authored
Jul 19, 2011
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx: removed no longer needed equalizer class
parent
b2d8179b
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
2 additions
and
538 deletions
+2
-538
extras/package/macosx/vlc.xcodeproj/project.pbxproj
extras/package/macosx/vlc.xcodeproj/project.pbxproj
+2
-0
modules/gui/macosx/Modules.am
modules/gui/macosx/Modules.am
+0
-2
modules/gui/macosx/equalizer.h
modules/gui/macosx/equalizer.h
+0
-63
modules/gui/macosx/equalizer.m
modules/gui/macosx/equalizer.m
+0
-473
No files found.
extras/package/macosx/vlc.xcodeproj/project.pbxproj
View file @
0fb77aee
...
...
@@ -480,6 +480,7 @@
CCD590F110E5B73200D39094
/* dialogProvider.m */
=
{
isa
=
PBXFileReference
;
fileEncoding
=
4
;
lastKnownFileType
=
sourcecode.c.objc
;
name
=
dialogProvider.m
;
path
=
../../../modules/gui/macosx_dialog_provider/dialogProvider.m
;
sourceTree
=
SOURCE_ROOT
;
};
CCD590F210E5B76300D39094
/* VLCLoginPanel.h */
=
{
isa
=
PBXFileReference
;
fileEncoding
=
4
;
lastKnownFileType
=
sourcecode.c.h
;
name
=
VLCLoginPanel.h
;
path
=
../../../modules/gui/macosx_dialog_provider/VLCLoginPanel.h
;
sourceTree
=
SOURCE_ROOT
;
};
CCD590F310E5B76300D39094
/* VLCLoginPanel.m */
=
{
isa
=
PBXFileReference
;
fileEncoding
=
4
;
lastKnownFileType
=
sourcecode.c.objc
;
name
=
VLCLoginPanel.m
;
path
=
../../../modules/gui/macosx_dialog_provider/VLCLoginPanel.m
;
sourceTree
=
SOURCE_ROOT
;
};
CCDBA3B313D32E200006127B
/* macosx.m */
=
{
isa
=
PBXFileReference
;
lastKnownFileType
=
sourcecode.c.objc
;
name
=
macosx.m
;
path
=
../../../modules/video_output/macosx.m
;
sourceTree
=
"<group>"
;
};
CCF0777913659A8000AF19FD
/* SPInvocationGrabbing.h */
=
{
isa
=
PBXFileReference
;
lastKnownFileType
=
sourcecode.c.h
;
name
=
SPInvocationGrabbing.h
;
path
=
../../../modules/gui/macosx/SPInvocationGrabbing.h
;
sourceTree
=
"<group>"
;
};
CCF0777A13659A8000AF19FD
/* SPInvocationGrabbing.m */
=
{
isa
=
PBXFileReference
;
lastKnownFileType
=
sourcecode.c.objc
;
name
=
SPInvocationGrabbing.m
;
path
=
../../../modules/gui/macosx/SPInvocationGrabbing.m
;
sourceTree
=
"<group>"
;
};
CCF0777B13659A8000AF19FD
/* SPMediaKeyTap.h */
=
{
isa
=
PBXFileReference
;
lastKnownFileType
=
sourcecode.c.h
;
name
=
SPMediaKeyTap.h
;
path
=
../../../modules/gui/macosx/SPMediaKeyTap.h
;
sourceTree
=
"<group>"
;
};
...
...
@@ -871,6 +872,7 @@
CC6C01BA0DDF3EEC00C7D754
/* auhal.c */
,
CCC895830D9A8A82005AE59C
/* eyetv.m */
,
CC9E3E7913D1CFCF00429A71
/* qtcapture.m */
,
CCDBA3B313D32E200006127B
/* macosx.m */
,
);
name
=
"OSX-specific source files"
;
sourceTree
=
"<group>"
;
...
...
modules/gui/macosx/Modules.am
View file @
0fb77aee
...
...
@@ -22,8 +22,6 @@ SOURCES_macosx = \
applescript.m \
controls.h \
controls.m \
equalizer.m \
equalizer.h \
coredialogs.m \
coredialogs.h \
intf.m \
...
...
modules/gui/macosx/equalizer.h
deleted
100644 → 0
View file @
b2d8179b
/*****************************************************************************
* equalizer.h: MacOS X interface module
*****************************************************************************
* Copyright (C) 2004-2008 the VideoLAN team
* $Id$
*
* Authors: Jérôme Decoodt <djc@videolan.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
/*****************************************************************************
* VLCEqualizer interface
*****************************************************************************/
@interface
VLCEqualizer
:
NSObject
{
IBOutlet
id
o_btn_equalizer
;
IBOutlet
id
o_ckb_2pass
;
IBOutlet
id
o_ckb_enable
;
IBOutlet
id
o_fld_preamp
;
IBOutlet
id
o_popup_presets
;
IBOutlet
id
o_slider_band1
;
IBOutlet
id
o_slider_band10
;
IBOutlet
id
o_slider_band2
;
IBOutlet
id
o_slider_band3
;
IBOutlet
id
o_slider_band4
;
IBOutlet
id
o_slider_band5
;
IBOutlet
id
o_slider_band6
;
IBOutlet
id
o_slider_band7
;
IBOutlet
id
o_slider_band8
;
IBOutlet
id
o_slider_band9
;
IBOutlet
id
o_slider_preamp
;
IBOutlet
id
o_window
;
}
-
(
void
)
initStrings
;
-
(
void
)
equalizerUpdated
;
-
(
IBAction
)
bandSliderUpdated
:(
id
)
sender
;
-
(
IBAction
)
changePreset
:(
id
)
sender
;
-
(
IBAction
)
enable
:(
id
)
sender
;
-
(
IBAction
)
preampSliderUpdated
:(
id
)
sender
;
-
(
IBAction
)
toggleWindow
:(
id
)
sender
;
-
(
IBAction
)
twopass
:(
id
)
sender
;
-
(
void
)
windowWillClose
:(
NSNotification
*
)
aNotification
;
-
(
void
)
awakeFromNib
;
-
(
void
)
setValue
:
(
float
)
value
forSlider
:
(
int
)
index
;
-
(
id
)
sliderByIndex
:
(
int
)
index
;
-
(
void
)
setBandSlidersValues
:
(
float
*
)
values
;
-
(
void
)
initBandSliders
;
@end
modules/gui/macosx/equalizer.m
deleted
100644 → 0
View file @
b2d8179b
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