summaryrefslogtreecommitdiff
path: root/lsmaterialeditor.h
diff options
context:
space:
mode:
Diffstat (limited to 'lsmaterialeditor.h')
-rw-r--r--lsmaterialeditor.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/lsmaterialeditor.h b/lsmaterialeditor.h
index ba18762..b09c474 100644
--- a/lsmaterialeditor.h
+++ b/lsmaterialeditor.h
@@ -7,6 +7,17 @@
#include <QLineEdit>
#include "lyt/materials/materialcontainer.h"
#include "lscolorpicker.h"
+#include "lsseteditor.h"
+
+class LSTevStageEditor : public LSSetEntryEditorBase<LYTTevStage> {
+ Q_OBJECT
+public:
+ explicit LSTevStageEditor(QWidget *parent = 0) :
+ LSSetEntryEditorBase(parent) { }
+
+ void loadEntryFrom(const LYTTevStage &entry) {
+ }
+};
class LSMaterialEditor : public QWidget {
Q_OBJECT
@@ -21,6 +32,8 @@ private:
bool m_currentlyLoadingMaterial;
LYTMaterial *m_material;
+ LSSetEditor<LYTTevStage, LSTevStageEditor> *m_tevStageSetEditor;
+
private slots:
void handleNameChanged(QString value);
void handleSaveChangedName();