summaryrefslogtreecommitdiffstats
path: root/src/widget/weffectchain.h
diff options
context:
space:
mode:
authorRJ Ryan <rryan@mixxx.org>2013-06-19 01:12:50 -0400
committerRJ Ryan <rryan@mixxx.org>2013-06-19 01:12:50 -0400
commit52d6c28ded7b3d7e9ae3874fc893c6b306147931 (patch)
treea2729bd5686b5c13684510d0196862a76c8aedab /src/widget/weffectchain.h
parentf62fd9ee125cbd22be97ce5f837f30b8ef443842 (diff)
parent25d57b59dff3947212909634864dd82365c9606b (diff)
Merge branch 'master' into features_effects
Conflicts: res/skins/Outline1024x600-Netbook/keylock-off-Ch1.png res/skins/Outline1024x600-Netbook/keylock-off-Ch2.png res/skins/Outline1024x600-Netbook/keylock-on-Ch1.png res/skins/Outline1024x600-Netbook/keylock-on-Ch2.png
Diffstat (limited to 'src/widget/weffectchain.h')
-rw-r--r--src/widget/weffectchain.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/widget/weffectchain.h b/src/widget/weffectchain.h
new file mode 100644
index 0000000000..273dfbd5b1
--- /dev/null
+++ b/src/widget/weffectchain.h
@@ -0,0 +1,25 @@
+#ifndef WEFFECTCHAIN_H
+#define WEFFECTCHAIN_H
+
+#include <QWidget>
+#include <QLabel>
+
+#include "effects/effectchainslot.h"
+
+class WEffectChain : public QLabel {
+ Q_OBJECT
+ public:
+ WEffectChain(QWidget* pParent=NULL);
+ virtual ~WEffectChain();
+
+ // Set the EffectChain that should be monitored by this WEffectChain
+ void setEffectChainSlot(EffectChainSlotPointer pEffectChainSlot);
+
+ private slots:
+ void chainUpdated();
+
+ private:
+ EffectChainSlotPointer m_pEffectChainSlot;
+};
+
+#endif /* WEFFECTCHAIN_H */