diff options
author | Treeki <treeki@gmail.com> | 2012-09-12 14:57:44 +0200 |
---|---|---|
committer | Treeki <treeki@gmail.com> | 2012-09-12 14:57:44 +0200 |
commit | 3189ca5efc5826405bf2e9c7d9949ad5ea9a8a10 (patch) | |
tree | d10e8cd4e462db28dd3c2f995905c4df57a20fed /lsmaterialeditor.h | |
parent | be8b56a7f0a8f6ba5456a099b61d032fd8aa2f61 (diff) | |
download | LayoutStudio-3189ca5efc5826405bf2e9c7d9949ad5ea9a8a10.tar.gz LayoutStudio-3189ca5efc5826405bf2e9c7d9949ad5ea9a8a10.zip |
initial un-exporter version
Diffstat (limited to 'lsmaterialeditor.h')
-rw-r--r-- | lsmaterialeditor.h | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/lsmaterialeditor.h b/lsmaterialeditor.h deleted file mode 100644 index 95c21f4..0000000 --- a/lsmaterialeditor.h +++ /dev/null @@ -1,48 +0,0 @@ -#ifndef LSMATERIALEDITOR_H -#define LSMATERIALEDITOR_H - -#include <QWidget> -#include <QGridLayout> -#include <QLabel> -#include <QLineEdit> -#include "lyt/materials/materialcontainer.h" -#include "lscolorpicker.h" -#include "lsseteditor.h" - -class LSTexMapEditor; -class LSTexSRTEditor; -class LSTexCoordGenEditor; -class LSIndTexSRTEditor; -class LSIndTexStageEditor; -class LSTevStageEditor; - -class LSMaterialEditor : public QWidget { - Q_OBJECT -public: - explicit LSMaterialEditor(QWidget *parent = 0); - -private: - QLineEdit *m_nameEntry; - - LSColorPicker *m_colourPickers[7]; - - bool m_currentlyLoadingMaterial; - LYTMaterial *m_material; - - LSSetEditor<LYTTevStage, LSTevStageEditor> *m_tevStageSetEditor; - -private slots: - void handleNameChanged(QString value); - void handleSaveChangedName(); - - void handleColourPicked(QColor value); - -signals: - void mustRedrawLayout(); - -public slots: - void setMaterial(LYTMaterial *mat); - -}; - -#endif // LSMATERIALEDITOR_H |