MuseScore/effects/effectgui.h
2015-09-08 15:39:30 +02:00

43 lines
1.1 KiB
C++

//=============================================================================
// MuseSynth
// Music Software Synthesizer
//
// Copyright (C) 2013 Werner Schweer
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License version 2
// as published by the Free Software Foundation and appearing in
// the file LICENCE.GPL
//=============================================================================
#ifndef __EFFECTGUI_H__
#define __EFFECTGUI_H__
namespace Ms {
class Effect;
//---------------------------------------------------------
// EffectGui
//---------------------------------------------------------
class EffectGui : public QWidget {
Q_OBJECT
Effect* _effect;
signals:
void valueChanged();
public slots:
void valueChanged(const QString& name, qreal);
void valueChanged(qreal, int);
public:
EffectGui(Effect*, QWidget* parent = 0);
Effect* effect() const { return _effect; }
virtual void updateValues() = 0;
};
}
#endif