Michaël Lemaire
d3718bde00
git-svn-id: https://subversion.assembla.com/svn/thunderk/paysages@377 b1fd45b6-86a6-48da-8261-f70d1f35bdcc
88 lines
2.7 KiB
C++
88 lines
2.7 KiB
C++
#ifndef _PAYSAGES_QT_BASEFORM_H_
|
|
#define _PAYSAGES_QT_BASEFORM_H_
|
|
|
|
#include <QWidget>
|
|
#include <QPushButton>
|
|
#include <QComboBox>
|
|
#include "basepreview.h"
|
|
#include "baseinput.h"
|
|
#include "../lib_paysages/shared/types.h"
|
|
#include "../lib_paysages/noise.h"
|
|
#include "../lib_paysages/curve.h"
|
|
#include "../lib_paysages/color.h"
|
|
#include "../lib_paysages/pack.h"
|
|
|
|
class BaseForm:public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
BaseForm(QWidget* parent, bool auto_apply=false, bool with_layers=false);
|
|
void hideButtons();
|
|
virtual void savePack(PackStream* stream);
|
|
virtual void loadPack(PackStream* stream);
|
|
|
|
signals:
|
|
void configApplied();
|
|
|
|
public slots:
|
|
virtual void revertConfig();
|
|
virtual void applyConfig();
|
|
|
|
protected slots:
|
|
virtual void configChangeEvent();
|
|
|
|
private slots:
|
|
void rebuildLayerList();
|
|
void layerAddClicked();
|
|
void layerDelClicked();
|
|
void layerUpClicked();
|
|
void layerDownClicked();
|
|
void layerListChanged();
|
|
|
|
protected:
|
|
void addPreview(BasePreview* preview, QString label);
|
|
QPushButton* addButton(QString label);
|
|
BaseInput* addInput(BaseInput* input);
|
|
BaseInput* addInputInt(QString label, int* value, int min, int max, int small_step, int large_step);
|
|
BaseInput* addInputDouble(QString label, double* value, double min, double max, double small_step, double large_step);
|
|
BaseInput* addInputBoolean(QString label, int* value);
|
|
BaseInput* addInputColor(QString label, Color* value);
|
|
BaseInput* addInputColorGradation(QString label, ColorGradation* value);
|
|
BaseInput* addInputNoise(QString label, NoiseGenerator* value);
|
|
BaseInput* addInputCurve(QString label, Curve* value, double xmin, double xmax, double ymin, double ymax, QString xlabel, QString ylabel);
|
|
BaseInput* addInputMaterial(QString label, SurfaceMaterial* material);
|
|
BaseInput* addInputEnum(QString label, int* value, const QStringList& values);
|
|
|
|
void updatePreviews();
|
|
void disablePreviewsUpdate();
|
|
|
|
int currentLayer();
|
|
void setLayerCount(int layer_count);
|
|
|
|
virtual void layerAddedEvent();
|
|
virtual void layerDeletedEvent(int layer);
|
|
virtual void layerMovedEvent(int layer, int new_position);
|
|
virtual void layerSelectedEvent(int layer);
|
|
|
|
private:
|
|
bool _auto_update_previews;
|
|
bool _auto_apply;
|
|
bool _with_layers;
|
|
QComboBox* _layer_list;
|
|
int _layer_count;
|
|
QPushButton* _layer_new;
|
|
QPushButton* _layer_del;
|
|
QPushButton* _layer_up;
|
|
QPushButton* _layer_down;
|
|
QWidget* _previews;
|
|
QWidget* _form;
|
|
QWidget* _form_labels;
|
|
QWidget* _form_previews;
|
|
QWidget* _form_controls;
|
|
QWidget* _buttons;
|
|
QPushButton* _button_apply;
|
|
QPushButton* _button_revert;
|
|
};
|
|
|
|
#endif
|