]> git.sesse.net Git - vlc/blobdiff - modules/gui/macosx/equalizer.h
*.nib: continuous sliders
[vlc] / modules / gui / macosx / equalizer.h
index 9fd2f002bdfcc393414b32db98f2cbfa4c144609..6daea0cb4b1626183a062ec4bd0a6756465e7416 100644 (file)
@@ -2,7 +2,7 @@
  * equalizer.h: MacOS X interface module
  *****************************************************************************
  * Copyright (C) 2004 VideoLAN
- * $Id: equalizer.h 1 2004-08-07 23:51:00Z djc $
+ * $Id$
  *
  * Authors: J\8er\99me Decoodt <djc@videolan.org>
  *
  *****************************************************************************/
 @interface VLCEqualizer : NSObject
 {
-    IBOutlet id o_btn_2pass;
-    IBOutlet id o_btn_enable;
     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_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;
 @end