started parameter editor

This commit is contained in:
itsmattkc
2019-07-19 00:15:59 -07:00
parent 98bb3e8d81
commit 136bb52fef
15 changed files with 527 additions and 4 deletions
+3
View File
@@ -26,6 +26,9 @@ NodePanel::NodePanel(QWidget *parent) :
// Create NodeView widget
node_view_ = new NodeView(this);
// Connect node view signals to this panel
connect(node_view_, SIGNAL(SelectionChanged(QList<Node*>)), this, SIGNAL(SelectionChanged(QList<Node*>)));
// Set it as the main widget of this panel
setWidget(node_view_);
+6
View File
@@ -38,6 +38,12 @@ public:
protected:
virtual void changeEvent(QEvent* e) override;
signals:
/**
* @brief Wrapper for NodeView::SelectionChanged()
*/
void SelectionChanged(QList<Node*> selected_nodes);
private:
void Retranslate();