]> git.sesse.net Git - vlc/blobdiff - modules/gui/macosx/equalizer.h
macosx: get rid of the infamous 'get' prefixes everywhere and finally respect Cocoa...
[vlc] / modules / gui / macosx / equalizer.h
index 239cb27b049ceabcb2a9ba1edf9d2b02cd423bb7..e736be44f475c76f1459e7a506b5d4e1d6836fba 100644 (file)
@@ -1,16 +1,16 @@
 /*****************************************************************************
  * equalizer.h: MacOS X interface module
  *****************************************************************************
- * Copyright (C) 2004 VideoLAN (Centrale Réseaux) and its contributors
+ * Copyright (C) 2004-2008 the VideoLAN team
  * $Id$
  *
- * Authors: J\8er\99me Decoodt <djc@videolan.org>
+ * 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
  *
  * 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
 {
 - (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