]> git.sesse.net Git - vlc/blobdiff - modules/gui/qt4/components/extended_panels.hpp
Fix most of the issues of the Equalizer.
[vlc] / modules / gui / qt4 / components / extended_panels.hpp
index f81eb515ec9bf8aff4cea859d498efa3cceb7ec2..fd56a253314e23b7cdaa3c4847cd9fe66e8c2765 100644 (file)
@@ -94,6 +94,8 @@ public:
     virtual ~Equalizer();
     QComboBox *presetsComboBox;
 
+    char * createValuesFromPreset( int i_preset );
+    void updateUIFromCore();
 private:
     Ui::EqualizerWidget ui;
     QSlider *bands[BANDS];
@@ -101,8 +103,6 @@ private:
 
     void delCallbacks( aout_instance_t * );
     void addCallbacks( aout_instance_t * );
-    void updateUIValues( char *, float );
-    char * createValuesFromPreset( int i_preset );
 
     intf_thread_t *p_intf;
 private slots:
@@ -110,8 +110,9 @@ private slots:
     void enable();
     void set2Pass();
     void setPreamp();
-    void changeCoreBands();
-    void setPreset(int);
+    void setCoreBands();
+    void setCorePreset(int);
+    void updateUISliderValues( int );
 };
 
 class Spatializer: public QWidget