fix color picker, add project delete button with message box

This commit is contained in:
2017-08-19 12:09:03 +01:00
parent de59ae151c
commit ac3857b697
10 changed files with 102 additions and 46 deletions

View File

@@ -1,12 +1,16 @@
#pragma once
#include "node.h"
#include "node_button.h"
#include "node_text.h"
class NodeMessageBox : public Node
{
public:
Node* m_template;
NodeButton* btnOk;
NodeButton* btn_ok;
NodeButton* btn_cancel;
NodeText* m_message;
NodeText* m_title;
virtual Node* clone_instantiate() const override;
virtual void init() override;
};