X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Fgui%2Fmacosx%2Fequalizer.h;h=2d5967003cb0420df2660d882b0df1a7ced9cebc;hb=41b8c2e1f660c767ee7a96ab69204b94b1470ca8;hp=6daea0cb4b1626183a062ec4bd0a6756465e7416;hpb=9ceb12b95d08b28d12a819cd2abac3ce0e43f308;p=vlc diff --git a/modules/gui/macosx/equalizer.h b/modules/gui/macosx/equalizer.h index 6daea0cb4b..2d5967003c 100644 --- a/modules/gui/macosx/equalizer.h +++ b/modules/gui/macosx/equalizer.h @@ -1,16 +1,16 @@ /***************************************************************************** * equalizer.h: MacOS X interface module ***************************************************************************** - * Copyright (C) 2004 VideoLAN + * Copyright (C) 2004-2008 the VideoLAN team * $Id$ * - * Authors: JŽr™me Decoodt + * Authors: Jérôme Decoodt * * 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 @@ -18,15 +18,16 @@ * * 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., 59 Temple Place - Suite 330, Boston, MA 02111, USA. + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/ /***************************************************************************** - * VLCEqualizer interface + * VLCEqualizer interface *****************************************************************************/ @interface VLCEqualizer : NSObject { IBOutlet id o_btn_equalizer; + IBOutlet id o_btn_equalizer_embedded; IBOutlet id o_ckb_2pass; IBOutlet id o_ckb_enable; IBOutlet id o_fld_preamp; @@ -54,4 +55,10 @@ - (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