Michaël Lemaire
818b8b7b86
git-svn-id: https://subversion.assembla.com/svn/thunderk/paysages@392 b1fd45b6-86a6-48da-8261-f70d1f35bdcc
33 lines
806 B
C++
33 lines
806 B
C++
#ifndef _PAYSAGES_QT_DIALOGHEIGHTMAP_H_
|
|
#define _PAYSAGES_QT_DIALOGHEIGHTMAP_H_
|
|
|
|
#include "tools.h"
|
|
#include "widgetheightmap.h"
|
|
#include "../lib_paysages/heightmap.h"
|
|
|
|
class DialogHeightMap : public DialogWithPreview
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit DialogHeightMap(QWidget* parent, HeightMap* heightmap);
|
|
static bool editHeightMap(QWidget* parent, HeightMap* heightmap);
|
|
|
|
public slots:
|
|
virtual void accept();
|
|
void revert();
|
|
|
|
private slots:
|
|
void angleHChanged(int value);
|
|
void angleVChanged(int value);
|
|
void brushModeChanged(int value);
|
|
void brushSizeChanged(int value);
|
|
void brushSmoothingChanged(int value);
|
|
void brushStrengthChanged(int value);
|
|
|
|
private:
|
|
HeightMap* _value_original;
|
|
HeightMap _value_modified;
|
|
WidgetHeightMap* _3dview;
|
|
};
|
|
|
|
#endif
|