Main Page | Modules | Class Hierarchy | Class List | Directories | File List | Class Members | File Members | Related Pages

equalizer.h

00001 /*****************************************************************************
00002  * equalizer.h: MacOS X interface module
00003  *****************************************************************************
00004  * Copyright (C) 2004 the VideoLAN team
00005  * $Id: equalizer.h 11818 2005-07-23 15:08:46Z fkuehne $
00006  *
00007  * Authors: JŽr™me Decoodt <[email protected]>
00008  *
00009  * This program is free software; you can redistribute it and/or modify
00010  * it under the terms of the GNU General Public License as published by
00011  * the Free Software Foundation; either version 2 of the License, or
00012  * (at your option) any later version.
00013  * 
00014  * This program is distributed in the hope that it will be useful,
00015  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00016  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00017  * GNU General Public License for more details.
00018  *
00019  * You should have received a copy of the GNU General Public License
00020  * along with this program; if not, write to the Free Software
00021  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
00022  *****************************************************************************/
00023 
00024 /*****************************************************************************
00025  * VLCEqualizer interface 
00026  *****************************************************************************/
00027 @interface VLCEqualizer : NSObject
00028 {
00029     IBOutlet id o_btn_equalizer;
00030     IBOutlet id o_ckb_2pass;
00031     IBOutlet id o_ckb_enable;
00032     IBOutlet id o_fld_preamp;
00033     IBOutlet id o_popup_presets;
00034     IBOutlet id o_slider_band1;
00035     IBOutlet id o_slider_band10;
00036     IBOutlet id o_slider_band2;
00037     IBOutlet id o_slider_band3;
00038     IBOutlet id o_slider_band4;
00039     IBOutlet id o_slider_band5;
00040     IBOutlet id o_slider_band6;
00041     IBOutlet id o_slider_band7;
00042     IBOutlet id o_slider_band8;
00043     IBOutlet id o_slider_band9;
00044     IBOutlet id o_slider_preamp;
00045     IBOutlet id o_window;
00046 }
00047 - (void)initStrings;
00048 - (void)equalizerUpdated;
00049 - (IBAction)bandSliderUpdated:(id)sender;
00050 - (IBAction)changePreset:(id)sender;
00051 - (IBAction)enable:(id)sender;
00052 - (IBAction)preampSliderUpdated:(id)sender;
00053 - (IBAction)toggleWindow:(id)sender;
00054 - (IBAction)twopass:(id)sender;
00055 - (void)windowWillClose:(NSNotification *)aNotification;
00056 - (void)awakeFromNib;
00057 
00058 - (void)setValue:(float)value forSlider:(int)index;
00059 - (id)getSliderByIndex:(int)index;
00060 - (void)setBandSlidersValues:(float *)values;
00061 - (void)initBandSliders;
00062 
00063 
00064 @end

Generated on Tue Dec 20 10:14:38 2005 for vlc-0.8.4a by  doxygen 1.4.2