2014-08-28 13:09:47 +00:00
|
|
|
#ifndef WATERMODELER_H
|
|
|
|
#define WATERMODELER_H
|
|
|
|
|
2015-08-20 22:25:34 +00:00
|
|
|
#include <QObject>
|
|
|
|
|
2014-08-28 13:09:47 +00:00
|
|
|
#include "modeler_global.h"
|
|
|
|
|
|
|
|
namespace paysages {
|
|
|
|
namespace modeler {
|
|
|
|
|
2015-11-09 21:30:46 +00:00
|
|
|
class WaterModeler : public QObject {
|
2015-08-20 22:25:34 +00:00
|
|
|
Q_OBJECT
|
2015-11-09 21:30:46 +00:00
|
|
|
public:
|
2015-08-20 22:25:34 +00:00
|
|
|
WaterModeler(MainModelerWindow *ui);
|
2015-08-18 23:17:49 +00:00
|
|
|
~WaterModeler();
|
2014-08-28 13:09:47 +00:00
|
|
|
|
2015-11-09 21:30:46 +00:00
|
|
|
public slots:
|
2015-08-20 22:25:34 +00:00
|
|
|
void enableRendering(bool enable);
|
|
|
|
|
2015-11-09 21:30:46 +00:00
|
|
|
private:
|
2015-08-20 22:25:34 +00:00
|
|
|
MainModelerWindow *ui;
|
2015-09-08 21:52:34 +00:00
|
|
|
IntPropertyBind *prop_model;
|
|
|
|
FloatPropertyBind *prop_height;
|
|
|
|
FloatPropertyBind *prop_reflexion;
|
2014-08-28 13:09:47 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // WATERMODELER_H
|