#ifndef CONTROLAUDIOTAPERPOT_H #define CONTROLAUDIOTAPERPOT_H #include "controlpotmeter.h" #include "configobject.h" class ControlAudioTaperPot : public ControlPotmeter { Q_OBJECT public: // The AudioTaperPot has a log scale, starting at -Infinity // minDB is the Start value of the pure db scale it cranked to -Infinity by the linear part of the AudioTaperPot // maxDB is the Upper gain Value // neutralParameter is a knob position between 0 and 1 where the gain is 1 (0dB) ControlAudioTaperPot(ConfigKey key, double minDB, double maxDB, double neutralParameter); }; #endif // CONTROLAUDIOTAPERPOT_H