summaryrefslogtreecommitdiffstats
path: root/src/widget/weffectchain.h
blob: ffc0eb9ced9f364da2a0230cbadf0024d5d878f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#ifndef WEFFECTCHAIN_H
#define WEFFECTCHAIN_H

#include <QWidget>
#include <QLabel>
#include <QDomNode>

#include "effects/effectchainslot.h"
#include "widget/wlabel.h"
#include "skin/skincontext.h"

class EffectsManager;

class WEffectChain : public WLabel {
    Q_OBJECT
  public:
    WEffectChain(QWidget* pParent, EffectsManager* pEffectsManager);
    virtual ~WEffectChain();

    void setup(QDomNode node, const SkinContext& context);

  private slots:
    void chainUpdated();

  private:
    // Set the EffectChain that should be monitored by this WEffectChain
    void setEffectChainSlot(EffectChainSlotPointer pEffectChainSlot);

    EffectsManager* m_pEffectsManager;
    EffectChainSlotPointer m_pEffectChainSlot;
};

#endif /* WEFFECTCHAIN_H */