add tick and on_tick event, fix unsaved document prompt, implement TextInput blinking cursor

This commit is contained in:
2018-10-08 01:00:49 +02:00
parent e2069fadca
commit c9c7b9f1c4
19 changed files with 226 additions and 46 deletions

View File

@@ -32,6 +32,8 @@ public:
NodeButton* btn_cancel;
NodeButton* btn_ok;
NodeButton* btn_delete;
NodeButton* btn_path;
NodeText* working_path;
NodeDialogBrowseItem* current = nullptr;
Node* container;
std::string selected_path;
@@ -42,6 +44,8 @@ public:
virtual void clone_finalize(Node* dest) const override;
virtual void init() override;
void init_controls();
void init_list();
void clear_list();
virtual void loaded() override;
bool is_selected();
};