began node work

This commit is contained in:
itsmattkc
2019-04-08 14:13:08 +10:00
parent 8e3d664061
commit 3e1c857de4
13 changed files with 189 additions and 2 deletions
+22
View File
@@ -0,0 +1,22 @@
#ifndef NODEEDITOR_H
#define NODEEDITOR_H
#include <QGraphicsScene>
#include "ui/panel.h"
#include "ui/nodeview.h"
class NodeEditor : public Panel {
Q_OBJECT
public:
NodeEditor(QWidget* parent = nullptr);
virtual void Retranslate() override;
private:
QGraphicsScene scene_;
NodeView view_;
};
#endif // NODEEDITOR_H