Michaël Lemaire
48ea553f49
git-svn-id: https://subversion.assembla.com/svn/thunderk/paysages@232 b1fd45b6-86a6-48da-8261-f70d1f35bdcc
28 lines
501 B
C++
28 lines
501 B
C++
#ifndef _PAYSAGES_QT_INPUTNOISE_H_
|
|
#define _PAYSAGES_QT_INPUTNOISE_H_
|
|
|
|
#include <QWidget>
|
|
#include "baseinput.h"
|
|
|
|
#include "../lib_paysages/noise.h"
|
|
|
|
class InputNoise:public BaseInput
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
InputNoise(QWidget* form, QString label, NoiseGenerator* value);
|
|
|
|
public slots:
|
|
virtual void updatePreview();
|
|
virtual void applyValue();
|
|
virtual void revert();
|
|
|
|
private slots:
|
|
void editNoise();
|
|
|
|
private:
|
|
NoiseGenerator* _value;
|
|
};
|
|
|
|
#endif // _PAYSAGES_QT_INPUTNOISE_H_
|