summaryrefslogtreecommitdiffstats
path: root/src/controleffectknob.h
diff options
context:
space:
mode:
authorDaniel Schürmann <daschuer@mixxx.org>2014-03-26 00:27:16 +0100
committerDaniel Schürmann <daschuer@mixxx.org>2014-03-26 00:27:16 +0100
commitd9328a09fc2efc463fa34d066f601581280b05f4 (patch)
tree46da9a78843327ee2ffcf3fe2b09fda57f736d7d /src/controleffectknob.h
parent1029041e7c6e244a30cc2cc46d1ea811569fa6b7 (diff)
added controleffectknob.cpp
Diffstat (limited to 'src/controleffectknob.h')
-rw-r--r--src/controleffectknob.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/controleffectknob.h b/src/controleffectknob.h
new file mode 100644
index 0000000000..792352e064
--- /dev/null
+++ b/src/controleffectknob.h
@@ -0,0 +1,15 @@
+#ifndef CONTROLEFFECTKNOB_H
+#define CONTROLEFFECTKNOB_H
+
+#include "controlpotmeter.h"
+
+class ControlEffectKnob : public ControlPotmeter {
+ Q_OBJECT
+ public:
+ ControlEffectKnob(ConfigKey key, double dMinValue = 0.0, double dMaxValue = 1.0);
+ void setType(double type);
+ private:
+ double m_type;
+};
+
+#endif // CONTROLLEFFECTKNOB_H