2012-01-26 23:08:09 +00:00
|
|
|
#ifndef _PAYSAGES_QT_FORMTEXTURES_H_
|
|
|
|
#define _PAYSAGES_QT_FORMTEXTURES_H_
|
|
|
|
|
|
|
|
#include <QWidget>
|
2012-02-21 13:41:02 +00:00
|
|
|
#include "basepreview.h"
|
2012-01-26 23:08:09 +00:00
|
|
|
#include "baseform.h"
|
|
|
|
|
|
|
|
class FormTextures : public BaseForm
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit FormTextures(QWidget *parent = 0);
|
|
|
|
|
2012-04-03 19:33:40 +00:00
|
|
|
protected:
|
|
|
|
virtual void layerAddedEvent();
|
|
|
|
virtual void layerDeletedEvent(int layer);
|
|
|
|
virtual void layerSelectedEvent(int layer);
|
|
|
|
|
2012-01-26 23:08:09 +00:00
|
|
|
public slots:
|
|
|
|
virtual void revertConfig();
|
|
|
|
virtual void applyConfig();
|
|
|
|
|
|
|
|
protected slots:
|
|
|
|
virtual void configChangeEvent();
|
|
|
|
|
|
|
|
private:
|
2012-02-21 13:41:02 +00:00
|
|
|
BasePreview* previewCoverage;
|
|
|
|
BasePreview* previewColor;
|
2012-01-26 23:08:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|