summaryrefslogtreecommitdiff
path: root/attic/muse2-oom/muse2/muse/mixer/auxknob.h
diff options
context:
space:
mode:
Diffstat (limited to 'attic/muse2-oom/muse2/muse/mixer/auxknob.h')
-rw-r--r--attic/muse2-oom/muse2/muse/mixer/auxknob.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/attic/muse2-oom/muse2/muse/mixer/auxknob.h b/attic/muse2-oom/muse2/muse/mixer/auxknob.h
new file mode 100644
index 00000000..c2b8ec7a
--- /dev/null
+++ b/attic/muse2-oom/muse2/muse/mixer/auxknob.h
@@ -0,0 +1,33 @@
+//=========================================================
+// MusE
+// Linux Music Editor
+// $Id: auxknob.h,v 1.3 2003/11/08 15:10:18 wschweer Exp $
+//
+// (C) Copyright 2000 Werner Schweer (ws@seh.de)
+//=========================================================
+
+#ifndef __AUXKNOB_H__
+#define __AUXKNOB_H__
+
+#include "knob.h"
+
+//---------------------------------------------------------
+// AuxKnob
+//---------------------------------------------------------
+
+class AuxKnob : public Knob {
+ Q_OBJECT
+ int idx;
+
+ private slots:
+ void valueChanged(double v);
+
+ signals:
+ void auxChanged(int, double);
+
+ public:
+ AuxKnob(QWidget* parent, int idx);
+ };
+
+#endif
+