Michaël Lemaire
73f15a44f7
git-svn-id: https://subversion.assembla.com/svn/thunderk/paysages@205 b1fd45b6-86a6-48da-8261-f70d1f35bdcc
32 lines
471 B
C++
32 lines
471 B
C++
#ifndef FORMWATER_H
|
|
#define FORMWATER_H
|
|
|
|
#include <QWidget>
|
|
#include "preview.h"
|
|
|
|
namespace Ui {
|
|
class FormWater;
|
|
}
|
|
|
|
class FormWater : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit FormWater(QWidget *parent = 0);
|
|
~FormWater();
|
|
|
|
void dataUpdated();
|
|
|
|
public slots:
|
|
void configChange();
|
|
void applyConfig();
|
|
void revertConfig();
|
|
|
|
private:
|
|
Ui::FormWater *ui;
|
|
Preview* previewCoverage;
|
|
Preview* previewColor;
|
|
};
|
|
|
|
#endif // FORMWATER_H
|