Michaël Lemaire
79850824c4
git-svn-id: https://subversion.assembla.com/svn/thunderk/paysages@385 b1fd45b6-86a6-48da-8261-f70d1f35bdcc
25 lines
479 B
C++
25 lines
479 B
C++
#ifndef _PAYSAGES_QT_INPUTLAYERS_H_
|
|
#define _PAYSAGES_QT_INPUTLAYERS_H_
|
|
|
|
#include <QWidget>
|
|
#include "baseinput.h"
|
|
#include "dialoglayers.h"
|
|
#include "../lib_paysages/layers.h"
|
|
|
|
class InputLayers:public BaseInput
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
InputLayers(QWidget* form, QString label, Layers* value, FormLayerBuilder form_builder);
|
|
|
|
public slots:
|
|
virtual void updatePreview();
|
|
void editLayers();
|
|
|
|
private:
|
|
Layers* _value;
|
|
FormLayerBuilder _form_builder;
|
|
};
|
|
|
|
#endif
|