Michaël Lemaire
c0db22b200
git-svn-id: https://subversion.assembla.com/svn/thunderk/paysages@333 b1fd45b6-86a6-48da-8261-f70d1f35bdcc
48 lines
1,002 B
C++
48 lines
1,002 B
C++
#ifndef _PAYSAGES_QT_DIALOGNOISE_H_
|
|
#define _PAYSAGES_QT_DIALOGNOISE_H_
|
|
|
|
#include <QListWidget>
|
|
#include "basepreview.h"
|
|
#include "tools.h"
|
|
|
|
#include "../lib_paysages/noise.h"
|
|
|
|
class DialogNoise : public DialogWithPreview
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit DialogNoise(QWidget* parent, NoiseGenerator* noise);
|
|
~DialogNoise();
|
|
|
|
static bool getNoise(QWidget* parent, NoiseGenerator* noise);
|
|
|
|
public slots:
|
|
virtual void accept();
|
|
void revert();
|
|
|
|
protected:
|
|
virtual void closeEvent(QCloseEvent* e);
|
|
|
|
private:
|
|
void revertToCurrent();
|
|
|
|
private slots:
|
|
void addLevel();
|
|
void removeLevel();
|
|
void levelChanged(int row);
|
|
void heightChanged(int value);
|
|
void scalingChanged(int value);
|
|
|
|
private:
|
|
NoiseGenerator* _base;
|
|
NoiseGenerator* _current;
|
|
int _current_level;
|
|
NoiseLevel _current_level_params;
|
|
BasePreview* previewLevel;
|
|
BasePreview* previewTotal;
|
|
QListWidget* levels;
|
|
QSlider* slider_height;
|
|
QSlider* slider_scaling;
|
|
};
|
|
|
|
#endif
|