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