summaryrefslogtreecommitdiffstats
path: root/src/widget/weffectchain.h
diff options
context:
space:
mode:
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 */