diff options
author | Eric M <itsjusteza@gmail.com> | 2021-05-05 11:05:09 +1000 |
---|---|---|
committer | Eric M <itsjusteza@gmail.com> | 2021-05-06 00:48:19 +1000 |
commit | 902d468f5233f97f56771ce60159aabf2a78a113 (patch) | |
tree | e654648f3d4a3e4c0e03d72d4b1f6bab46a568ae /editor/editor_log.h | |
parent | e189ff55a747a397e613e192ef0fd402e40e2b9f (diff) | |
download | redot-engine-902d468f5233f97f56771ce60159aabf2a78a113.tar.gz |
Made Editor Log buttons save their state, per project.
Diffstat (limited to 'editor/editor_log.h')
-rw-r--r-- | editor/editor_log.h | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/editor/editor_log.h b/editor/editor_log.h index 89d00d0fa0..3b6476634a 100644 --- a/editor/editor_log.h +++ b/editor/editor_log.h @@ -72,11 +72,11 @@ private: private: // Force usage of set method since it has functionality built-in. int message_count = 0; + bool active = true; public: MessageType type; Button *toggle_button = nullptr; - bool active = true; void initialize_button(const String &p_tooltip, Callable p_toggled_callback) { toggle_button = memnew(Button); @@ -100,6 +100,15 @@ private: toggle_button->set_text(itos(message_count)); } + bool is_active() { + return active; + } + + void set_active(bool p_active) { + toggle_button->set_pressed(p_active); + active = p_active; + } + LogFilter(MessageType p_type) : type(p_type) { } @@ -124,6 +133,9 @@ private: // Warnings or Errors are encounetered. Button *tool_button; + bool is_loading_state = false; // Used to disable saving requests while loading (some signals from buttons will try trigger a save, which happens during loading). + Timer *save_state_timer; + static void _error_handler(void *p_self, const char *p_func, const char *p_file, int p_line, const char *p_error, const char *p_errorexp, ErrorHandlerType p_type); ErrorHandlerList eh; @@ -147,6 +159,10 @@ private: void _set_collapse(bool p_collapse); + void _start_state_save_timer(); + void _save_state(); + void _load_state(); + protected: static void _bind_methods(); void _notification(int p_what); |