summaryrefslogtreecommitdiffstats
path: root/editor/editor_log.h
diff options
context:
space:
mode:
authorChaosus <chaosus89@gmail.com>2018-08-13 18:04:38 +0300
committerChaosus <chaosus89@gmail.com>2018-08-13 21:52:38 +0300
commit94cf2133d54265ebeef272bb1c7c2e4c32fe730f (patch)
treef8a942803e47dfb86dd4a8daa356dbbe388e6d91 /editor/editor_log.h
parentb68f186c46c5df260eff9ea70ef2802ee07d251c (diff)
downloadredot-engine-94cf2133d54265ebeef272bb1c7c2e4c32fe730f.tar.gz
Add warning color to output log
Diffstat (limited to 'editor/editor_log.h')
-rw-r--r--editor/editor_log.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/editor/editor_log.h b/editor/editor_log.h
index f9bc82de7d..8d0310d914 100644
--- a/editor/editor_log.h
+++ b/editor/editor_log.h
@@ -42,6 +42,7 @@
#include "scene/gui/panel_container.h"
#include "scene/gui/texture_rect.h"
#include "scene/gui/tool_button.h"
+
class EditorLog : public VBoxContainer {
GDCLASS(EditorLog, VBoxContainer);
@@ -68,7 +69,13 @@ protected:
void _notification(int p_what);
public:
- void add_message(const String &p_msg, bool p_error = false);
+ enum MessageType {
+ MSG_TYPE_STD,
+ MSG_TYPE_ERROR,
+ MSG_TYPE_WARNING
+ };
+
+ void add_message(const String &p_msg, MessageType p_type = MSG_TYPE_STD);
void set_tool_button(ToolButton *p_tool_button);
void deinit();