Michaël Lemaire
75487d286f
git-svn-id: https://subversion.assembla.com/svn/thunderk/paysages@384 b1fd45b6-86a6-48da-8261-f70d1f35bdcc
24 lines
405 B
C++
24 lines
405 B
C++
#ifndef _PAYSAGES_QT_FORMWATER_H_
|
|
#define _PAYSAGES_QT_FORMWATER_H_
|
|
|
|
#include <QWidget>
|
|
#include "basepreview.h"
|
|
#include "baseform.h"
|
|
|
|
class FormWater : public BaseForm
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit FormWater(QWidget *parent = 0);
|
|
|
|
public slots:
|
|
virtual void revertConfig();
|
|
virtual void applyConfig();
|
|
|
|
private:
|
|
BasePreview* previewCoverage;
|
|
BasePreview* previewColor;
|
|
};
|
|
|
|
#endif
|